* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Exo 2', sans-serif; */
    /* font-family: 'Sora', sans-serif; */
    /* font-family: 'Space Grotesk', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    font-family: "Breul Grotesk", sans-serif;
    overflow-x: hidden;
    background-color: #FFFCF0 !important;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* =========================
       NAVBAR
    ========================== */

.main-navbar {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #f6f3ea;
    padding: 10px 0px;
    box-shadow:
        0 2px 20px rgba(0, 0, 0, .05);
    transition:
        top .45s ease,
        background-color .45s ease,
        box-shadow .45s ease,
        transform .45s ease;
    transform:
        translateY(0);
    will-change:
        top,
        transform;
}


/* ON SCROLL */

.main-navbar.scrolled {
    top: 0;
    background:
        rgba(255, 255, 255, .92);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08);
    transform:
        translateY(-2px);
    padding: 5px;
}

.logo img {
    width: 100px;
}

.navbar-nav {
    gap: 15px;
}

.nav-link {
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    padding: 5px 16px !important;
    transition: 0.4s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #ff6f00;
    transition: 0.4s;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link:hover {
    color: #ff6f00;
}

.nav-link:hover::after {
    width: 70%;
}

/* =========================
       DROPDOWN
    ========================== */

.dropdown-wrapper {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.dropdown-wrapper:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-left h4 {
    color: #ff6f00;
    font-weight: 700;
    margin-bottom: 20px;
}

.dropdown-left ul li {
    padding: 10px 10px;
    color: #292929;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    background: #FFFCF0;
    border: 1px solid #ff6f00;
    border-radius: 10px;
    margin: 10px 0px;
}

.dropdown-left ul li:hover {
    color: #ff6f00;
    transform: translateX(5px);
}

.dropdown-image img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

/* =========================
       SOCIAL ICONS
    ========================== */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #ff6f00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.4s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #ff6f00;
}

/* =========================
       HERO SLIDER
    ========================== */

.hero-slider {
    /* margin-top: 75px; */
}

.carousel-item {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-inner {
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: clamp(24px, 3vw, 35px);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
    border: none;
}

.btn-light-custom {
    background: #fff;
    color: #ff6f00;
}

.btn-light-custom:hover {
    background: #ff6f00;
    color: #fff;
    transform: translateY(-4px);
}

.btn-dark-custom {
    background: #ff6f00;
    color: #fff;
}

.btn-dark-custom:hover {
    background: #ff6f00;
    transform: translateY(-4px);
}

/* =========================
       MOBILE
    ========================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 20px;
        border-radius: 20px;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: unset;
        display: none;
        margin-top: 15px;
    }

    .dropdown-wrapper:hover .mega-dropdown {
        display: block;
    }

    .social-icons {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .carousel-item {
        min-height: 550px;
        height: 580px;
    }
}

@media (max-width: 576px) {
    .logo img {
        width: 100px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .btn-custom {
        padding: 15px;
        width: 80%;
        margin: 0px auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-image img {
        display: none;
    }

}






/* =========================
   INDUSTRY STRENGTH SECTION
========================= */

.industry-strength {
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
}

.industry-strength::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(18, 18, 18, 0.82) 0%,
            rgba(40, 40, 40, 0.72) 55%,
            rgba(255, 111, 0, 0.28) 100%),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1600");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.05);

    filter: blur(2px);

    z-index: -2;

}

.industry-strength::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(20, 20, 20, 0.92) 0%,
            rgba(35, 35, 35, 0.55) 50%,
            rgba(20, 20, 20, 0.92) 100%);

    z-index: -1;

}


/* =========================
   HEADING
========================= */

.strength-heading {
    text-align: center;
    margin-bottom: 50px;
}

.strength-heading .eyebrow {
    color: #333333;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.strength-heading .eyebrow-1 {
    color: #ff6f00;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-style-1 {
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.strength-heading h2 {
    color: #ff6f00;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
}


.industry-strength .strength-heading p {
    max-width: 1100px;
    margin: auto;
    color: #dedede;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    font-weight: 500;
}

/* =========================
   STRENGTH WRAPPER
========================= */

.strength-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =========================
   STRENGTH BOX
========================= */

.strength-box {
    position: relative;
    text-align: center;
    padding: 10px 10px;
}

.strength-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -20px;
    width: 1px;
    height: 85%;
    background: rgba(255, 255, 255, 0.6);
}

/* ICON */

.strength-icon {
    margin-bottom: 25px;
}

.strength-icon i {
    font-size: 60px;
    color: #ff6f00;
    transition: 0.4s ease;
}

.strength-box:hover .strength-icon i {
    transform: translateY(-8px) scale(1.05);
}

/* TITLE */

.strength-box h3 {
    color: #fff;
    font-size: clamp(20px, 20px, 34px);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* LINE */

.strength-line {
    width: 130px;
    height: 2px;
    background: #ff6f00;
    margin: 0 auto 10px;
    transition: 0.4s ease;
}

.strength-box:hover .strength-line {
    width: 170px;
}

/* CONTENT */

.strength-box p {
    color: #dedede;
    font-size: clamp(16px, 17px, 22px);
    line-height: 1.6;
    font-weight: 500;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:991px) {

    .industry-strength {
        padding: 40px 0 40px;
    }

    .strength-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .strength-box:nth-child(2)::after {
        display: none;
    }

    .strength-box::after {
        right: -15px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:767px) {

    .strength-heading {
        margin-bottom: 30px;
    }

    .strength-heading h2 {
        font-size: 24px;
    }

    .strength-heading p {
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
    }

    .strength-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .strength-box {
        padding: 0 10px;
    }

    .strength-box::after {
        display: none;
    }

    .strength-icon i {
        font-size: 40px;
    }

    .strength-icon {
        margin-bottom: 10px;
    }

    .strength-box h3 {
        font-size: 20px;
    }

    .strength-box p {
        font-size: 16px;
        line-height: 1.6;
    }

}





/* =========================
   INDUSTRY APPLICATIONS
========================= */

.industry-applications {
    padding: 80px 0;
    background: #fffefb;
}

.strength-para {
    max-width: 1000px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #5F6368;
    text-align: center;
}

.industry-applications .strength-para {
    max-width: 1000px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #5F6368;
    text-align: center;
}

/* =========================
   SLIDER OUTER WRAPPER
========================= */

.applications-slider-wrap {

    position: relative;

    padding: 0 30px;

    z-index: 100;

}

/* =========================
   SLIDER
========================= */

.applications-slider {
    width: 100%;
    overflow: hidden;
    /* KEEP HIDDEN */
    position: relative;
}

.applications-wrapper {
    display: flex;
    gap: 15px;
    width: max-content;
    will-change: transform;
}

/* =========================
   CARD
========================= */

.application-card {

    flex-shrink: 0;

    background: #fff;

    border: 1.5px solid #ff6f00;

    border-radius: 10px;

    overflow: hidden;

    transition: .45s ease;

}

.application-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);

}

.application-image {

    position: relative;

    overflow: hidden;

}

.application-image img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: .6s;

}

.application-card:hover img {

    transform: scale(1.08);

}

.application-number {

    position: absolute;

    top: 12px;

    left: 12px;

    width: 35px;

    height: 35px;

    background: #ff6f00;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

}

.application-content {

    padding: 15px 10px;

    text-align: center;

}

.application-icon i {

    font-size: 45px;

    color: #ff6f00;

    margin-bottom: 15px;

}

.application-content h3 {

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;

    color: #111;

    margin-bottom: 10px;

}

.application-line {

    width: 140px;

    height: 2px;

    background: #ff6f00;

    margin: 10px auto;

}

.application-content p {

    font-size: clamp(13px, 16px, 20px);

    line-height: 1.6;

    color: #5F6368;

    font-weight: 500;

}

/* =========================
   OUTSIDE ARROWS
========================= */

.slider-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 56px;

    height: 56px;

    border: none;

    border-radius: 50%;

    background: #FF6F00;

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 30;

    transition: .25s;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .18);

}

.slider-arrow:hover {

    transform:
        translateY(-50%) scale(1.08);

}

.slider-arrow-left {

    left: -50px;

}

.slider-arrow-right {

    right: -50px;

}

/* =========================
   DOTS
========================= */

.slider-dots {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 30px;

}

.dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ddd;

    cursor: pointer;

    transition: .25s;

}

.dot.active {

    background: #FF6F00;

    transform: scale(1.3);

}

/* =========================
   TABLET
========================= */

@media(max-width:1199px) {

    .application-image img {

        height: 240px;

    }

    .applications-slider-wrap {

        padding: 0 55px;

    }

    .slider-arrow {

        width: 48px;

        height: 48px;

        font-size: 20px;

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    .industry-applications {

        padding: 70px 0;

    }

    .industry-applications .strength-para {
        font-size: 16PX;
    }

    .applications-slider-wrap {

        padding: 0 46px;

    }

    .application-image img {

        height: 220px;

    }

    .slider-arrow {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }

    .slider-arrow-left {

        left: -10px;

    }

    .slider-arrow-right {

        right: -10px;

    }

    .slider-dots {

        margin-top: 22px;

    }

}




/* ════════════════════════════════════════
     PARALLAX SECTION BASE
  ════════════════════════════════════════ */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    will-change: transform;
    z-index: 0;
}

.section-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;

}

.parallax-section sec-acc-1 {
    /* background: url("./images/Accessories-bg.jpg") no-repeat center center; */
    /* background:#0c447c; */
    background-size: cover;
}

/* ════════════════════════════════════════
     SECTION 1 – CONSUMABLES  (warm amber)
  ════════════════════════════════════════ */
.sec-consumables .parallax-bg {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #f8fafc 50%,
            #eef4f8 100%);

}

/* subtle dot texture overlay */
.sec-consumables .parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(247, 108, 5, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.sec-consumables .strength-heading h2 {
    color: #ff6f00;
}

.sec-consumables .strength-para {
    color: #5F6368;
}

/* ── Category Grid ── */
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
CATEGORY CARD
========================= */

.category-card {

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 14px;

    overflow: hidden;

    position: relative;

    transition: .35s;

    height: 100%;

}

.category-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 24px 50px rgba(0, 0, 0, .08);

}

/* IMAGE */

.categories-img {

    height: 250px;

    overflow: hidden;

    position: relative;

    background: #f5f5f5;

}

.categories-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

/* .category-card:hover img {

    transform: scale(1.06);

} */

/* CONTENT */

.category-content {

    padding: 45px 20px 20px;

    position: relative;

}

/* ICON */

.category-icon {

    position: absolute;

    top: -28px;

    left: 24px;

    width: 58px;

    height: 58px;

    background: #ff6f00;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 10px 30px rgba(255, 111, 0, .3);

}

.category-icon i {

    font-size: 24px;

    color: #fff;

}

/* TITLE */

.category-content h3 {

    font-size: 20px;

    font-weight: 600;

    /* line-height: 1.2; */

    color: #333333;

    margin-bottom: 10px;

    text-transform: uppercase;

}

/* LINE */

.category-line {

    width: 70px;

    height: 3px;

    background: #ff6f00;

    margin-bottom: 10px;

}

/* TEXT */

.category-content p {

    font-size: 16px;

    line-height: 1.6;

    color: #666;

    margin-bottom: 10px;

}

/* BUTTON */

.category-btn {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    font-size: 16px;

    font-weight: 700;

    color: #ff6f00;

    text-decoration: none;

    transition: .3s;

}

.category-btn i {

    color: #ffffff;

    transition: .3s;

}

.category-btn:hover {

    gap: 18px;

}

/* MOBILE */

@media(max-width:767px) {

    .categories-img {

        height: 220px;

    }

    .category-content {

        padding: 45px 20px 22px;

    }

    .category-content h3 {

        font-size: 20px;

    }

    .category-content p {

        font-size: 16px;
        line-height: 1.6;

    }

}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.product-item {
    border: 1px solid #FF6F00;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    transition: transform 0.4s ease;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-item:hover img {
    transform: scale(1.08);
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    background: #ff6f00;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.35s ease, transform 0.3s ease;
}

.category-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* ════════════════════════════════════════
     WAVE DIVIDERS
  ════════════════════════════════════════ */
.wave-sep {
    display: block;
    line-height: 0;
    position: relative;
    z-index: 2;
}

.wave-sep svg {
    display: block;
    width: 100%;
}

/* ════════════════════════════════════════
     SECTION 2 – ACCESSORIES 1  (cool blue)
  ════════════════════════════════════════ */
.sec-acc-1 .parallax-bg {
    background: linear-gradient(135deg,
            #f6f8fa 0%,
            #edf1f4 40%,
            #dfe7ed 100%);
}

/* .sec-acc-1 .parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 18px,
            rgba(24, 95, 165, 0.04) 18px,
            rgba(24, 95, 165, 0.04) 19px);
} */

.sec-acc-1 .strength-heading h2 {
    color: #FF6F00;
}

.sec-acc-1 .strength-para {
    color: #5F6368;
}

/* ════════════════════════════════════════
     SECTION 3 – ACCESSORIES 2  (earthy green)
  ════════════════════════════════════════ */
.sec-acc-2 .parallax-bg {
    background: linear-gradient(135deg,
            #eef2f5 0%,
            #e4eaef 40%,
            #d6dee5 100%);
}

.sec-acc-2 .parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59, 109, 17, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
}

.sec-acc-2 .strength-heading h2 {
    color: #FF6F00;
}

.sec-acc-2 .strength-para {
    color: #5F6368;
}

/* ── ACCESSORY CARD (shared) ── */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/*=====================
CARD
======================*/

.accessory-card {
    background-color: #fff;
    display: grid;
    grid-template-columns: 50% 50%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: .45s;
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, .12);
}

/*=====================
LEFT
======================*/

.card-content {

    padding: 20px 10px 20px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.card-icon {

    width: 74px;
    height: 74px;

    /* background: #ff6f00; */

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;
}

.card-icon img {

    width: 75px;
}

.card-content h3 {

    font-size: 20px;

    line-height: 1;

    font-weight: 600;

    color: #0f2144;

    margin-bottom: 15px;

    text-transform: uppercase;
}

.card-line {

    width: 70px;
    height: 3px;

    background: #ff6f00;

    margin-bottom: 10px;
}

.card-content p {

    font-size: 16px;

    /* line-height: 1.9; */

    color: #586071;

    margin-bottom: 15px;

    max-width: 320px;
}

.view-btn {

    display: flex;

    align-items: center;

    gap: 16px;

    color: #122345;

    text-decoration: none;

    font-size: 26px;

    font-weight: 700;
}

.view-btn i {

    color: #ff6f00;

    transition: .35s;
}

.view-btn:hover i {

    transform: translateX(8px);
}

/*=====================
RIGHT IMAGE
======================*/

.card-image {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    /* padding: 40px; */

    overflow: hidden;
}



.card-image img {

    width: 100%;

    max-width: 820px;

    object-fit: contain;

    position: relative;

    z-index: 2;

    transition: .6s;
}



/*=====================
TABLET
======================*/

@media(max-width:991px) {

    .accessory-card {

        grid-template-columns: 1fr;

    }

    .card-content {

        padding: 50px 36px 10px;

        text-align: center;

        align-items: center;
    }

    .card-content p {

        max-width: 100%;
    }

    .card-image {

        padding: 0px;
    }

    .card-image img {

        max-height: 450px;
    }

}

/*=====================
MOBILE
======================*/

@media(max-width:576px) {

    .card-content {

        padding: 20px 20px;
    }

    .card-content h3 {

        font-size: 22px;
    }

    .card-content p {

        font-size: 16px;

        line-height: 1.6;
    }

    .view-btn {

        font-size: 18px;
    }

    .card-icon {

        width: 60px;
        height: 60px;
    }

    .card-icon img {

        width: 75px;
        margin: 0px auto;
    }

    .card-image {

        padding: 0px;
    }

    .card-image img {

        max-height: 260px;
    }

}



.view-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-2px);
}

/* ════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════ */
@media (max-width: 1100px) {
    .categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .accessories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .section-inner {
        padding: 70px 0 50px;
    }

    .categories-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 240px;
    }

    .gallery-side img {
        height: 110px;
    }

    .card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .card-icon i {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }

    .view-btn {
        width: auto;
        padding: 7px 28px;
    }
}

@media (max-width: 480px) {
    .gallery-side img {
        height: 90px;
    }

    .product-item {
        height: 150px;
    }

    .card-top h3 {
        font-size: 20px;
    }
}





.services {
    padding: 80px 0px;
    /* background: #f4f1e8; */
    overflow: hidden;
}

/* ==========================================
                GRID
========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ==========================================
                CARD
========================================== */

.service-card {
    position: relative;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));
    z-index: 1;
}

/* ==========================================
                TITLE BAR
========================================== */

.service-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    color: #ff6a00;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    z-index: 3;
    transition: 0.4s ease;
}

/* ==========================================
                OVERLAY
========================================== */

.service-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 0.5s ease;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: #fff;
}

.service-overlay h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-overlay p {
    font-size: 17px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 28px;
    max-width: 500px;
}

/* ==========================================
                BUTTON
========================================== */

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: #fff;
    color: #ff6a00;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
}

.service-btn:hover {
    background: #ff6a00;
    color: #fff;
    transform: translateY(-4px);
}

/* ==========================================
                HOVER EFFECT
========================================== */

.service-card:hover img {
    transform: scale(1.08);
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-card:hover .service-title {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 1200px) {

    .service-card {
        height: 380px;
    }

    .service-overlay h3 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .strength-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .services {
        padding: 80px 15px;
    }

    .service-card {
        height: 350px;
    }

    .service-overlay {
        padding: 15px;
    }

    .service-overlay h3 {
        font-size: 26px;
    }

    .service-overlay p {
        font-size: 15px;
    }

    .service-title {
        font-size: 20px;
        padding: 10px;
    }

    .strength-heading h2 {
        font-size: 24px;
    }

    .strength-para {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .service-card {
        height: 350px;
        border-radius: 10px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-overlay h3 {
        font-size: 22px;
    }

    .service-overlay p {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-btn {
        width: 100%;
        justify-content: center;
    }

    .service-title {
        font-size: 18px;
    }

    .strength-heading h2 {
        font-size: 24px;
    }
}





.partner-section {
    background: #333333;
    padding: 100px 0;
    overflow: hidden;
}

.partner-section .strength-heading .eyebrow {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.partner-section .strength-heading {
    font-size: 17px;
    color: #fff;
}


.partner-section .strength-heading p {
    /* font-size: 17px; */
    color: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: 2fr 500px 2fr;
    gap: 50px;
    align-items: center;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-card {
    position: relative;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-number {
    position: absolute;
    top: -15px;
    font-size: 30px;
    color: #ff6f00;
    font-weight: 800;
}

.left .feature-number {
    right: -30px;
}

.right .feature-number {
    left: -30px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    border: 2px solid #ff6f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 25px;
}

.feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #d0dae4;
    line-height: 1.6;
    text-align: justify;
}

.partner-image {

    position: relative;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 20px;

    overflow: hidden;

    min-height: 475px;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-image::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid rgba(255, 122, 0, .5);

    border-radius: 20px;

    pointer-events: none;

}

/* connector line */

.left .feature-card::after {

    content: "";

    width: 80px;

    height: 2px;

    background: #ff6f00;

    position: absolute;

    right: -80px;

    top: 50%;

}

.right .feature-card::before {

    content: "";

    width: 50px;

    height: 2px;

    background: #ff6f00;

    position: absolute;

    left: -50px;

    top: 60%;

}

/* tablet */

@media(max-width:1200px) {

    .partner-section {

        padding: 50px 0px;

    }

    .partner-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .partner-image {

        order: -1;

        /* min-height: 550px; */

    }

    .left .feature-card::after,
    .right .feature-card::before {

        display: none;

    }

    .feature-number {

        position: static;

        margin-bottom: 12px;

    }

    .feature-content {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .feature-icon {
        margin: 0px !important;
        width: 60px;
        height: 60px;
        /* margin-bottom: 15px; */
    }

    .partner-features {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

}

/* mobile */

@media(max-width:768px) {

    .partner-section {

        padding: 80px 0px;

    }

    .strength-heading h2 {

        font-size: 24px;

    }

    .partner-features {

        gap: 25px;

    }

    .feature-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;

    }

    .feature-icon {
        margin: 0px;
        width: 60px;
        height: 60px;
        /* margin-bottom: 15px; */
    }

    .feature-icon i {

        font-size: 25px;

    }

    .feature-card h3 {

        font-size: 24px;

    }

    .feature-card p {
        color: #d0dae4;
        line-height: 1.6;
        text-align: center;
    }

    .partner-image {

        min-height: 350px;

    }

}



.lifecycle-section {
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
}


/* ==========================================
   WRAPPER
========================================== */

.lifecycle-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    align-items: flex-start;
}

/* ==========================================
   IMAGE
========================================== */

.lifecycle-image {
    position: sticky;
    top: 100px;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
}

.lifecycle-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ==========================================
   CONTENT
========================================== */

.lifecycle-content {
    width: 100%;
}

/* ==========================================
   ITEM
========================================== */

.lifecycle-item {
    display: grid;
    grid-template-columns: 70px 1fr 50%;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px dashed #f26a00;
    align-items: center;
}

.lifecycle-item.no-border {
    border-bottom: none;
}

.number {
    font-size: 50px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 2px #f26a00;
    line-height: 1;
}

.title h3 {
    font-size: 23px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

.desc p {
    font-size: 17px;
    line-height: 1.6;
    color: #222;
}

/* ==========================================
   LAPTOP
========================================== */

@media(max-width:1200px) {

    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading p {
        font-size: 18px;
    }

    .lifecycle-item {
        grid-template-columns: 50px 1fr;
        padding: 10px 0px;
        gap: 10px;
    }

    .desc {
        grid-column: 2/3;
    }

    .title h3 {
        font-size: 24px;
        margin: 0px;
    }

    .desc p {
        font-size: 20px;
        margin: 10px;
    }

    .number {
        font-size: 50px;
    }
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px) {

    .lifecycle-section {
        padding: 50px 0;
    }

    .lifecycle-wrapper {
        grid-template-columns: 1fr;
    }

    .lifecycle-image {
        position: relative;
        top: 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .section-heading p {
        font-size: 17px;
        line-height: 1.6;
    }

    .lifecycle-item {
        padding: 28px 0;
    }

    .title h3 {
        font-size: 24px;
    }

    .desc p {
        font-size: 18px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px) {

    .lifecycle-section .container {
        padding: 0 15px;
    }

    .lifecycle-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .lifecycle-item {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 10px 0;
    }

    .number {
        font-size: 42px;
    }

    .title h3 {
        font-size: 24px;
    }

    .desc {
        grid-column: auto;
    }

    .desc p {
        font-size: 16px;
        line-height: 1.6;
        margin: 0px;
    }
}





.counter-section {
    padding: 80px 0;
    overflow: hidden;
}

/* ==========================================
   WRAPPER
========================================== */

.counter-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.counter-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.counter-left h2 {
    font-size: 40px;
    line-height: 1.5;
    font-weight: 700;
    color: #000;
    margin-bottom: 35px;
}

.counter-left p {
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 25px;
    max-width: 700px;
}

.counter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    padding: 0 32px;
    border: 2px solid #f26a00;
    border-radius: 14px;
    color: #f26a00;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s ease;
}

.counter-btn:hover {
    background: #333333;
    color: #fff;
}

/* ==========================================
   RIGHT GRID
========================================== */

.counter-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ==========================================
   CARD
========================================== */

.counter-card {
    background: transparent;
    border: 1.5px solid #2b2b2b;
    border-radius: 10px;
    padding: 15px;
    transition: 0.4s ease;
}

.counter-card:hover {
    transform: translateY(-6px);
}

.counter-number {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    color: #f26a00;
    margin-bottom: 15px;
}

.counter-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    background: #2c2424;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.counter-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    margin: 0;
}

/* ==========================================
   LAPTOP
========================================== */

@media(max-width:1200px) {

    .counter-left h2 {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .counter-left p {
        font-size: 16px;
        text-align: justify;
    }

    .counter-number {
        font-size: 50px;
    }

    .counter-tag {
        font-size: 16px;
        padding: 5px 10px;
    }

    .counter-card p {
        font-size: 16px;
    }

    .counter-btn {
        font-size: 18px;
        height: 56px;
    }
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px) {

    .counter-section {
        padding: 60px 0;
    }

    .counter-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .counter-left h2 {
        font-size: 46px;
    }

    .counter-left p {
        font-size: 17px;
        line-height: 1.6;
    }

    .counter-right {
        grid-template-columns: 1fr 1fr;
    }

    .counter-card {
        padding: 30px;
    }

    .counter-number {
        font-size: 58px;
    }

    .counter-tag {
        font-size: 16px;
    }

    .counter-card p {
        font-size: 17px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:767px) {

    /* .container {
        padding: 0 15px;
    } */

    .counter-section {
        padding: 50px 0;
    }

    .counter-left h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .counter-left p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .counter-btn {
        width: 100%;
        font-size: 16px;
        height: 52px;
    }

    .counter-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .counter-card {
        padding: 15px;
        border-radius: 10px;
    }

    .counter-number {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .counter-tag {
        font-size: 15px;
        padding: 10px 18px;
        margin-bottom: 15px;
    }

    .counter-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}




.testimonials {
    padding: 50px 0px 50px;
    display: flex;
    background: #fff7e0;
    flex-direction: column;
    align-items: center;
    /* max-width: 1100px; */
    margin: 0 auto
}

.t-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 44px);
    color: var(--accent);
    text-align: center;
    margin-bottom: 18px
}

.t-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    max-width: 740px;
    color: #333;
    margin-bottom: 56px
}

.carousel-wrapper {
    width: 100%;
    display: grid;
    gap: 30px;
    grid-template-columns: 250px 1fr 250px;
    align-items: center
}

.side-img {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: filter 0.3s
}

.side-img:hover img {
    filter: brightness(0.88)
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    border: none;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 65px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1
}

.nav-btn:hover {
    background: rgba(55, 55, 55, 0.42)
}

.side-img.left .nav-btn {
    right: 50%;
    transform: translate(50%, -50%)
}

.side-img.right .nav-btn {
    left: 50%;
    transform: translate(-50%, -50%)
}

.card-area {
    position: relative;
    z-index: 1
}

.t-card {
    background: #2b2b2b;
    border-radius: 10px;
    padding: 20px 30px 20px;
    display: none;
    flex-direction: column;
    display: none;
}

.t-card.active {
    display: flex !important;
    animation: fadeUp 0.45s ease forwards
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.t-quote {
    font-size: 15px;
    /* font-style: italic; */
    /* font-weight: 600; */
    color: #fcfaf4;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 28px
}

.t-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.t-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff
}

.t-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff
}

.t-time {
    font-size: 13px;
    color: #aaa;
    margin-top: 3px
}

.t-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 28px
}

.t-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8c1a8;
    cursor: pointer;
    border: none;
    transition: background 0.25s, transform 0.25s
}

.t-dot.active {
    background: #FF6F00;
    transform: scale(1.35)
}

@media(max-width:860px) {
    .carousel-wrapper {
        grid-template-columns: 140px 1fr 140px
    }

    .side-img {
        height: 270px
    }

    .t-card {
        padding: 28px 26px
    }
}

@media(max-width:600px) {
    .carousel-wrapper {
        grid-template-columns: 1fr
    }

    .side-img {
        display: none
    }

    .t-card {
        padding: 26px 20px
    }
}





/* ── CTA Section ── */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 24px;
}

/* Background image */
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/solutions.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
}



.cta-section:hover .cta-bg {
    transform: scale(1.0);
}

/* Dark overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.52) 0%,
            rgba(0, 0, 0, 0.46) 50%,
            rgba(0, 0, 0, 0.58) 100%);
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 2vw, 18px);
}


.cta-content .strength-heading p {
    max-width: 1100px;
    text-align: center;
    margin: auto;
    color: #ffffff;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    font-weight: 500;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: 2.5px solid transparent;
    transition: all 0.28s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Outline / white button */
.btn-outline {
    background: transparent;
    border-color: #ffffff;
    color: #FF6F00;
    background: rgba(255, 255, 255, 0.95);
}

.btn-outline:hover {
    background: #FF6F00;
    border-color: #FF6F00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 123, 46, 0.45);
}

/* Dark solid button */
.btn-dark {
    background: rgba(30, 30, 30, 0.88);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.btn-dark:hover {
    background: #FF6F00;
    border-color: #FF6F00;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 123, 46, 0.45);
}

/* ── Responsive ── */
@media(max-width:520px) {
    .cta-section {
        padding: 64px 20px
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 280px
    }

    .cta-content .strength-heading p {
        margin-bottom: 20px;
    }
}








.footer {
    background: #08111c;
    color: #fff;
    padding: 50px 0 0;
}

/* NAV */

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;

    font-size: 16px;
    letter-spacing: 2px;

    transition: .3s;
}

.footer-nav a:hover {
    color: #ff6f00;
}

.footer-line {
    width: 100%;
    height: 1px;

    background:
        rgba(255, 255, 255, .12);

    margin: 25px 0 25px;
}



/* GRID */

.footer-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 1.5fr;

    gap: 50px;

    align-items: start;
}


.footer-box h4 {

    font-size: 15px;

    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 15px;

    color: #ff6f00;
}



/* LOGO */

.footer-logo img {

    max-width: 240px;

    width: 100%;
}

.footer-logo-box p {
    font-size: 16px;
    margin-top: 10px;
    text-align: justify;
}


/* CONTACT */

.contact-row {

    display: flex;

    gap: 18px;

    margin-bottom: 22px;

    align-items: flex-start;
}

.icon-box {

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255, 255, 255, .12);

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;
}

.icon-box i {
    color: #ff6f00;
}

.contact-text {

    line-height: 1.6;
    text-align: left;
    color:
        rgba(255, 255, 255, .75);
}



/* MAP */

.footer-map {

    overflow: hidden;

    height: 220px;

    border-radius: 6px;
}

.footer-map iframe {

    width: 100%;

    height: 100%;

    border: none;

    /* filter: grayscale(100%); */
}



/* BOTTOM */

.footer-bottom {

    margin-top: 30px;

    border-top:
        1px solid rgba(255, 255, 255, .08);

    padding: 26px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-bottom p {

    margin: 0;

    color:
        rgba(255, 255, 255, .65);

    font-size: 14px;
}

.footer-bottom a {

    color: #fff;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff6f00;
}



/* RESPONSIVE */

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-nav a {
        font-size: 12px;
        font-weight: 600;
    }

    .footer-logo img {
        width: 150px;
        margin: 0px auto;
    }

}


@media(max-width:767px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }



    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

    .footer {
        padding-top: 50px;
    }

}




/* ==========================
   INDUSTRY APPLICATIONS
========================== */

.product-range {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: url("images/range-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}



.product-range .strength-heading {
    text-align: left;
    margin-bottom: 20px;
}

.product-range .strength-heading .eyebrow {
    color: #333333;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-range .strength-heading .eyebrow-1 {
    color: #ff6f00;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-style-1 {
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.strength-heading h2 {
    color: #ff6f00;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
}


.strength-heading p {
    max-width: 1100px;
    margin: auto;
    color: #5F6368;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    font-weight: 500;
}




.range {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 0px;
}


.range .strength-heading p {
    max-width: 1100px;
    text-align: left;
    margin: auto;
    color: #5F6368;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    font-weight: 500;
}

/* Image */

.range-img {
    position: relative;
}

.range-img img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Decorative Element */

.product-range::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.05);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {

    .product-range {
        padding: 90px 0;
    }

    .range {
        gap: 50px;
    }

    .strength-heading h2 {
        font-size: 30px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .product-range {
        padding: 70px 0;
    }

    .range {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .range-txt {
        order: 1;
        text-align: center;
    }

    .range-img {
        order: 2;
    }

    .strength-heading h2 {
        font-size: 24px;
    }

    .strength-para {
        max-width: 100%;
        font-size: 1rem;
    }

    .range-img img {
        border-radius: 18px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {

    .product-range {
        padding: 60px 0;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .strength-heading h2 {
        font-size: 24px;
    }

    .strength-para {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}




/*==============================
SECTION
==============================*/

.industry-trust {
    background-color: #fff;
    padding: 50px 0 50px;
    overflow: hidden;
}


/*==============================
GRID
==============================*/

.trust-grid {
    /* max-width: 1500px; */
    margin: auto;
    display: grid;
    grid-template-columns: 325px 1fr 360px;
    gap: 20px;
    align-items: center;
}


/*==============================
SIDE COLUMN
==============================*/

.trust-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}


/*==============================
CARD
==============================*/

.trust-card {

    background:
        linear-gradient(180deg,
            rgba(25, 25, 25, .92),
            rgba(35, 35, 35, .95));
    border: 1px solid rgba(255, 140, 0, .45);
    border-radius: 10px;
    padding: 20px 20px;
    height: 100%;
    /* min-height: 320px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

}


.trust-card::before {
    content: '';

    position: absolute;

    inset: 0;

    border-radius: 26px;

    background:
        linear-gradient(130deg,
            transparent,
            rgba(255, 140, 0, .06));

    pointer-events: none;
}



/*==============================
ICON
==============================*/

.trust-icon {

    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #ff8500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}


.trust-icon i {
    color: #ff8500;
    font-size: 30px;
}


/*==============================
TEXT
==============================*/

.trust-card h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 10px;
}


.trust-card p {
    color: #d6dbe4;
    line-height: 1.6;
    font-size: 17px;
}



/*==============================
CENTER IMAGE
==============================*/

.trust-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, .18);

}



.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s;
}


.trust-image:hover img {
    transform: scale(1.04);
}



/*==============================
TABLET
==============================*/

@media(max-width:1200px) {

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-image {
        min-height: 620px;
        order: -1;
    }

    .trust-side {

        flex-direction: row;

    }

    .trust-card {

        min-height: auto;

        flex: 1;

    }

}


/*==============================
MOBILE
==============================*/

@media(max-width:768px) {

    .industry-trust {

        padding: 50px 0px;

    }

    .trust-side {

        flex-direction: column;

    }

    .trust-image {

        min-height: 420px;

    }

    .trust-card {

        padding: 32px 24px;

    }

    .trust-card h3 {

        font-size: 28px;

    }

    .trust-card p {

        font-size: 16px;

    }

    .trust-icon {

        width: 60px;
        height: 60px;

    }

    .trust-icon i {

        font-size: 30px;

    }

}


@media(max-width:576px) {

    .trust-image {

        min-height: 320px;

    }

    .trust-card {

        padding: 26px 20px;

        border-radius: 10px;

    }

    .trust-card h3 {

        font-size: 24px;

    }

    .trust-card p {

        line-height: 1.6;

    }

}




/* =========================
   FLOATING CALL + WHATSAPP
========================= */

.floating-contact {

    position: fixed;

    right: 24px;

    bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    z-index: 99999;

}

.floating-btn {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    position: relative;

    transition: .35s ease;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .16);

}

/* ICON */

.floating-btn i {

    font-size: 24px;

}

/* HOVER */

.floating-btn:hover {

    transform:
        translateY(-5px) scale(1.06);

}

/* TOOLTIP */

.floating-btn span {

    position: absolute;

    right: 75px;

    background: #111;

    color: #fff;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(10px);

    transition: .3s;

    white-space: nowrap;

}

.floating-btn:hover span {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);

}

/* CALL */

.call-btn {

    background:
        linear-gradient(135deg,
            #FF6F00,
            #ff8c2a);

}

/* WHATSAPP */

.whatsapp-btn {

    background:
        linear-gradient(135deg,
            #25D366,
            #16a34a);

}

/* PULSE */

.call-btn::after,
.whatsapp-btn::after {

    content: '';

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .25);

    animation:
        pulse 2s infinite;

}

@keyframes pulse {

    0% {

        transform: scale(.95);

        opacity: .8;

    }

    100% {

        transform: scale(1.4);

        opacity: 0;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .floating-contact {

        right: 16px;

        bottom: 18px;

        gap: 10px;

    }

    .floating-btn {

        width: 54px;

        height: 54px;

    }

    .floating-btn i {

        font-size: 22px;

    }

    .floating-btn span {

        display: none;

    }

}








/* contact page */





/* =========================
SUB BANNER
========================= */

.sub-banner {

    position: relative;

    height: 425px;
    margin-top: 80px;
    overflow: hidden;

    display: flex;

    align-items: center;

}

/* IMAGE */

.sub-banner-img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -3;

}

/* OVERLAY */

.sub-banner-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(20, 20, 20, .95) 0%,
            rgba(40, 40, 40, .88) 25%,
            rgba(60, 45, 32, .50) 50%,
            rgba(255, 255, 255, 0) 100%,
            transparent 100%);

    z-index: -2;

}

/* LEFT SHAPE */

.sub-banner-content {

    position: relative;

    max-width: 700px;

    padding-top: 75px;

    color: #fff;

}


/* TITLE */

.sub-banner h1 {

    font-size:
        clamp(30px,
            8vw,
            45px);

    line-height: .95;

    font-weight: 700;

    margin-bottom: 15px;

    letter-spacing: -2px;

    position: relative;

    z-index: 2;

}

.sub-banner h1 span {

    color: #ff6f00;

}

/* LINE */

.sub-banner-line {

    display: flex;

    align-items: center;

    gap: 0;

    margin-bottom: 15px;

}

.sub-banner-line span:first-child {

    width: 80px;

    height: 4px;

    background: #ff6f00;

}

.sub-banner-line span:last-child {

    width: 200px;

    height: 4px;

    background:
        rgba(255, 255, 255, .85);

}

/* DESC */

.sub-banner p {

    font-size: 18px;

    line-height: 1.6;

    max-width: 600px;

    color:
        rgba(255, 255, 255, .92);

    margin-bottom: 60px;

}

/* BREADCRUMB */

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 18px;

}

.breadcrumb a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.breadcrumb a:hover {

    color: #ff6f00;

}

.breadcrumb span:last-child {

    color: #ff6f00;

}

/* TABLET */

@media(max-width:991px) {

    .sub-banner {

        height: 420px;

    }

    .sub-banner h1 {

        font-size: 35px;

    }

    .sub-banner p {

        font-size: 18px;

        max-width: 500px;

    }

    .sub-banner-line span:last-child {

        width: 180px;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .sub-banner {

        height: 340px;

        align-items: end;

    }

    .sub-banner-overlay {

        background:
            linear-gradient(180deg,
                rgba(0, 23, 58, .80),
                rgba(0, 23, 58, .92));

    }

    .sub-banner-content {

        padding-bottom: 20px;

        padding-top: 0;

    }



    .sub-banner h1 {

        font-size: 30px;

        margin-bottom: 10px;

    }

    .sub-banner-line {

        margin-bottom: 10px;

    }

    .sub-banner-line span:first-child {

        width: 50px;

    }

    .sub-banner-line span:last-child {

        width: 120px;

    }

    .sub-banner p {

        font-size: 16px;

        line-height: 1.7;

        margin-bottom: 20px;

    }

    .breadcrumb {

        font-size: 14px;

    }

}




/* =========================
CONTACT OPTIONS
========================= */

.contact-options {
    padding: 70px 0px;
    /* margin-top: -60px; */

    position: relative;

    z-index: 10;

}

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);

}

/* CARD */

.contact-card {

    padding:
        38px 10px;

    text-align: center;

    border-right:
        1px solid #ececec;

    transition: .35s;

}

.contact-card:last-child {

    border-right: none;

}

.contact-card:hover {

    background: #fffaf5;

}

/* ICON */

.contact-icon {

    width: 75px;

    height: 75px;

    margin: auto auto 15px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 111, 0, .25);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.contact-icon i {

    font-size: 26px;

    color: #FF6F00;

}

.contact-card:hover .contact-icon {

    transform:
        translateY(-5px);

    background: #fff3e7;

}

/* TITLE */

.contact-card h3 {

    font-size: 22px;

    font-weight: 700;

    color: #333333;

    margin-bottom: 10px;

}

/* TEXT */

.contact-card p {

    font-size: 16px;

    line-height: 1.6;

    color: #666;

    /* max-width: 180px; */

    margin: auto;

}

/* TABLET */

@media(max-width:991px) {

    .contact-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .contact-card:nth-child(2) {

        border-right: none;

    }

    .contact-card:nth-child(-n+2) {

        border-bottom:
            1px solid #ececec;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .contact-options {
        padding: 50px 0px;
        /* margin-top: -40px; */

    }

    .contact-grid {

        grid-template-columns: 1fr;

        border-radius: 12px;

    }

    .contact-card {

        border-right: none;

        border-bottom:
            1px solid #ececec;

        padding:
            34px 24px;

    }

    .contact-card:last-child {

        border-bottom: none;

    }

    .contact-icon {

        width: 58px;

        height: 58px;

    }

    .contact-icon i {

        font-size: 22px;

    }

    .contact-card h3 {

        font-size: 20px;

    }

}




/* ========================= */

.contact-section {

    padding: 0px 0px 70px;

    /* background: #f8f8f8; */

}

.contact-wrapper {

    display: grid;

    grid-template-columns:
        1.5fr 0.9fr;

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);

}

/* LEFT */

.contact-form-area {

    padding: 30px;

}

.contact-eyebrow {

    display: block;

    font-size: 25px;

    letter-spacing: 2px;

    font-weight: 700;

    color: #ff6f00;

    margin-bottom: 20px;

}

.form-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

}

.input-group.full {

    grid-column: 1/-1;

}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 6px;

    outline: none;

    font-size: 15px;

    font-family: inherit;

}

.contact-form textarea {

    resize: vertical;

    min-height: 140px;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: #ff6f00;

}

/* BUTTON */

.form-bottom {

    margin-top: 24px;

    display: flex;

    gap: 25px;

    align-items: center;

    flex-wrap: wrap;

}

.form-bottom button {

    background: #ff6f00;

    color: #fff;

    border: none;

    padding:
        15px 26px;

    cursor: pointer;

    font-weight: 700;

    display: flex;

    gap: 12px;

    align-items: center;

    border-radius: 6px;

}

.privacy {

    font-size: 13px;

    color: #666;

    display: flex;

    gap: 10px;

}

/* RIGHT */

/*====================================
MAP
====================================*/

.contact-map-box {

    /* margin-top: 35px; */

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid #e9e9e9;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}



.contact-map {

    width: 100%;

    height: 100%;

}

.contact-map iframe {

    width: 100%;

    height: 100%;

    border: 0;

    display: block;

}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .contact-map {

        height: 100%;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:767px) {

    .contact-map-header {

        flex-direction: column;

        align-items: flex-start;

        padding: 20px;

    }

    .map-icon {

        width: 50px;

        height: 50px;

    }

    .map-icon i {

        font-size: 20px;

    }

    .contact-map-header h4 {

        font-size: 20px;

    }

    .contact-map {

        height: 240px;

    }

}

/* TABLET */

@media(max-width:991px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .contact-section {

        padding: 50px 0;

    }

    .contact-form-area,
    .contact-info {

        padding: 20px;

    }

    .form-grid {

        grid-template-columns: 1fr;

    }

    .contact-info h3 {
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 25px;

    }

}





/* ========================= */

.contact-info-section {

    padding: 70px 0;

    background: #f7f7f7;

}

.info-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #dee2e6;

    border-radius: 10px;

    overflow: hidden;

    border:
        1px solid #ececec;

}

.info-column {

    padding: 25px;

}

.info-column:first-child {

    border-right:
        1px solid #ececec;

}

/* TITLE */

.info-column h3 {

    font-size: 20px;

    font-weight: 700;

    color: #ff6f00;

    margin-bottom: 0px;

    position: relative;

    padding-bottom: 14px;

}

.info-column h3::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 60px;

    height: 3px;

    background: #ff6f00;

}

/* CARD */

.info-card {

    display: flex;

    gap: 15px;

    align-items: flex-start;

    padding: 15px 0;

}

.info-card .info-icon {
    width: 50px;
    height: 50px;

    border-radius: 8px;

    background: #ff6f00;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.info-icon i {

    color: #fff;

    font-size: 25px;

}

.info-card h4 {

    font-size: 18px;

    font-weight: 700;

    color: #333333;

    margin-bottom: 8px;

}

.info-card p {

    font-size: 16px;

    line-height: 1.6;

    color: #666;

}

.info-card a {

    color: #333333;

    font-weight: 600;

    text-decoration: none;

}

.info-card a:hover {

    color: #ff6f00;

}

/* TABLET */

@media(max-width:991px) {

    .info-wrapper {

        grid-template-columns: 1fr;

    }

    .info-column:first-child {

        border-right: none;

        border-bottom:
            1px solid #ececec;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .contact-info-section {

        padding: 50px 0;

    }

    .info-column {

        padding: 28px;

    }

    .info-card {

        gap: 14px;

    }

    .info-icon {

        width: 50px;

        height: 50px;

    }

    .info-column h3 {

        font-size: 20px;

    }

}





/* =========================
CONTACT CTA
========================= */

.contact-cta {

    padding: 70px 0px;
    background-image: url(/external/public_html/images/contact-cta.jpg) center center/cover no-repeat;
    /* background: #fff; */

}

.cta-wrapper {

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    min-height: 260px;

    display: flex;

    align-items: center;

    padding:
        100px 45px;

    background:
        linear-gradient(90deg,
            rgba(1, 18, 46, .96) 0%,
            rgba(1, 18, 46, .90) 38%,
            rgba(1, 18, 46, .25) 100%),
        url("/external/public_html/images/contact-cta.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* subtle pattern */

.cta-wrapper::after {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px);

    background-size:
        18px 18px;

    opacity: .18;

    pointer-events: none;

}

/* CONTENT */

.cta-contents {

    position: relative;

    z-index: 2;

    max-width: 520px;

    color: #fff;

}

.cta-eyebrow {

    display: inline-block;

    margin-bottom: 16px;

    font-size: 13px;
    text-align: left;
    letter-spacing: 2px;

    font-weight: 700;

    color: #ff6f00;

}

.cta-contents h2 {

    font-size:
        clamp(30px,
            4vw,
            30px);

    line-height: 1.18;

    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;

}

.cta-contents p {

    font-size: 18px;

    line-height: 1.6;
    text-align: left;
    color:
        rgba(255, 255, 255, .82);

    margin-bottom: 25px;

}

/* BUTTON */

.cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding:
        15px 26px;

    background: #ff6f00;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    border-radius: 6px;

    transition: .3s;

}

.cta-btn:hover {

    transform:
        translateY(-3px);

}

.cta-btn i {

    font-size: 14px;

}

/* TABLET */

@media(max-width:991px) {

    .cta-wrapper {

        padding:
            45px 40px;

        min-height: 230px;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .contact-cta {

        padding-bottom: 70px;

    }

    .cta-contents h2 {

        font-size:
            clamp(25px,
                4vw,
                20px);

        line-height: 1.18;

        font-weight: 700;
        text-align: left;
        margin-bottom: 15px;

    }

    .cta-wrapper {

        padding:
            36px 28px;

        min-height: auto;

        background-position:
            center right;

    }

    .cta-contents {

        max-width: 100%;

    }

    .cta-content h2 {

        font-size: 24px;

    }

    .cta-content p {

        font-size: 14px;

        line-height: 1.6;

    }

    .cta-btn {

        width: 100%;

        justify-content: center;

    }

}






/* about us page */




/* ========================= */

.about-support {

    padding: 70px 0;

    /* background: #f8f8f8; */

}

.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    align-items: flex-start;

}



.about-content .strength-heading {
    text-align: left;
    margin-bottom: 50px;
}

.about-content .strength-heading .eyebrow {
    color: #333333 !important;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}


.about-content .strength-heading h2 {
    color: #ff6f00 !important;
    font-size: clamp(34px, 4vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: capitalize;
}


.about-content .strength-heading p {
    /* max-width: 1100px; */
    margin: auto;
    color: #5F6368;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.6;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 10px;
}



/* FEATURES */

.about-features {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 45px;

}

.feature {

    text-align: center;

}

.feature-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    border-radius: 50%;

    border:
        1px solid rgba(255, 111, 0, .25);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

}

.feature-icon i {

    font-size: 24px;

    color: #ff6f00;

}

.feature span {

    display: block;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.6;

    color: #333333;

}

/* RIGHT */

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    height: 580px;

    object-fit: cover;

    border-radius: 10px;

    display: block;

}

.about-quote {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    background: linear-gradient(135deg,
            #ffffff 0%,
            #ff6f00 100%);

    padding: 18px 24px;

    border-radius: 10px;

    color: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);

}

.about-quote i {

    font-size: 26px;

    color: #ff6f00;

    margin-bottom: 16px;

}

.about-quote p {

    line-height: 1.6;
    font-weight: 600;
    color: #333333;

}


/*==================================
OUR COMMITMENT
==================================*/

.commitment {

    margin-top: 25px;

    padding: 15px;

    background: #ffffff;

    border: 1px solid rgba(255, 111, 0, .15);

    border-left: 5px solid #ff6f00;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    position: relative;

    overflow: hidden;

}

.commitment::before {

    content: "";

    position: absolute;

    top: -60px;

    right: -60px;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(255, 111, 0, .05);

}

.commitment::after {

    content: "";

    position: absolute;

    bottom: -40px;

    left: -40px;

    width: 120px;

    height: 120px;

    border-radius: 50%;

    background: rgba(51, 51, 51, .04);

}

.commitment h3 {

    position: relative;

    display: inline-block;

    margin: 0 0 10px;

    font-size: 20px;

    font-weight: 700;

    color: #333333;

    text-transform: uppercase;

    letter-spacing: 1px;

    z-index: 2;

}

.commitment h3::after {

    content: "";

    display: block;

    width: 70px;

    height: 3px;

    margin-top: 10px;

    background: #ff6f00;

    border-radius: 30px;

}

.commitment p {

    position: relative;

    margin: 0;

    font-size: 17px;

    line-height: 1.6;

    color: #555555;

    text-align: justify;
    margin-bottom: 10px;
    z-index: 2;

}

/*==================================
TABLET
==================================*/

@media (max-width:991px) {

    .commitment {

        padding: 30px;

    }

    .commitment h3 {

        font-size: 26px;

    }

    .commitment p {

        font-size: 16px;

        line-height: 1.9;

    }

}

/*==================================
MOBILE
==================================*/

@media (max-width:767px) {

    .commitment {

        margin-top: 30px;

        padding: 22px;

        border-left-width: 4px;

        border-radius: 10px;

    }

    .commitment h3 {

        font-size: 22px;

        margin-bottom: 16px;

    }

    .commitment h3::after {

        width: 55px;

    }

    .commitment p {

        font-size: 15px;

        line-height: 1.8;

        text-align: left;

    }

    .commitment::before {

        width: 120px;

        height: 120px;

        top: -40px;

        right: -40px;

    }

    .commitment::after {

        width: 80px;

        height: 80px;

        left: -25px;

        bottom: -25px;

    }

}


/* TABLET */

@media(max-width:991px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-features {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .about-image img {

        height: 500px;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .about-content .strength-heading h2 {
        font-size: 26px;
    }

    .about-support {

        padding: 70px 0;

    }

    .about-content h2 {

        font-size: 38px;

    }

    .about-features {

        grid-template-columns: 1fr 1fr;

        gap: 24px;

    }

    .about-image img {

        height: 350px;

    }

    .about-quote {

        left: 18px;

        right: 18px;

        bottom: 18px;

        padding: 22px;

    }

}




/* ========================= */

.industry-focus {

    padding: 70px 0;
    background: #333333;
    /* background:

        linear-gradient(180deg,
            #071327,
            #081a36); */

    overflow: hidden;

}

/* HEAD */

.industry-head {

    text-align: center;

    margin-bottom: 60px;

}

.focus-number {

    color: #ff6f00;

    font-weight: 800;

    margin-right: 10px;

}

.focus-eyebrow {

    color: #fff;

    font-size: 13px;

    letter-spacing: 2px;

}

.industry-head h2 {

    margin-top: 18px;

    color: #fff;

    font-size:
        clamp(32px,
            5vw,
            58px);

    line-height: 1.2;

}

/* GRID */

.focus-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}

/* CARD */

/* CARD */

.focus-card {

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    padding: 40px 30px;

    min-height: 412px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    isolation: isolate;

}

/* IMAGE + OVERLAY */

.focus-card::before {

    content: '';

    position: absolute;

    inset: 0;

    z-index: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1);

    transition: .6s;

}

/* DIFFERENT IMAGE */

.focus-card:nth-child(1)::before {

    background:
        linear-gradient(180deg,
            rgba(51, 51, 51, 0.35) 0%,
            rgba(51, 51, 51, 0.65) 45%,
            rgba(255, 111, 0, 0.30) 100%),
        url("images/focus-1.png");

}

.focus-card:nth-child(2)::before {

    background:
        linear-gradient(180deg,
            rgba(51, 51, 51, 0.35) 0%,
            rgba(51, 51, 51, 0.65) 45%,
            rgba(255, 111, 0, 0.30) 100%),
        url("images/focus-2.png");

}

.focus-card:nth-child(3)::before {

    background:
        linear-gradient(180deg,
            rgba(51, 51, 51, 0.35) 0%,
            rgba(51, 51, 51, 0.65) 45%,
            rgba(255, 111, 0, 0.30) 100%),
        url("images/focus-3.png");

}

/* CONTENT */

.focus-card>* {

    position: relative;

    z-index: 2;

}

/* REMOVE OLD OVERLAY */

.focus-overlay {

    display: none;

}

/* OPTIONAL HOVER */

.focus-card:hover::before {

    transform: scale(1.06);

}

.focus-icon {

    width: 76px;

    height: 76px;

    border-radius: 50%;

    margin: auto;

    margin-bottom: 24px;

    border:
        1px solid rgba(255, 111, 0, .4);

    display: flex;

    align-items: center;

    justify-content: center;

}

.focus-icon i {

    font-size: 30px;

    color: #ff6f00;

}

.focus-card h3 {

    color: #fff;
    font-weight: 600;
    font-size: 25px;

    line-height: 1.3;

    margin-bottom: 10px;

}

.focus-card p {
    font-size: 17px;
    color:
        rgba(255, 255, 255, .8);

    line-height: 1.6;

}

/* BOTTOM */

.focus-bottom {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 40px;

}

.bottom-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 22px;

    border:
        1px solid rgba(255, 255, 255, .08);

    color: #fff;

}

.bottom-item i {

    color: #ff6f00;

}


/* =========================
FOCUS MINI
========================= */

.focus-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.focus-mini-card {

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        15px;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 10px;

    transition: .35s;

}

.focus-mini-card:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255, 255, 255, .06);

    border-color:
        rgba(255, 111, 0, .22);

}

.focus-mini-icon {

    width: 60px;

    height: 60px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255, 111, 0, .28);

    background:
        rgba(255, 111, 0, .06);

}

.focus-mini-icon i {

    font-size: 18px;

    color: #ff6f00;

}

.focus-mini-content {

    display: flex;

    flex-direction: column;

}

.focus-mini-content h4 {

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;

    color: #fff;

    margin-bottom: 5px;

}

.focus-mini-content p {

    font-size: 14px;

    line-height: 1.6;

    color:
        rgba(255, 255, 255, .72);

    margin: 0;

}

/* TABLET */

@media(max-width:991px) {

    .focus-mini {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* MOBILE */

@media(max-width:767px) {

    .focus-mini {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .focus-mini-card {

        padding: 16px;

    }

    .focus-mini-icon {

        width: 44px;

        height: 44px;

    }

    .focus-mini-content h4 {
        font-weight: 600;
        font-size: 16px;

    }

    .focus-mini-content p {

        font-size: 14px;

    }

}

/* TABLET */

@media(max-width:991px) {

    .focus-grid {

        grid-template-columns: 1fr;

    }

    .focus-bottom {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* MOBILE */

@media(max-width:767px) {

    .industry-focus {

        padding: 70px 0;

    }

    .focus-card {

        padding: 45px 25px;

        min-height: 300px;

    }

    .focus-card h3 {

        font-size: 24px;

    }

    .focus-bottom {

        grid-template-columns: 1fr;

    }

}





/* ========================= */

.manufacturing-support {

    padding: 70px 0;

}

/* HEAD */

.support-heading {

    text-align: center;

    max-width: 900px;

    margin: auto auto 60px;

}

.support-eyebrow {

    color: #ff6f00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}

.support-heading h2 {

    color: #fff;

    font-size:
        clamp(34px,
            5vw,
            60px);

    line-height: 1.2;

    margin:
        20px 0;

}

.support-heading h2 span {

    display: block;

    color: #ff6f00;

}

.support-heading p {

    color:
        rgba(255, 255, 255, .72);

    line-height: 1.6;

}

/* GRID */

.support-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}

/* CARD */

.support-card {

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    height: 300px;

}

.support-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.support-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(4, 14, 32, .08),
            rgba(4, 14, 32, .92));

}

.support-card:hover img {

    transform: scale(1.08);

}

.support-content {

    position: absolute;

    left: 24px;

    bottom: 24px;

    z-index: 2;

}

.support-icon {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 111, 0, .3);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    background:
        rgba(0, 0, 0, .28);

}

.support-icon i {

    color: #ff6f00;

    font-size: 20px;

}

.support-content h3 {

    color: #fff;
    font-weight: 600;
    font-size: 20px;

    line-height: 1.3;

}

/* TABLET */

@media(max-width:991px) {

    .support-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* MOBILE */

@media(max-width:767px) {

    .manufacturing-support {

        padding: 70px 0;

    }

    .support-grid {

        grid-template-columns: 1fr;

    }

    .support-card {

        height: 240px;

    }

    .support-content {

        left: 18px;

        bottom: 18px;

    }

    .support-content h3 {

        font-size: 20px;

    }

}





.eco-system {
    padding: 50px 0px;
}





/* ========================= */

.why-emnora {

    padding: 100px 0;

    background:
        linear-gradient(145deg,
            #151515 0%,
            #2a2a2a 35%,
            #333333 65%,
            #4d341d 85%,
            #ff6f00 125%);

    overflow: hidden;

}

.why-wrapper {

    display: grid;

    grid-template-columns:
        450px 1fr;

    gap: 20px;

}

/* LEFT */

.why-intro {

    padding: 0px 0;

}


.why-eyebrow {

    color: #fff;

    font-size: 13px;

    letter-spacing: 2px;

}

.why-intro h2 {

    margin-top: 15px;

    font-size:
        clamp(34px,
            5vw,
            35px);

    line-height: 1.4;
    font-weight: 600;
    color: #fff;

    margin-bottom: 10px;

}

.why-intro h2 span {

    display: block;

    color: #ff6f00;

}

.why-intro p {
    font-size: 18px;
    color:
        rgba(255, 255, 255, .74);

    line-height: 1.6;

}

/* RIGHT */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

}

.why-card {

    padding:
        15px 10px;

    border:
        1px solid rgba(255, 255, 255, .08);

    background:
        rgba(255, 255, 255, .02);

    transition: .35s;

}

.why-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255, 111, 0, .22);

    background:
        rgba(255, 255, 255, .04);

}

.why-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 111, 0, .28);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0px auto 15px;

}

.why-icon i {
    font-size: 30px;
    color: #ff6f00;

}

.why-card h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;

}

.why-card p {
    font-size: 16px;
    color:
        rgba(255, 255, 255, .72);
    text-align: center;
    line-height: 1.6;
    margin: 0PX;
}

/* TABLET */

@media(max-width:991px) {

    .why-wrapper {

        grid-template-columns: 1fr;

    }

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}

/* MOBILE */

@media(max-width:767px) {

    .why-emnora {

        padding: 70px 0;

    }

    .why-intro p {
        font-size: 16px;
        color:
            rgba(255, 255, 255, .74);

        line-height: 1.6;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-card {

        padding: 20px;

    }

    .why-card h3 {

        font-size: 20px;

    }

}






/* ========================= */

.work-together {

    padding: 80px 0;

    background:
        radial-gradient(circle at top right,
            rgba(255, 111, 0, .25),
            transparent 35%),
        linear-gradient(180deg,
            #222222 0%,
            #333333 60%,
            #1b1b1b 100%);

    overflow: hidden;

}

.work-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 0px;

    align-items: center;

}

/* LEFT */

.work-top {

    display: flex;

    gap: 22px;

    align-items: center;

    margin-bottom: 26px;

}


.work-eyebrow {

    color: #fff;

    font-size: 20px;

    letter-spacing: 1px;

    font-weight: 700;

}

.work-line {

    width: 120px;

    height: 3px;

    background: #ff6f00;

    margin-top: 10px;

}

.work-content h2 {

    font-size:
        clamp(35px,
            0vw,
            20px);

    line-height: 1.05;

    font-weight: 700;

    color: #fff;

    max-width: 850px;

    margin-bottom: 28px;

}

.work-content h2 span {

    display: block;

    color: #ff6f00;

}

.work-desc {

    font-size: 18px;

    line-height: 1.6;

    color:
        rgba(255, 255, 255, .82);

    max-width: 850px;

    margin-bottom: 42px;

}

/* FEATURES */

.work-features {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 30px;

}

.work-feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding-right: 24px;

    border-right:
        1px solid rgba(255, 255, 255, .15);

}

.work-feature:last-child {

    border: none;

}

.feature-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    border:
        1px solid rgba(255, 111, 0, .45);

    display: flex;

    align-items: center;

    justify-content: center;

}

.feature-icon i {

    font-size: 25px;

    color: #ff6f00;

}

.work-feature h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.work-feature p {

    color: #d8d8d8;

    font-size: 18px;

}

/* ACTION */

.work-action {

    display: flex;

    gap: 40px;

    align-items: center;

    flex-wrap: wrap;

}

.work-btn {

    padding:
        15px 20px;

    background: #ff6f00;

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 18px;

    border-radius: 8px;

}

.work-call {

    display: flex;

    align-items: center;

    gap: 18px;

}

.call-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 111, 0, .4);

    display: flex;

    align-items: center;

    justify-content: center;

}

.call-icon i {

    color: #fff;

    font-size: 32px;

}

.work-call small {

    display: block;

    color: #bfbfbf;

    font-size: 18px;

    margin-bottom: 0px;

}

.work-call a {

    font-size: 25px;

    color: #ff6f00;

    text-decoration: none;

    font-weight: 700;

}

/* IMAGE */

.work-image {

    position: relative;

    height: 100%;

    overflow: hidden;

    clip-path:
        polygon(20% 0,
            100% 0,
            100% 100%,
            0 100%,
            0 58%);

    border-radius: 20px;

}

.work-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



/* TABLET */

@media(max-width:991px) {

    .work-wrapper {

        grid-template-columns: 1fr;

    }

    .work-image {

        height: 500px;

        clip-path: none;

    }

    .work-content h2 {

        font-size: 64px;

    }

    .work-desc {

        font-size: 20px;

    }

    .work-steps {

        grid-template-columns: 1fr;

    }

    .step {

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, .08);

    }

}

/* MOBILE */

@media(max-width:767px) {

    .work-together {

        padding: 70px 0;

    }

    .work-top {
        margin-bottom: 15px;
    }

    .work-number {

        font-size: 42px;

    }

    .work-eyebrow {

        font-size: 16px;

    }

    .work-feature h4 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .work-action {

        display: flex;

        gap: 20px;

        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;

    }

    .work-content h2 {
        margin-bottom: 15PX;
        font-size: 35px;

    }

    .work-desc {

        font-size: 16px;

    }

    .work-features {

        flex-direction: flex;

    }

    .work-feature {

        border: none;

        padding-right: 0;

    }

    .work-btn {

        width: 100%;

        justify-content: center;

        font-size: 18px;

    }

    .work-call a {

        font-size: 26px;

    }

    .work-image {
        border-radius: 10px;
        height: 320px;

    }

    .step {

        padding: 24px;

    }

    .step h4 {

        font-size: 18px;

    }

    .step p {

        font-size: 15px;

    }

}






/* Consumables page */


/* =========================
PRODUCT DESCRIPTION
========================= */

.discription {

    padding: 50px 0px 0px;

    /* background: #fff; */

    overflow: hidden;

}

/* .explaination {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    align-items: flex-start;

} */

/* LEFT */

.produt-about {

    /* max-width: 760px; */

}

.produt-about .strength-heading {

    text-align: center;

}

.produt-about .strength-para {

    max-width: 100%;

    margin: 0px auto;
    max-width: 900px;
    text-align: center;

}

/* RIGHT */

.products-img {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

/* subtle background */

.products-img::before {

    content: '';

    position: absolute;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 111, 0, .06),
            transparent 72%);

    z-index: 0;

}

.products-img img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 633px;

    height: auto;

    object-fit: contain;

    transition: .5s;

}

.products-img:hover img {

    transform:
        translateY(-8px);

}

/* TABLET */

@media(max-width:991px) {

    .explaination {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .produt-about {

        max-width: 100%;

    }

    .produt-about .strength-heading {

        text-align: center;

    }

    .produt-about .strength-para {

        text-align: center;

    }

    .products-img {

        order: -1;

    }

    .products-img img {

        max-width: 420px;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .discription {

        padding: 70px 0;

    }

    .explaination {

        gap: 40px;

    }

    .products-img::before {

        width: 300px;

        height: 300px;

    }

    .products-img img {

        max-width: 100%;

    }

}



/* ========================= */

.product-specs {

    padding: 50px 0px 50px;

    /* background: #f6f6f6; */

}

.specs-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}

.spec-card {

    background: #fff;

    border:
        1.5px solid #ff6f00;

    border-radius: 10px;

    padding: 15px;

}

.spec-card h3 {

    text-align: center;

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 22px;

    color: #ff6f00;

    position: relative;

    display: inline-block;

    left: 50%;

    transform: translateX(-50%);

}

/* UNDERLINE */

.spec-card h3::after {

    content: '';

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: -10px;

    width: 75%;

    height: 2px;

    background: #000000;

    border-radius: 10px;

}

/* TOP */

.spec-top {

    display: grid;

    grid-template-columns:
        1fr 350px;

    gap: 10px;

    align-items: flex-start;

}

/* IMAGE */

.spec-image {

    background: #fafafa;

    padding: 0px;

    border-radius: 8px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.spec-image img {

    max-width: 100%;

    height: 200px;

    object-fit: contain;

}

/* TABLE */

.spec-table {

    border:
        1px solid #ff6f00;

    border-radius: 12px;

    padding: 10px;

}

.spec-row {

    display: flex;

    /* justify-content: space-between; */

    gap: 10px;

    padding:
        8px;

    background: #d8e2ef;

    border-radius: 6px;

    margin-bottom: 8px;

}

.spec-row:last-child {

    margin-bottom: 0;

}

.spec-row span {

    font-size: 14px;

    font-weight: 700;

    color: #000000;

}

.spec-row strong {

    font-size: 14px;

    font-weight: 500;

}

/* =========================
USE SECTION
========================= */

.spec-use {

    margin-top: 10px;

    padding: 20px 15px;

    background:
        linear-gradient(180deg,
            #fffdf8,
            #fffdf8);

    border-left:
        4px solid #ff6f00;

    border-radius: 10px;

}

/* TITLE */

.spec-use h4 {

    font-size: 18px;

    font-weight: 700;

    color: #000000;

    margin-bottom: 16px;

    display: flex;

    align-items: center;

    gap: 10px;

}

.spec-use h4::before {

    content: '\f0eb';

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    color: #ff6f00;

    font-size: 16px;

}

/* LIST */

.spec-use ul {

    list-style: none;

    padding: 0;

    margin: 0;

    display: grid;

    gap: 12px;

}

/* ITEM */

.spec-use li {

    position: relative;

    padding-left: 25px;

    font-size: 16px;

    line-height: 1.6;

    color: #222;

    font-weight: 500;

}

/* CUSTOM BULLET */

.spec-use li::before {

    content: '';

    position: absolute;

    left: 0;

    top: 8px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ff6f00;

    box-shadow:
        0 0 0 5px rgba(255, 111, 0, .12);

}

/* HOVER */

.spec-use li:hover {

    transform:
        translateX(4px);

    transition: .25s;

}

/* MOBILE */

@media(max-width:767px) {

    .spec-use {

        padding: 18px;

    }

    .spec-use h4 {

        font-size: 16px;

    }

    .spec-use li {

        font-size: 15px;

        line-height: 1.6;

        padding-left: 22px;

    }

    .spec-use li::before {

        width: 10px;

        height: 10px;

        top: 8px;

    }

}

/* TABLET */

@media(max-width:1100px) {

    .specs-grid {

        grid-template-columns: 1fr;

    }

}

/* MOBILE */

@media(max-width:767px) {

    .product-specs {

        padding: 70px 0;

    }

    .spec-card {

        padding: 10px;

    }

    .spec-card h3 {

        font-size: 15px;

    }

    .spec-top {

        grid-template-columns: 1fr;

    }

    .spec-image img {

        height: 180px;

    }

    .spec-row {

        flex-direction: flex;

        gap: 8px;

    }

    .spec-row span,
    .spec-row strong {

        font-size: 15px;

    }

    .spec-use li {

        font-size: 15px;

        line-height: 1.6;

    }

}


/* =========================
SECTION LABEL
========================= */

.section-label {

    display: inline-flex;

    align-items: center;

    background: #333333;
    border-radius: 999px;
    margin-bottom: 15px;
    padding: 0px 15px 0px 0px;

    gap: 10px;

}

/* NUMBER */

.label-number {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #ff6f00;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 700;

    color: #ff6f00;

    line-height: 1;

}

/* TEXT */

.label-text {

    font-size: 15px;

    font-weight: 700;

    color: #fff;

    letter-spacing: .5px;

    text-transform: uppercase;

    white-space: nowrap;

}

/* TABLET */

@media(max-width:767px) {

    .section-label {

        padding: 7px 18px 7px 7px;

        gap: 14px;

    }

    .label-number {

        width: 42px;

        height: 42px;

        font-size: 24px;

    }

    .label-text {

        font-size: 15px;

    }

}






/* service page */





/*=================================
ENGINEERING SUPPORT
=================================*/

.engineering-support {
    padding: 50px 0;
    background: #f8f8f8;
    overflow: hidden;
}

/* Layout */

.engineering-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    text-align: left;

    gap: 20px;

}

.engineering-wrapper .strength-heading {
    text-align: left;
}



.engineering-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 45px;
    text-align: left;
}

/* FEATURES */

.engineering-features {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

}

.engineering-feature {

    text-align: center;

    padding: 0 15px;

    border-right: 1px solid #ddd;

}

.engineering-feature:last-child {

    border-right: none;

}

.engineering-feature i {

    font-size: 34px;

    color: #ff6f00;

    margin-bottom: 18px;

}

.engineering-feature h4 {

    font-size: 16px;

    color: #222;

    font-weight: 700;

    line-height: 1.5;

    margin: 0;

}

/* IMAGE */

.engineering-image {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 60%);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

.engineering-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: .6s;

}

.engineering-image:hover img {

    transform: scale(1.06);

}

/* Overlay */

.engineering-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(25, 25, 25, .25),
            rgba(0, 0, 0, .45));

}

/* Decorative Dots */

.engineering-support {

    position: relative;

}

.engineering-support::before {

    content: "";

    position: absolute;

    right: 40px;

    top: 90px;

    width: 110px;

    height: 110px;

    background-image: radial-gradient(#d9d9d9 1.5px, transparent 1.5px);

    background-size: 14px 14px;

    opacity: .6;

}

/*=====================
TABLET
======================*/

@media(max-width:991px) {

    .engineering-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .engineering-content {

        order: 2;

        text-align: center;

    }

    .engineering-content p {

        margin: auto auto 40px;

    }

    .engineering-features {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }

    .engineering-feature {

        border: none;

    }

    .engineering-image {

        order: 1;

        clip-path: none;

        border-radius: 18px;

    }

}

/*=====================
MOBILE
======================*/

@media(max-width:767px) {

    .engineering-support {

        padding: 70px 0;

    }

    .engineering-content h2 {

        font-size: 25px;

    }

    .engineering-content p {

        font-size: 15px;

    }

    .engineering-features {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

    .engineering-feature {

        padding: 0;

    }

    .engineering-feature i {

        font-size: 28px;

    }

    .engineering-feature h4 {

        font-size: 15px;

    }

    .engineering-image {

        border-radius: 14px;

    }

    .engineering-support::before {

        display: none;

    }

}

@media(max-width:480px) {

    .engineering-features {

        grid-template-columns: 4, 1fr;

    }

}





/*=================================
TECHNICAL SERVICES
=================================*/

.tech-services-section {

    padding: 50px 0;

    background: #f8f8f8;

}

.tech-services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

/* CARD */

.tech-service-box {

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 270px;

    align-items: center;

    border: 1px solid #ececec;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

    transition: .35s;

}

.tech-service-box:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

}

.tech-service-content {

    padding: 20px;

}

.tech-service-icon {

    width: 54px;

    height: 54px;

    border-radius: 12px;

    background: #333333;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 10px;

}

.tech-service-icon i {

    font-size: 22px;

}

.tech-service-content h3 {

    font-size: 21px;

    color: #000000;

    line-height: 1.35;

    font-weight: 700;

    margin-bottom: 10px;

}

.tech-service-content h3::after {

    content: "";

    display: block;

    width: 50%;

    height: 2px;

    margin-top: 5px;

    background: #ff6f00;

    border-radius: 20px;

}

.tech-service-content p {

    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
    margin: 0px;
    color: #666;

}

/* IMAGE */

.tech-service-thumb {

    height: 100%;

    overflow: hidden;

}

.tech-service-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.tech-service-box:hover .tech-service-thumb img {

    transform: scale(1.08);

}

/*====================
TABLET
====================*/

@media(max-width:1200px) {

    .tech-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:991px) {

    .tech-services-grid {

        grid-template-columns: 1fr;

    }

    .tech-service-box {

        grid-template-columns: 1fr;

    }

    .tech-service-thumb {

        order: -1;

        height: 240px;

    }

}

/*====================
MOBILE
====================*/

@media(max-width:767px) {

    .tech-services-section {

        padding: 70px 0;

    }

    .tech-service-thumb {

        height: 220px;

    }

    .tech-service-content {

        padding: 20px;

    }

    .tech-service-content h3 {

        font-size: 18px;

    }

    .tech-service-content p {

        font-size: 14px;

        line-height: 1.7;

    }

}






/*==================================
WHY CHOOSE EMNORA
==================================*/

.emnora-why-section {

    padding: 50px 0;

    background: #f8f9fc;

    position: relative;

    overflow: hidden;

}

.emnora-why-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top left,
            rgba(255, 111, 0, .08),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(7, 30, 114, .05),
            transparent 35%);

    pointer-events: none;

}


/*======================
Cards
=======================*/

.emnora-feature-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.emnora-feature-card {

    background: #fff;

    border-radius: 10px;

    padding: 20px;

    text-align: center;

    border: 1px solid #ececec;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.emnora-feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 22px 45px rgba(0, 0, 0, .12);

}

.emnora-feature-icon {

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background: #eef3fb;

    margin: 0 auto 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

.emnora-feature-card:hover .emnora-feature-icon {

    background: #ff6f00;

}

.emnora-feature-icon i {

    font-size: 30px;

    /* color: #1d2b4d; */

    transition: .35s;

}

.emnora-feature-card:hover .emnora-feature-icon i {

    color: #fff;

}

.emnora-feature-card h3 {

    font-size: 20px;

    /* color: #1d2b4d; */

    margin-bottom: 10px;

    font-weight: 700;

}

.emnora-feature-card p {

    font-size: 17px;

    line-height: 1.6;

    color: #555;

    margin: 0;

}

/*======================
Tablet
=======================*/

@media(max-width:991px) {

    .emnora-feature-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*======================
Mobile
=======================*/

@media(max-width:767px) {

    .emnora-why-section {

        padding: 70px 0;

    }

    .emnora-feature-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .emnora-why-heading {

        margin-bottom: 45px;

    }

    .emnora-why-heading h2 {

        font-size: 34px;

    }

    .emnora-why-heading p {

        font-size: 15px;

    }

    .emnora-feature-card {

        padding: 30px 22px;

    }

    .emnora-feature-icon {

        width: 75px;

        height: 75px;

    }

    .emnora-feature-icon i {

        font-size: 28px;

    }

    .emnora-feature-card h3 {

        font-size: 20px;

    }

}





/*==================================================
TECH CTA SECTION
==================================================*/

.tech-cta-section {

    padding: 50px 0;

    background: #f7f7f7;

}

.tech-cta-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    /* min-height: 720px; */

    overflow: hidden;

    border-radius: 10px;

    background: #191918;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .18);

}

/*============================
LEFT PANEL
============================*/

.tech-cta-content {

    position: relative;

    z-index: 5;

    padding: 30px;

    color: #fff;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

/* Background */

.tech-cta-content::before {

    content: "";

    position: absolute;

    inset: 0;

    /* background:
        linear-gradient(90deg,
            rgba(25, 25, 25, .97) 0%,
            rgba(40, 40, 40, .94) 55%,
            rgba(40, 40, 40, .70) 100%); */

    z-index: -2;

}

.tech-cta-content::after {

    content: "";

    position: absolute;

    inset: 0;

    /* background:
        radial-gradient(circle at left,
            rgba(255, 111, 0, .12),
            transparent 55%); */

    z-index: -1;

}

/*============================
Heading
============================*/

.tech-cta-eyebrow {

    display: inline-block;

    color: #ff6f00;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.tech-cta-eyebrow::after {

    content: "";

    display: block;

    width: 65px;

    height: 3px;

    background: #ff6f00;

    margin-top: 12px;

}

.tech-cta-content h2 {

    font-size: clamp(30px, 5vw, 40px);

    line-height: 1.05;

    font-weight: 700;

    margin-bottom: 15px;

    color: #fff;

}

.tech-cta-content h2 span {

    display: block;

    color: #ff6f00;

}

.tech-cta-content p {

    /* max-width: 620px; */

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .85);

    margin-bottom: 45px;

}

/*============================
FEATURES
============================*/

.tech-cta-features {

    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);

    margin-bottom: 25px;

}

.tech-cta-feature {
    text-align: center;
    padding-right: 18px;

    border-right: 1px solid rgba(255, 255, 255, .15);

}

.tech-cta-feature:last-child {

    border: none;

}

.tech-feature-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid rgba(255, 111, 0, .35);

    background: rgba(255, 255, 255, .05);

    margin: 0px auto 15px;

    transition: .4s;

}

.tech-feature-icon i {

    font-size: 25px;

    color: #ff6f00;

    transition: .4s;

}

.tech-cta-feature:hover .tech-feature-icon {

    background: #ff6f00;

    transform: translateY(-6px);

}

.tech-cta-feature:hover i {

    color: #fff;

}

.tech-cta-feature h4 {

    color: #fff;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

}

.tech-cta-feature span {

    display: block;

    font-size: 16px;

    color: rgba(255, 255, 255, .82);

    font-weight: 500;

}

/*============================
BUTTON
============================*/

.tech-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: fit-content;

    padding: 15px 28px;

    background: #ff6f00;

    border-radius: 10px;

    color: #fff;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 18px;

    font-weight: 700;

    transition: .35s;

}

.tech-cta-btn:hover {

    background: #e66100;

    color: #fff;

    transform: translateY(-3px);

}

.tech-btn-icon {

    font-size: 25px;

}

.tech-btn-arrow {

    font-size: 25px;

}

/*============================
BOTTOM NOTE
============================*/

.tech-cta-note {

    margin-top: 15px;

    display: flex;

    align-items: center;

    /* gap: 20px; */

}

.tech-cta-note i {

    font-size: 42px;

    color: #ff6f00;

}

.tech-cta-note p {

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

}

/*============================
IMAGE
============================*/

.tech-cta-image {

    position: relative;

    overflow: hidden;

}

.tech-cta-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

/* Dark Overlay */

.tech-cta-image::after {

    content: "";

    position: absolute;

    inset: 0;

    /* background:
        linear-gradient(90deg,
            rgba(40, 40, 40, .72) 0%,
            rgba(40, 40, 40, .20) 25%,
            rgba(0, 0, 0, .10) 100%); */

}

/* Orange Glow */

.tech-cta-image::before {

    content: "";

    position: absolute;

    right: -150px;

    top: -150px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 111, 0, .22),
            transparent 70%);

    z-index: 2;

}

/*============================
TABLET
============================*/

@media(max-width:1200px) {

    .tech-cta-wrapper {

        grid-template-columns: 1fr;

    }

    .tech-cta-image {

        height: 520px;

        order: -1;

    }

    .tech-cta-content {

        padding: 60px 45px;

    }

    .tech-cta-features {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px;

    }

    .tech-cta-feature {

        border: none;

    }

}

/*============================
MOBILE
============================*/

@media(max-width:768px) {

    .tech-cta-section {

        padding: 70px 0;

    }

    .tech-cta-wrapper {

        border-radius: 10px;

    }

    .tech-cta-content {

        padding: 40px 28px;

    }

    .tech-cta-content h2 {

        font-size: 42px;

    }

    .tech-cta-content p {

        font-size: 16px;

        margin-bottom: 35px;

    }

    .tech-cta-image {

        height: 320px;

    }

    .tech-cta-features {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

        margin-bottom: 35px;

    }

    .tech-feature-icon {

        width: 68px;

        height: 68px;

    }

    .tech-feature-icon i {

        font-size: 28px;

    }

    .tech-cta-feature h4 {

        font-size: 18px;

    }

    .tech-cta-feature span {

        font-size: 15px;

    }

    .tech-cta-btn {

        padding: 18px 22px;

        font-size: 18px;

    }

    .tech-btn-icon {

        font-size: 24px;

    }

    .tech-btn-arrow {

        font-size: 24px;

    }

    .tech-cta-note {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

    .tech-cta-note i {

        font-size: 34px;

    }

    .tech-cta-note p {

        font-size: 15px;

    }

}

@media(max-width:520px) {

    .tech-cta-features {

        grid-template-columns: 4, 1fr;

        gap: 25px;

    }

    .tech-cta-content h2 {

        font-size: 30px;

    }

    .tech-cta-btn {

        font-size: 15px;
        gap: 10px;
    }

}





/*====================================================
TECHNICAL SERVICE PROCESS
====================================================*/

.service-process-section {

    padding: 100px 0;

    background: #f7f7f7;

    overflow: hidden;

}

.service-process-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 25px;

}

/*==========================
LEFT
==========================*/

.service-process-content {
    position: relative;
}

.service-process-content .strength-heading {
    text-align: left;
}


.service-process-content h2 {

    font-size: clamp(20px, 4vw, 35px);

    line-height: 1.15;

    color: #ff6f00;
    text-align: left;
    font-weight: 700;

    margin-bottom: 45px;

}

.service-process-content h2 span {

    display: block;

    color: #ff6f00;

}

/*==========================
TIMELINE
==========================*/

.service-process-list {

    position: relative;

}

.service-process-item {

    display: grid;

    grid-template-columns: 28px 60px 30px 1fr;

    gap: 15px;

    align-items: flex-start;

    margin-bottom: 15px;

}

.last-item {

    margin-bottom: 0;

}

/* Timeline */

.service-process-left {

    display: flex;

    flex-direction: column;

    align-items: center;

    height: 100%;

}

.service-process-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #1f3569;

    flex-shrink: 0;

}

.service-process-line {

    width: 2px;

    flex: 1;

    background: #d5dbe7;

    margin-top: 5px;

}

/* Icon */

.service-process-icon {

    width: 56px;

    height: 56px;

    border-radius: 12px;

    background: #333333;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

.service-process-icon i {

    font-size: 22px;

    color: #fff;

}

.service-process-item:hover .service-process-icon {

    background: #ff6f00;

    transform: translateY(-4px);

}

/* Number */

.service-process-number {

    color: #ff6f00;

    font-weight: 800;

    font-size: 17px;

    padding-top: 18px;

}

/* Text */

.service-process-info h3 {

    font-size: 20px;

    color: #000000;

    margin-bottom: 8px;

    font-weight: 700;

}

.service-process-info p {

    font-size: 16px;

    line-height: 1.6;
    margin: 0px;
    color: #555;

}

/*==========================
RIGHT IMAGE
==========================*/

.service-process-image {

    position: relative;

    overflow: hidden;

    min-height: 760px;

    border-radius: 22px;

    clip-path: polygon(16% 0,
            100% 0,
            100% 100%,
            0 100%,
            0 40%);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);

}

.service-process-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.service-process-image:hover img {

    transform: scale(1.06);

}

/* Overlay */

.service-process-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(51, 51, 51, .55) 0%,
            rgba(51, 51, 51, .15) 40%,
            transparent 100%);

}

/*==========================
DOTS
==========================*/

.service-process-dots {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 80px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    z-index: 5;

}

.service-process-dots span {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #ff6f00;

    opacity: .8;

}

/*==========================
Hover
==========================*/

.service-process-item:hover h3 {

    color: #ff6f00;

}

.service-process-item {

    transition: .35s;

}

.service-process-item:hover {

    transform: translateX(6px);

}



/*====================================================
LARGE TABLET
====================================================*/

@media (max-width:1200px) {

    .service-process-wrapper {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .service-process-image {

        order: -1;

        min-height: 520px;

        clip-path: none;

        border-radius: 18px;

    }

    .service-process-content {

        max-width: 900px;

        margin: auto;

    }

    .service-process-list {

        margin-top: 35px;

    }

}

/*====================================================
TABLET
====================================================*/

@media (max-width:991px) {

    .service-process-section {

        padding: 80px 0;

    }

    .service-process-content h2 {

        font-size: 44px;

    }

    .service-process-item {

        grid-template-columns: 22px 55px 40px 1fr;

        gap: 16px;

    }

    .service-process-icon {

        width: 50px;

        height: 50px;

    }

    .service-process-icon i {

        font-size: 20px;

    }

    .service-process-number {

        font-size: 16px;

        padding-top: 14px;

    }

    .service-process-info h3 {

        font-size: 20px;

    }

    .service-process-info p {

        font-size: 14px;

        line-height: 1.6;

    }

    .service-process-image {

        min-height: 420px;

    }

    .service-process-dots {

        right: 18px;

        bottom: 18px;

    }

}

/*====================================================
MOBILE
====================================================*/

@media (max-width:767px) {

    .service-process-section {

        padding: 30px 0;

    }

    .service-process-wrapper {

        gap: 40px;

    }

    .service-process-content h2 {

        font-size: 34px;

        margin-bottom: 30px;

    }

    .service-process-eyebrow {

        font-size: 13px;

    }

    .service-process-item {

        grid-template-columns: 16px 46px 32px 1fr;

        gap: 12px;

        margin-bottom: 22px;

    }

    .service-process-dot {

        width: 8px;

        height: 8px;

    }

    .service-process-icon {

        width: 46px;

        height: 46px;

        border-radius: 10px;

    }

    .service-process-icon i {

        font-size: 18px;

    }

    .service-process-number {

        font-size: 14px;

        padding-top: 13px;

    }

    .service-process-info h3 {

        font-size: 17px;

        line-height: 1.4;

    }

    .service-process-info p {

        font-size: 13px;

        line-height: 1.4;

    }

    .service-process-image {

        min-height: 300px;

        border-radius: 15px;

    }

    .service-process-dots {

        width: 55px;

        gap: 8px;

    }

    .service-process-dots span {

        width: 3px;

        height: 3px;

    }

}

/*====================================================
SMALL MOBILE
====================================================*/

@media (max-width:480px) {

    .service-process-content h2 {

        font-size: 25px;

    }

    .service-process-item {

        grid-template-columns: 14px 42px 28px 1fr;

    }

    .service-process-icon {

        width: 42px;

        height: 42px;

    }

    .service-process-icon i {

        font-size: 17px;

    }

    .service-process-number {

        font-size: 13px;

    }

    .service-process-info h3 {
        margin: 2px;
        font-size: 16px;

    }

    .service-process-info p {

        font-size: 12px;

    }

    .service-process-image {

        min-height: 240px;

    }

}

/*====================================================
PREMIUM ANIMATIONS
====================================================*/

.service-process-item {

    transition:
        transform .35s ease,
        opacity .35s ease;

}

.service-process-item:hover {

    transform: translateX(8px);

}

.service-process-item:hover .service-process-number {

    color: #ff6f00;

}

.service-process-item:hover .service-process-dot {

    background: #ff6f00;

    border-color: #ff6f00;

}

.service-process-item:hover .service-process-line {

    background: #ff6f00;

}

/* Image Zoom */

.service-process-image img {

    transition: transform .8s ease;

}

.service-process-image:hover img {

    transform: scale(1.08);

}

/* Overlay Animation */

.service-process-overlay {

    transition: .5s;

}

.service-process-image:hover .service-process-overlay {

    background:
        linear-gradient(90deg,
            rgba(51, 51, 51, .35),
            rgba(51, 51, 51, .08),
            transparent);

}

/* Floating Dots */

@keyframes serviceDots {

    0% {

        transform: translateY(0);

        opacity: .5;

    }

    50% {

        transform: translateY(-6px);

        opacity: 1;

    }

    100% {

        transform: translateY(0);

        opacity: .5;

    }

}

.service-process-dots span {

    animation: serviceDots 3s infinite ease-in-out;

}

.service-process-dots span:nth-child(2) {

    animation-delay: .15s;

}

.service-process-dots span:nth-child(3) {

    animation-delay: .3s;

}

.service-process-dots span:nth-child(4) {

    animation-delay: .45s;

}

.service-process-dots span:nth-child(5) {

    animation-delay: .6s;

}

.service-process-dots span:nth-child(6) {

    animation-delay: .75s;

}

.service-process-dots span:nth-child(7) {

    animation-delay: .9s;

}

.service-process-dots span:nth-child(8) {

    animation-delay: 1.05s;

}

.service-process-dots span:nth-child(9) {

    animation-delay: 1.2s;

}

.service-process-dots span:nth-child(10) {

    animation-delay: 1.35s;

}

.service-process-dots span:nth-child(11) {

    animation-delay: 1.5s;

}

.service-process-dots span:nth-child(12) {

    animation-delay: 1.65s;

}

.service-process-dots span:nth-child(13) {

    animation-delay: 1.8s;

}

.service-process-dots span:nth-child(14) {

    animation-delay: 1.95s;

}

.service-process-dots span:nth-child(15) {

    animation-delay: 2.1s;

}

.service-process-dots span:nth-child(16) {

    animation-delay: 2.25s;

}

/* Icon Animation */

.service-process-icon {

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}

.service-process-item:hover .service-process-icon {

    background: #ff6f00;

    box-shadow: 0 10px 25px rgba(255, 111, 0, .35);

}

.service-process-item:hover .service-process-icon i {

    transform: rotate(10deg);

}

/* Smooth Heading */

.service-process-info h3 {

    transition: .3s;

}

/* Image Border Glow */

.service-process-image::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255, 111, 0, .18);

    border-radius: inherit;

    pointer-events: none;

    z-index: 5;

}








.mv-section {
    --navy: #000000;
    --steel: #000000;
    --accent: #ff600f;
    --haze: #333;
    --paper: #F4F6F8;
    --white: #FFFFFF;
    --line: rgba(11, 37, 69, 0.12);

    background: var(--paper);
    padding: 50px 0;
    color: var(--navy);
    position: relative;
    overflow: hidden;
}



/* =========================
   GRID
========================= */

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 25px;
}

.mv-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 20px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -28px rgba(11, 37, 69, 0.35);
}

/* diagonal corner cut — the signature device, echoing a clipped panel edge */
.mv-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 64px 64px 0;
    border-color: transparent #333333 transparent transparent;
    z-index: 1;
}

.vision-card .mv-corner {
    border-color: transparent #333333 transparent transparent;
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.vision-card .mv-icon {
    background: var(--accent);
    color: #ffffff;
}

.mv-content h3 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
    color: #333333;
}

.mv-content h3 span {
    color: var(--accent);
    font-weight: 700;
}

.mv-line {
    width: 44px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 10px;
}

.mv-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px;
}

.mv-image {
    width: 100%;
    height: 220px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    background: var(--paper);
    margin-top: auto;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.35s ease, transform 0.5s ease;
}

.mv-card:hover .mv-image img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.04);
}

/* perforation dots — nods to panel rivet rows */
.mv-dots {
    position: absolute;
    bottom: 16px;
    left: 40px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.mv-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--haze);
    opacity: 0.5;
}

.mv-dots span:nth-child(odd) {
    background: var(--accent);
    opacity: 0.7;
}

/* =========================
   BOTTOM FEATURES
========================= */

.mv-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}

.mv-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    border-right: 1px solid var(--line);
}

.mv-feature:last-child {
    border-right: none;
}

.mv-feature-icon {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    color: var(--accent);
    font-size: 30px;
}

.mv-feature h4 {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin: 0 0 2px;
}

.mv-feature span {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--haze);
    font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-feature:nth-child(2) {
        border-right: none;
    }

    .mv-feature:nth-child(1),
    .mv-feature:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    .mv-section {
        padding: 64px 0;
    }

    .mv-card {
        padding: 36px 24px 0;
    }

    .mv-image {
        height: 180px;
    }

    .mv-features {
        grid-template-columns: 1fr;
    }

    .mv-feature {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .mv-feature:last-child {
        border-bottom: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mv-card,
    .mv-image img {
        transition: none;
    }
}




/*====================================
    WHAT WE DO
====================================*/

.what-we-do-section {
    padding: 70px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.what-we {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.what-we-do-image,
.what-we-do-content {
    flex: 1;
    min-width: 0;
}

.what-we-do-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: #2b2b2b;
    font-weight: 500;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    background: #ff6f00;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 111, 0, .15);
}

/*====================================
    Large Laptop
====================================*/

@media (max-width: 1200px) {

    .what-we {
        gap: 40px;
    }

    .service-list li {
        font-size: 17px;
    }

}

/*====================================
    Tablet
====================================*/

@media (max-width: 992px) {

    .what-we-do-section {
        padding: 60px 0;
    }

    .what-we {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .what-we-do-image {
        order: 1;
    }

    .what-we-do-content {
        order: 2;
        width: 100%;
    }

    .service-list {
        text-align: left;
        max-width: 700px;
        margin: auto;
    }

    .service-list li {
        font-size: 17px;
        line-height: 1.75;
    }

}

/*====================================
    Mobile
====================================*/

@media (max-width: 768px) {

    .what-we-do-section {
        padding: 50px 0;
    }

    .what-we {
        padding: 0 18px;
        gap: 30px;
    }

    .service-list li {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 26px;
        margin-bottom: 18px;
    }

    .service-list li::before {
        width: 8px;
        height: 8px;
        top: 10px;
        box-shadow: 0 0 0 4px rgba(255, 111, 0, .15);
    }

}

/*====================================
    Small Mobile
====================================*/

@media (max-width: 480px) {

    .what-we-do-section {
        padding: 40px 0;
    }

    .what-we {
        padding: 0 15px;
        gap: 25px;
    }

    .what-we-do-image img {
        border-radius: 10px;
    }

    .service-list li {
        font-size: 15px;
        line-height: 1.65;
        padding-left: 24px;
        margin-bottom: 16px;
    }

    .service-list li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

}



.company-header {
    /* max-width:1000px; */
    margin: 0 auto;
    text-align: center;
    padding: 50px 0px;
}

.company-logo {
    margin-bottom: 12px;
}

.company-logo img {
    width: 100px;
    display: block;
    margin: auto;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.title-row span {
    flex: 1;
    max-width: 220px;
    height: 1px;
    background: #f37021;
    position: relative;
}

.title-row span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #f37021;
    border-radius: 50%;
}

.title-row span:first-child::before {
    left: -2px;
}

.title-row span:last-child::before {
    right: -2px;
}

.title-row h2 {
    margin: 0;
    padding: 0 10px;
    color: #f37021;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.company-header p {
    margin: 0;
    display: inline-block;
    position: relative;
    color: #3c3c3c;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .2px;
    padding-bottom: 18px;
}

.company-header p::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: #f37021;
}

@media (max-width:992px) {

    .title-row {
        gap: 12px;
    }

    .title-row h2 {
        font-size: 30px;
        white-space: normal;
    }

    .title-row span {
        max-width: 120px;
    }

    .company-header p {
        font-size: 16px;
        line-height: 1.7;
    }

}

@media (max-width:576px) {

    .title-row span {
        display: none;
    }

    .title-row h2 {
        font-size: 24px;
    }

    .company-logo img {
        width: 32px;
    }

    .company-header p {
        font-size: 15px;
    }

}





/*==============================
COMING SOON
==============================*/

.coming-soon {

    padding: 80px 0;
    background: #fff;

}

.coming-slider {

    position: relative;
    overflow: hidden;
    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

}

.coming-track {

    display: flex;
    transition: .6s ease;

}

.coming-slide {

    min-width: 100%;

}

.coming-slide img {

    width: 100%;
    display: block;

}

/*==============================
BUTTONS
==============================*/

.slider-btn {

    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #ff6f00;

    font-size: 22px;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    transition: .3s;

    z-index: 20;

}

.slider-btn:hover {

    background: #ff6f00;
    color: #fff;

}

.prev {

    left: 20px;

}

.next {

    right: 20px;

}

/*==============================
DOTS
==============================*/

.slider-dots {

    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

}

.slider-dots span {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ddd;

    cursor: pointer;

    transition: .3s;

}

.slider-dots span.active {

    background: #ff6f00;

    transform: scale(1.3);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px) {

    .coming-soon {

        padding: 60px 0;

    }

    .slider-btn {

        width: 48px;
        height: 48px;

        font-size: 18px;

    }

}

@media(max-width:768px) {

    .slider-btn {

        width: 42px;
        height: 42px;

        font-size: 16px;

    }

    .prev {

        left: 10px;

    }

    .next {

        right: 10px;

    }

    .slider-dots {

        bottom: 15px;
        display: none;
        gap: 8px;

    }

    .slider-dots span {

        width: 10px;
        height: 10px;

    }

}

@media(max-width:576px) {

    .coming-soon {

        padding: 40px 0;

    }

    .coming-slider {

        border-radius: 14px;

    }

}