@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary: #f49627;
    --primary-dark: #d97e10;
    --primary-light: #fff4e6;
    --navy: #1a1a2e;
    --text-dark: #222;
    --text-muted: #666;
    --border: #e8e8e8;
    --topbar-bg: #fdf6ec;
    --white: #ffffff;
    --font: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans", sans-serif;
}

html {
    font-family: "Noto Sans", sans-serif;
}

.object-position-top {
    object-position: top;
}
.object-position-top-left {
    object-position: top left;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    font-size: 13.5px;
    color: var(--navy);
}

.topbar .inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #444;
}

.topbar .topbar-left a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.topbar .topbar-left a:hover {
    text-decoration: underline;
}

.topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar .topbar-right span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
    font-size: 13.5px;
}

.topbar .topbar-right .icon {
    width: 16px;
    height: 16px;
    opacity: 0.65;
    flex-shrink: 0;
}

.custom-navbar .navbar-brand img {
    width: 200px;
}

.custom-navbar .navbar-brand .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.custom-navbar .logo-text span {
    color: var(--primary);
}

/* ── MENU ICON ── */
.custom-navbar .menu-icon {
    font-size: 20px;
    background: transparent;
    cursor: pointer;
    padding: 9px 13px;
    border-radius: 10px;
    transition: background 0.25s;
    line-height: 1;
    color: var(--navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── BUTTON ── */
.btn-orange {
    background: var(--primary);
    text-transform: uppercase;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        background 0.25s,
        transform 0.15s;
}

.btn-orange:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ── FULL OFFCANVAS ── */
.offcanvas .navbar-brand img {
    width: 120px;
}

.offcanvas.offcanvas-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100%;
    border: none;
}

.offcanvas-header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    position: relative;
    /* IMPORTANT */
}

.header-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    font-family: cursive;
}

.brand-name span {
    color: #f49627;
}

.btn-close-custom {
    margin-left: auto;
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.2s ease;
}

.btn-close-custom:hover {
    background: #e0e0e0;
    color: #f49627;
}

/* SPINNER (3D Cube - Smaller & Brand Color) */
.spinner {
    width: 28px;
    height: 28px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinnerRotate 1.6s infinite ease-in-out;

    --clr: #f49627;
    --clr-alpha: rgba(244, 150, 39, 0.08);
}

.spinner div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr-alpha);
    border: 2px solid var(--clr);
}

/* Cube Faces */
.spinner div:nth-child(1) {
    transform: translateZ(-14px) rotateY(180deg);
}

.spinner div:nth-child(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-child(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-child(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-child(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-child(6) {
    transform: translateZ(14px);
}

/* Animation */
@keyframes spinnerRotate {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}

.offcanvas-fullscreen .offcanvas-body {
    padding: 0;
    display: flex;
    overflow: hidden;
}

.offcanvas-fullscreen .menu-left {
    width: 30%;
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--border);
    overflow-y: auto;
}

.offcanvas-fullscreen .menu-left .nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.offcanvas-fullscreen .menu-left .nav-links li {
    border-bottom: 1px solid var(--border);
}

.offcanvas-fullscreen .menu-left .nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
        padding: 13px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition:
        color 0.2s,
        padding-left 0.2s;
    position: relative;
}

.offcanvas-fullscreen .menu-left .nav-links li a .link-arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition:
        opacity 0.2s,
        transform 0.2s;
    color: var(--primary);
    font-size: 20px;
}

.offcanvas-fullscreen .menu-left .nav-links li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.offcanvas-fullscreen .menu-left .nav-links li a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.offcanvas-fullscreen .menu-left .menu-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offcanvas-fullscreen .menu-left .menu-footer .contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.offcanvas-fullscreen .menu-left .menu-footer .contact-row .icon-wrap {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offcanvas-fullscreen .menu-left .menu-footer .contact-row .icon-wrap svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}

/* ── CUSTOM SCROLLBAR (MENU LEFT) ── */
.offcanvas-fullscreen .menu-left::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-fullscreen .menu-left::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas-fullscreen .menu-left::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: background 0.2s;
}

.offcanvas-fullscreen .menu-left::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.offcanvas-fullscreen .menu-left {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.quick-enquiry-btn-2{
    display: none;
}

.menu-right {
    width: 70%;
    padding: 20px 44px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-right .section-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-right .print-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.svc-text {
    grid-column: span 2;
    /* takes one column like a card */
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
}

.menu-right .other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.menu-right .svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.18s,
        transform 0.18s,
        box-shadow 0.18s;
}

.menu-right .svc-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(244, 150, 39, 0.11);
    transform: translateY(-2px);
}

.svc-card:hover .svc-body strong,
.svc-card:hover .svc-body i {
    color: #ff6600;
}

.menu-right .svc-card--wide {
    grid-column: span 2;
    flex-direction: row;
}

.menu-right .svc-card--wide .svc-img {
    width: 80px;
    aspect-ratio: unset;
    height: 100%;
    min-height: 72px;
    flex-shrink: 0;
}

.menu-right .svc-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-right .svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.menu-right .svc-card:hover .svc-img img {
    transform: scale(1.04);
}

.menu-right .svc-body {
    padding: 9px 11px 10px;
    display: flex;
    justify-content: space-between;
}

.menu-right .svc-body strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.menu-right .svc-body span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .menu-right {
        width: 100%;
        padding: 24px 20px;
    }

    .menu-right .print-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-right .other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-right .svc-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .topbar .topbar-right {
        display: none;
    }

    .offcanvas-fullscreen .offcanvas-body {
        flex-direction: column;
        overflow-y: auto;
    }

    .offcanvas-fullscreen .menu-left,
    .offcanvas-fullscreen .menu-right {
        width: 100%;
        padding: 28px 24px;
        border-right: none;
    }

    .offcanvas-fullscreen .menu-left {
        border-bottom: 1px solid var(--border);
    }

    .offcanvas-fullscreen .menu-left .nav-links li a {
        font-size: 20px;
        padding: 14px 0;
    }

    .offcanvas-fullscreen .menu-right {
        background: #fafafa;
        padding: 28px 24px;
    }

    /* ── MOBILE: Hide card/grid layouts, show flat link lists ── */
    .offcanvas-fullscreen .menu-right .printing-section,
    .offcanvas-fullscreen .menu-right .other-services-label {
        display: none;
    }

    /* Flat mobile services list */
    .offcanvas-fullscreen .menu-right .print-grid,
    .offcanvas-fullscreen .menu-right .other-grid {
        display: block;
    }

    /* Hide the section head (icon + "3D Printing / 6 technologies") in mobile */
    .offcanvas-fullscreen .menu-right .printing-section .section-head {
        display: none;
    }

    /* Show the printing-section box itself but strip its card styling */
    .offcanvas-fullscreen .menu-right .printing-section {
        display: block;
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 0;
    }

    /* Category label — shown as a small uppercase heading */
    .offcanvas-fullscreen .menu-right .mobile-svc-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primary);
        margin: 22px 0 4px;
    }

    /* Every print-card and other-card → flat link row */
    .offcanvas-fullscreen .menu-right .print-card,
    .offcanvas-fullscreen .menu-right .other-card {
        all: unset;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        cursor: pointer;
        transition:
            color 0.2s,
            padding-left 0.2s;
        width: 100%;
        box-sizing: border-box;
    }

    /* First child gets a top border */
    .offcanvas-fullscreen .menu-right .print-grid .print-card:first-child,
    .offcanvas-fullscreen .menu-right .other-grid .other-card:first-child {
        border-top: 1px solid var(--border);
    }

    .offcanvas-fullscreen .menu-right .print-card:hover,
    .offcanvas-fullscreen .menu-right .other-card:hover {
        color: var(--primary);
        padding-left: 10px;
    }

    /* Arrow indicator */
    .offcanvas-fullscreen .menu-right .print-card::after,
    .offcanvas-fullscreen .menu-right .other-card::after {
        content: "→";
        color: var(--primary);
        font-size: 18px;
        opacity: 0;
        transform: translateX(-6px);
        transition:
            opacity 0.2s,
            transform 0.2s;
    }

    .offcanvas-fullscreen .menu-right .print-card:hover::after,
    .offcanvas-fullscreen .menu-right .other-card:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Hide the card image thumbnails on mobile */
    .offcanvas-fullscreen .menu-right .print-card .p-img,
    .offcanvas-fullscreen .menu-right .other-card .oc-img {
        display: none !important;
    }

    /* Show only the strong text label, hide tags/subtitles */
    .offcanvas-fullscreen .menu-right .other-card .oc-body {
        padding: 0;
        background: none;
    }

    .offcanvas-fullscreen .menu-right .other-card .oc-tag,
    .offcanvas-fullscreen .menu-right .other-card .oc-body>span:not(.oc-tag) {
        display: none;
    }

    .offcanvas-fullscreen .menu-right .other-card .oc-body strong {
        font-size: 18px;
        font-weight: 700;
        color: inherit;
    }

    /* Vacuum Casting span-2 card — reset the desktop override */
    .offcanvas-fullscreen .menu-right .print-card[style*="grid-column"] {
        grid-column: auto !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        text-align: left !important;
        padding: 15px 0 !important;
    }

    .offcanvas-fullscreen .menu-right .print-card[style*="grid-column"] strong {
        font-size: 18px !important;
        color: var(--navy) !important;
    }

    /* Section title adjustments */
    .offcanvas-fullscreen .menu-right .section-title {
        font-size: 17px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .topbar {
        font-size: 12px;
        padding: 7px 0;
    }

    .btn-orange {
        padding: 8px 14px;
        font-size: 13px;
    }

    .offcanvas-fullscreen .offcanvas-header {
        padding: 16px 24px;
    }
}

/* ── ABOUT DROPDOWN ── */
.has-dropdown {
    position: relative;
    display: none;
}

.dropdown-menu-custom {
    list-style: none;
    padding-left: 10px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 0 10px 10px;
    font-size: 14px !important;
    font-weight: normal !important;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
    transition:
        color 0.2s,
        padding-left 0.2s;
}

.dropdown-menu-custom li a:hover {
    color: var(--primary);
    padding-left: 16px;
}

.has-dropdown.active .dropdown-menu-custom {
    max-height: 300px;
}

/* ----------------------------------- */
/* ------------Banner-headline------- */
/* --------------------------------- */

.banner-threed {
    height: 80vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.banner-threed .row {
    height: 100%;
    position: relative;
}

.banner-threed .clr-left {
    background-color: #1b2d3e;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0px 60px 130px;
    overflow: visible;
    z-index: 2;
}

.banner-threed .clr-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg,
            rgba(244, 150, 39, 0.04) 0px,
            rgba(244, 150, 39, 0.04) 1px,
            transparent 1px,
            transparent 28px);
    pointer-events: none;
}

.banner-threed .clr-left h1 {
    position: relative;
    width: 220%;
    font-size: 4rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    z-index: 3;
    margin-bottom: 18px;
}

.banner-threed .clr-left h1 em {
    font-style: normal;
    color: #f49627;
}

.banner-threed .clr-left p {
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    max-width: 340px;
    font-size: 0.95rem;
    line-height: 1.65;
}

.banner-threed .clr-left .cta-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 3;
}

.btn-primary-custom {
    background: #f49627;
    color: #1b2d3e;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 11px 22px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #1b2d3e;
}

.btn-ghost-custom {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 11px 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    text-decoration: none;
}

.btn-ghost-custom:hover {
    border-color: #f49627;
    color: #f49627;
}

.banner-threed .clr-right {
    background: url(../images/home/banners/bg-right.png) no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    width: 70%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.banner-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.banner-carousel .item img {
    width: auto;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
}

.owl-dots {
    text-align: center;
    margin-top: 16px;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s;
}

.owl-dot.active span {
    background: #f49627;
    width: 22px;
    border-radius: 4px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 992px) {
    .banner-threed {
        height: auto;
    }

    .banner-threed .clr-left {
        align-items: center;
        text-align: center;
        padding: 50px 24px;
    }

    .banner-threed .clr-left h1 {
        width: 100%;
        font-size: 2.2rem;
    }

    .banner-threed .clr-left p {
        max-width: 100%;
    }

    .banner-threed .clr-left .cta-row {
        justify-content: center;
    }

    .banner-threed .clr-right {
        padding: 40px 16px;
    }

    .banner-carousel {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .banner-threed .clr-left h1 {
        font-size: 1.8rem;
    }
}

/* --------------------------------- */
/* -------------------------------- */
/* ------------------------------- */

.services-section {
    padding: 60px 0 60px;
    background: url(../images/home/banner-services.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 850px;
    padding-bottom: 30px;
}

.services-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f49627;
    margin-bottom: 10px;
}

.services-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
    text-transform: uppercase;
}

.services-header p {
    font-size: 15px;
    color: #708090;
    line-height: 1.7;
}

.service-card {
    padding: 0 8px;
}

.service-inner {
    background: #fff;
    border: 1px solid #e4e7ef;
    border-radius: 10px;
    overflow: hidden;
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.service-inner:hover {
    transform: translateY(-4px);
}

.service-img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.service-inner:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 18px 20px 20px;
    border-top: 1px solid #e4e7ef;
}

.service-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #111318;
    margin-bottom: 7px;
    text-transform: uppercase;
    line-height: 1.3;
}

.service-content p {
    font-size: 13px;
    font-weight: 300;
    color: #666;
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #f49627;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-content a:hover {
    gap: 10px;
}

.services-section .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 30px !important;
}

.services-section .owl-dot span {
    display: block;
    width: 6px;
    height: 6px;
    background: #e4e7ef;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-section .owl-dot.active span {
    background: #f49627;
    width: 24px;
    border-radius: 3px;
}

.services-section .owl-nav {
    display: none;
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* -------------------------------- */
/* ---------industries-serve------ */
/* ------------------------------ */

.industries-section {
    padding: 60px 0 60px;
    background: url(../images/home/banner-industries.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.industries-section .ind-header {
    text-align: center;
    margin-bottom: 30px;
}

.industries-section .ind-header h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.2;
    text-transform: uppercase;
}

.industries-section .ind-header p {
    /* color: #b8c7cc; */
    max-width: 560px;
    margin: 0 auto;

    font-size: 15px;
    color: #708090;
    line-height: 1.7;
}

/* GRID */
.industries-section .ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

/* CARD */
.industries-section .ind-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 22px;
    border: 1px solid #0f333e;
    border-radius: 12px;
    background: #0f333e;
    transition: all 0.25s ease;
}

/* HOVER */
.industries-section .ind-card:hover {
    border-color: #f49627;
    box-shadow: 0 6px 25px rgba(244, 150, 39, 0.15);
    transform: translateY(-4px);
}

/* ICON WRAP */
.industries-section .ind-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #051923;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid #1c4b59;
    overflow: hidden;
}

.industries-section .ind-icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* makes icons white */
}

/* TEXT */
.industries-section .ind-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* FOOTER */
.industries-section .ind-footer {
    text-align: center;
    padding: 32px 40px;
    background: #0f333e;
    border-top: 1px solid #1c4b59;
    border-radius: 12px;
}

.industries-section .ind-footer p {
    font-size: 15px;
    color: #c7d5da;
    line-height: 1.75;
    margin: 0;
}

.industries-section .ind-footer strong {
    color: #f49627;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .industries-section .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .industries-section .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-section .ind-header h3 {
        font-size: 28px;
    }

    .industries-section .ind-footer {
        padding: 24px 20px;
    }
}

@media (max-width: 479px) {
    .industries-section .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ---------------------------------------------- */
/* ------------ About Quick Shape --------------- */
/* ---------------------------------------------- */

.about-quickshape-section {
    padding: 80px 0px 80px 0px;
}

.about-qs-topper {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #f49627;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.about-qs-title {
    color: #051923;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-qs-text {
    color: #5a5f6e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ---- Button ---- */
.about-qs-btn {
    background-color: #f49627;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-qs-btn:hover {
    background-color: #1b2d3e;
    color: #ffffff;
}

.about-qs-image-group {
    position: relative;
}

.about-qs-main-image {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.about-qs-image-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    max-width: 260px;
    opacity: 0.98;
    border-left: 4px solid #f49627;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-qs-box-icon {
    width: 150px;
    margin-bottom: 0.75rem;
}

.about-qs-box-number {
    font-weight: 700;
    font-size: 1.6rem;
    color: #f49627;
    margin-bottom: 0.5rem;
}

.about-qs-box-text {
    font-size: 0.9rem;
    color: #5a5f6e;
}

/* ---- Stats ---- */
.about-qs-stats-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-qs-stat-item {
    flex: 1 1 45%;
}

.about-qs-stat-icon {
    width: 48px;
    margin-right: 0.75rem;
}

.about-qs-stat-number {
    color: #f49627;
    font-weight: 700;
    font-size: 1.5rem;
}

.about-qs-stat-text {
    font-size: 0.95rem;
    color: #5a5f6e;
    margin: 0;
}

@media (max-width: 768px) {
    .about-quickshape-section {
        padding: 40px 0;
    }

    .about-qs-title {
        font-size: 1.7rem;
    }

    .about-qs-image-box {
        position: static;
        margin-top: 1rem;
    }
}

/* ---------------------------------- */
/* -------------Footer-------------- */
/* -------------------------------- */

.qs-footer {
    background: linear-gradient(135deg, #051923 0%, #0a2a34 40%, #0f333e 100%);
    color: #cbd5e1;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.qs-footer__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.qs-footer__shape {
    position: absolute;
    opacity: 0.06;
    animation: qs-floatShape 8s ease-in-out infinite;
}

.qs-footer__shape--cube {
    width: 80px;
    height: 80px;
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.qs-footer__shape--sphere {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 8%;
    animation-delay: -2s;
}

.qs-footer__shape--pyramid {
    width: 70px;
    height: 70px;
    bottom: 25%;
    left: 12%;
    animation-delay: -4s;
}

.qs-footer__shape--torus {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 15%;
    animation-delay: -3s;
}

.qs-footer__shape--smallcube {
    width: 50px;
    height: 50px;
    top: 45%;
    left: 45%;
    animation-delay: -1s;
    opacity: 0.04;
}

.qs-footer__shape--ring {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 30%;
    animation-delay: -5s;
    opacity: 0.05;
}

.qs-footer__shape svg {
    width: 100%;
    height: 100%;
}

@keyframes qs-floatShape {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(5deg);
    }

    66% {
        transform: translateY(-6px) rotate(-3deg);
    }
}

.qs-footer__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px 0;
}

.qs-footer__brand {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qs-footer__logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.qs-footer__brand-name {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #f37e0a;
    letter-spacing: -0.5px;
}

.qs-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr 1.3fr;
    gap: 40px;
}

.qs-footer__col-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f37e0a;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.qs-footer__col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: #f37e0a;
    opacity: 0.5;
}

.qs-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qs-footer__links li {
    margin-bottom: 10px;
}

.qs-footer__links a {
    color: #8da8b8;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 300;
    transition:
        color 0.25s,
        letter-spacing 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qs-footer__links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: #f37e0a;
    transition: width 0.25s;
    display: inline-block;
}

.qs-footer__links a:hover {
    color: #f5f5f5;
    letter-spacing: 0.3px;
}

.qs-footer__links a:hover::before {
    width: 8px;
}

.qs-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #8da8b8;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 300;
}

.qs-footer__contact-item i {
    color: #f37e0a;
    margin-top: 3px;
    font-size: 13px;
    flex-shrink: 0;
}

.qs-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.qs-footer__social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(243, 126, 10, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8da8b8;
    text-decoration: none;
    transition: all 0.25s;
    flex-shrink: 0;
}

.qs-footer__social-link:hover {
    border-color: #f37e0a;
    color: #f37e0a;
    background: rgba(243, 126, 10, 0.08);
}

.qs-footer__social-link i {
    font-size: 13px;
}

.qs-footer__divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.08) 80%,
            transparent);
    margin: 40px 0 0;
    position: relative;
    z-index: 1;
}

.qs-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}

.qs-footer__copy {
    font-size: 12px;
    color: #4e6474;
    margin: 0;
}

.qs-footer__copy a {
    color: #f37e0a;
    text-decoration: none;
}

.qs-footer__bottom-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.qs-footer__bottom-links a {
    font-size: 12px;
    color: #4e6474;
    text-decoration: none;
    transition: color 0.2s;
}

.qs-footer__bottom-links a:hover {
    color: #8da8b8;
}

.qs-footer__back-top {
    color: #f37e0a !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qs-footer__back-top i {
    font-size: 10px;
}

@media (max-width: 992px) {
    .qs-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .qs-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .qs-footer__content {
        padding: 40px 20px 0;
    }

    .qs-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 28px;
    }
}

/* ------------------------------------------------------- */
/* ------------------works-delivers------------------------ */
/* ------------------------------------------------------- */

.works-delivered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.works-delivered h3 {
    font-size: 30px;
    font-weight: 500;
    color: #051923;
    line-height: 1.2;
    text-transform: uppercase;
}

.works-delivered p {
    font-size: 16px;
    color: #666666;
    margin: 0 auto;
    line-height: 1.7;
}

.rontek-works {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 80px;
    position: relative;
    background: url(../images/home/3d_printing_background_minimal.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.rontek-works__wrapper {
    width: 100%;
    position: relative;
}

.rontek-works__slide {
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
}

.rontek-works__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rontek-works__controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    pointer-events: none;
}

.rontek-works__nav {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    position: absolute;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.rontek-works__prev {
    left: 30px;
}

.rontek-works__next {
    right: 30px;
}

.rontek-works__nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .rontek-works__slide {
        height: 280px;
    }
}

/* =========================================== */
/* ================ clients ================== */
/* =========================================== */

.clients-logo {
    color: #000;
    text-align: center;
    margin: 0 auto;
}

.clients-logo h3 {
    font-size: 30px;
    font-weight: 500;
    color: #051923;
    line-height: 1.2;
    text-transform: uppercase;
}

.clients-logo p {
    font-size: 16px;
    color: #666666;
    margin: 0 auto;
    max-width: 1000px;
    line-height: 1.7;
}

.rs-clients {
    padding: 60px 0;
}

.rs-clients__parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.rs-clients__item {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rs-clients__item img {
    max-width: 100px;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.rs-clients__item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .rs-clients__parent {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .rs-clients__parent {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .rs-clients__parent {
        grid-template-columns: repeat(2, 1fr);
    }
}

.milestone-section {
    padding: 80px 0px 40px 0px;
}

.milestone-top-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-top-label span {
    flex: 1;
    height: 0.5px;
    background: #d6dbe3;
    display: block;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ms-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    min-height: 260px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* DARK CARDS */
.ms-card.dark-card {
    background-color: #051923;
    border: none;
}

.ms-card.dark-card.alt-dark {
    background-color: #0f333e;
}

/* TEXT COLOR FOR DARK */
.ms-card.dark-card h5,
.ms-card.dark-card p {
    color: #ffffff;
}

/* ICON */
.ms-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff5e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

/* ICON COLOR FOR DARK CARDS */
.ms-card.dark-card .ms-icon {
    background: rgba(255, 255, 255, 0.1);
}

.ms-card.dark-card .ms-icon i {
    color: #ffffff;
}

/* HOVER EFFECT */
.ms-card:hover .ms-icon {
    transform: rotate(360deg);
}

/* TITLE */
.ms-card h5 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2b2b2b;
    margin: 0 0 0.6rem 0;
    line-height: 1.4;
}

/* TEXT */
.ms-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #666;
    margin: 0;
    flex: 1;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .milestone-section {
        padding: 80px 0 40px;
    }

    .ms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ms-card {
        min-height: 200px;
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .ms-grid {
        grid-template-columns: 1fr;
    }

    .ms-card h5 {
        font-size: 1.05rem;
    }

    .ms-card p {
        font-size: 14px;
    }
}

/* ------------------------------- */
/* ---------Banner-video--------- */
/* ----------------------------- */

#header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: transparent;
    transition: all 0.3s ease;
}

#header.scrolled {
    position: fixed;
    background-color: #18191a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#header .navbar {
    padding: 25px 0;
}

#header.scrolled .navbar {
    padding: 10px 0;
}

.navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

.humburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(180deg);
}

.humburger span {
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    display: block;
}

.humburger .arrow-t {
    animation: burger-hover 1.5s infinite ease-in-out;
}

.humburger .arrow-m {
    animation: burger-hover 1.5s infinite ease-in-out 0.3s;
}

.humburger .arrow-b {
    animation: burger-hover 1.5s infinite ease-in-out 0.6s;
}

@keyframes burger-hover {
    0% {
        width: 100%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

.qs-video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    align-items: flex-end;
}

.qs-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.qs-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.qs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.qs-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0px 52px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.qs-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
}

.qs-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qs-eyebrow-line {
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.55);
}

.qs-eyebrow span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.qs-typing h2 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    min-height: 1.3em;
    white-space: nowrap;
    overflow: hidden;
}

.qs-cursor {
    display: inline-block;
    width: 2.5px;
    height: 0.85em;
    background: #fff;
    margin-left: 3px;
    vertical-align: middle;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.qs-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.qs-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
}

.qs-scroll-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.qs-scroll-track {
    width: 1px;
    height: 54px;
    background: rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.qs-scroll-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    animation: scrollFill 2s ease-in-out infinite;
}

@keyframes scrollFill {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.qs-scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
    .qs-content {
        padding: 0 28px 40px;
    }

    .qs-brand {
        left: 28px;
    }

    .qs-corner-badge {
        display: none;
    }

    .qs-right {
        display: none;
    }

    .qs-typing h2 {
        font-size: 24px;
    }
}


.qs-center-heading {
    inset: 0;
    position: relative;
    z-index: 2;
    pointer-events: none;
    padding: 0 0px 50px;
}

.qs-center-heading h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.qs-center-heading h1 span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-top: 12px;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section{
    overflow-x: hidden;
}

/* breadcrumb */
/* ===== Section ===== */
.breadcrumb-section {
    position: relative;
    height: 380px;
    display: flex;
    align-items: end;
    overflow: hidden;
}

/* Image Wrapper */
.breadcrumb-section .breadcrumb-media {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 1;
}

/* Image */
.breadcrumb-section .breadcrumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

/* Overlay */
.breadcrumb-section .breadcrumb-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* Content */
.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}

/* Title */
.breadcrumb-section .breadcrumb-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb-section .breadcrumb-nav .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-section .breadcrumb-nav .breadcrumb-item.active {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .breadcrumb-section {
        height: 340px;
    }

    .breadcrumb-section .breadcrumb-title {
        font-size: 28px;
        /* display: none; */
    }
    .breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    flex-direction: column;
}
 .breadcrumb-section .breadcrumb-content h1{
    margin-bottom: 0;
 }
}

/* breadcrumb */



/* SECTION */
.qs-about {
    background: var(--white);
    overflow: hidden;
    font-family: var(--font);
}

/* IMAGE WRAP */
.qs-about .qs-about__image-wrap {
    position: relative;
    /* display: inline-block; */
}

/* SMALLER IMAGE (CONTROLLED + PREMIUM) */
.qs-about .qs-about__image {
    width: 90%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.qs-about .qs-about__image-wrap:hover .qs-about__image {
    transform: scale(1.04);
}

/* ✨ CREATIVE YEAR DESIGN (NOT A BORING BADGE) */
.qs-about .qs-about__badge {
    position: absolute;
    top: -42px;
    right: 15px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--navy);
    padding: 18px 16px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qs-about .qs-about__content {
    max-width: 520px;
}

.qs-about .qs-about__title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.qs-about .qs-about__title span {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: qsFadeUp 0.8s ease forwards;
}

.qs-about .qs-about__title span:nth-child(2) {
    animation-delay: 0.2s;
}

.qs-tagline-sm {
    font-family: "Poppins", sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600; 
    color: #333;

    letter-spacing: 0.5px;
    line-height: 1.4;

    margin: 20px 0;
}

/* subtle accent (optional but nice) */
.qs-tagline-sm span {
    color: #f49627;
}

/* TEXT */
.qs-about .qs-about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 18px;

    opacity: 0;
    transform: translateY(25px);
    animation: qsFadeUp 0.8s ease forwards;
}

.qs-about .qs-about__text:nth-of-type(1) {
    animation-delay: 0.3s;
}

.qs-about .qs-about__text:nth-of-type(2) {
    animation-delay: 0.5s;
}

/* ANIMATION */
@keyframes qsFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION BASE */
.qs-about {
    font-family: var(--font);
    background: #fff;
}

/* HEADER */
.qs-about .qs-subtitle {
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.qs-about .qs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

/* CARD BASE */
.qs-about .qs-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* ICON */
.qs-about .qs-card .qs-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* CARD TITLE */
.qs-about .qs-card h3 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

/* TEXT */
.qs-about .qs-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* HOVER EFFECT */
.qs-about .qs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* GRADIENT BORDER EFFECT */
.qs-about .qs-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(120deg, var(--primary), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* VALUES */
.qs-about .qs-values .qs-value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

/* VALUE TITLE */
.qs-about .qs-values .qs-value-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* VALUE TEXT */
.qs-about .qs-values .qs-value-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* VALUE HOVER */
.qs-about .qs-values .qs-value-card:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-8px);
}

.qs-about .qs-values .qs-value-card:hover h4,
.qs-about .qs-values .qs-value-card:hover p {
    color: #fff;
}

/* SIMPLE SCROLL ANIMATION */
.qs-about .qs-card,
.qs-about .qs-value-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.qs-about .qs-card:nth-child(2) {
    animation-delay: 0.2s;
}

.qs-about .qs-value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.qs-about .qs-value-card:nth-child(3) {
    animation-delay: 0.4s;
}

.qs-about .qs-value-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ============================= */
/* PREMIUM SLOW HOVER EFFECT     */
/* ============================= */

.qs-about .qs-card,
.qs-about .qs-value-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.5s ease;
}

/* SOFT BACKGROUND FOLLOW */
.qs-about .qs-card::after,
.qs-about .qs-value-card::after {
    content: "";
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle at center,
            rgba(244, 150, 39, 0.9) 0%,
            rgba(217, 126, 16, 0.7) 40%,
            rgba(244, 150, 39, 0.3) 70%,
            transparent 100%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(10px);
    transition:
        width 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

/* HOVER EXPANSION (SLOW + CONTROLLED) */
.qs-about .qs-card:hover::after,
.qs-about .qs-value-card:hover::after {
    width: 180%;
    height: 180%;
}

/* TEXT COLOR */
.qs-about .qs-card:hover h3,
.qs-about .qs-card:hover p,
.qs-about .qs-value-card:hover p {
    color: #270a0a;
    transition: color 0.5s ease;
}

/* ============================= */
/* CORE VALUES HEADING PREMIUM   */
/* ============================= */

.qs-about .qs-value-card h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

/* SMOOTH TRANSFORMATION */
.qs-about .qs-value-card:hover h4 {
    font-style: italic;
    letter-spacing: 1.5px;
    transform: translateY(-3px);
    color: #fff;
}

/* SUBTLE UNDERLINE ANIMATION */
.qs-about .qs-value-card h4::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin: 6px auto 0;
    background: #fff;
    transition: width 0.6s ease;
}

.qs-about .qs-value-card:hover h4::after {
    width: 30%;
}

/* ============================= */
/* CARD LIFT (SOFT)              */
/* ============================= */

.qs-about .qs-card:hover,
.qs-about .qs-value-card:hover {
    transform: translateY(-6px);
}

.qs-section {
    padding: 60px 0;
    background: #f9f9f7;
    background-image: url(../images/About/3d-printing.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.qs-section .container {
    position: relative;
    z-index: 1;
}

.qs-section .qs-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.qs-section .qs-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}
.qs-cards-header-text{
    text-align: center;
}
.qs-section .qs-subtext {
    font-size: 0.95rem;
    color: #ffffff; 
    line-height: 1.75;
    margin-bottom: 56px;
    text-align: center;
}

.qs-section .qs-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.qs-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    overflow: hidden;
    /* background: #e8e8e4; */
}

.qs-cards-row .qs-card {
    background: #ffffff3f;
    padding: 36px 20px 32px;
    transition: background 0.2s;
    cursor: default;
}

.qs-cards-row .qs-card:hover {
    background: #f4f4f0;
    color: #000;
}
.qs-cards-row .qs-card:hover .qs-card-title{
    color: var(--primary);
}
.qs-cards-row .qs-card:hover p{
    color: #000;
}

.qs-cards-row .qs-card .qs-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.qs-cards-row .qs-card .qs-card-icon svg {
    width: 100%;
    height: 100%;
}

.qs-cards-row .qs-card .qs-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.qs-cards-row .qs-card .qs-card-desc {
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.7;
}

.qs-divider {
    height: 1px;
    background: #e8e8e4;
    margin: 56px 0;
}

.qs-industries .qs-ind-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}

.qs-industries .qs-ind-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qs-industries .qs-ind-list .qs-ind-chip {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0db;
    border-radius: 999px;
    padding: 5px 16px;
    transition: border-color 0.2s, color 0.2s;
}

.qs-industries .qs-ind-list .qs-ind-chip:hover {
    border-color: #bbb;
    color: #222;
}

.qs-card .qs-card-desc {
    margin-bottom: 0;
}

.hand-image {
    position: relative;
    /* margin-bottom: -150px; */
    margin-top: -300px;
}

/* SECTION BASE */
.qs-about-next {
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

/* FULL BACKGROUND IMAGE */
.qs-about-next .qs-about-next-bg {
    position: absolute;
    inset: 0;
    background: url("../images/About/sky-diving.webp") center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* RIGHT SIDE DIAGONAL OVERLAY (THIS IS THE MAIN PART) */
.qs-about-next .qs-about-next-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 2;

    background: linear-gradient(135deg, rgba(26,26,46,0.96), rgba(26,26,46,0.85));

    /* DIAGONAL CUT FROM CENTER */
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

/* CONTENT */
.qs-about-next .container {
    position: relative;
    z-index: 3;
}

.qs-about-next .qs-about-next-content {
    padding: 60px 0px;
    color: #fff;
}

/* TEXT */
.qs-about-next .qs-about-next-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* OPTIONAL: SUBTLE EDGE HIGHLIGHT */
.qs-about-next .qs-about-next-overlay::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(244,150,39,0.6), transparent);
}

    /* ── HERO ── */
    .hero-section {
      background: var(--navy);
      min-height: 92vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-section .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(244,150,39,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,150,39,0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-section .hero-glow {
      position: absolute;
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(244,150,39,0.22) 0%, transparent 70%);
      border-radius: 50%;
      top: -80px; right: -80px;
      pointer-events: none;
    }
    .hero-section .hero-glow-2 {
      position: absolute;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(244,150,39,0.10) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -60px; left: 10%;
      pointer-events: none;
    }
    .hero-section .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(244,150,39,0.15);
      border: 1px solid rgba(244,150,39,0.35);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .hero-section .hero-badge i { font-size: 0.7rem; }
    .hero-section .hero-title {
      font-size: clamp(2.4rem, 5.5vw, 3rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 22px;
    }
    .hero-section .hero-title .hl { color: var(--primary); position: relative; }
    .hero-section .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 36px;
    }
   
 
    .hero-section .hero-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }
    .hero-section .hero-img-wrap img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }
    .hero-section .hero-img-wrap .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(244,150,39,0.15) 0%, transparent 60%);
      border-radius: 20px;
      pointer-events: none;
    }
    .hero-section .hero-img-wrap .float-tag {
      position: absolute;
      background: var(--white);
      border-radius: 12px;
      padding: 10px 16px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.18);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-section .hero-img-wrap .float-tag .ft-icon {
      width: 36px; height: 36px;
      background: var(--primary-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1rem;
    }
    .hero-section .hero-img-wrap .float-tag .ft-text strong {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--navy);
    }
    .hero-section .hero-img-wrap .float-tag .ft-text span {
      font-size: 0.7rem;
      color: var(--text-muted);
    } 
    .hero-section .hero-img-wrap .float-tag-2 { top: 24px; right: -4px; }

    /* ── SECTION COMMONS ── */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
      line-height: 1.2;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 580px;
    }

    /* ── WHAT IS FDM ── */
    .what-section { padding: 60px 0; background: var(--white); }
   
    .what-section .what-body {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .what-section .what-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
    .what-section .what-pills .pill {
      background: var(--primary-light);
      color: var(--primary-dark);
      border: 1px solid rgba(244,150,39,0.2);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.82rem;
      font-weight: 600;
    }
    .what-section .what-img-box {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
    }
    .what-section .what-img-box img {
      width: 100%;
      /* height: 420px; */
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }
    .what-section .what-img-box .wib-accent {
      position: absolute;
      bottom: -1px;
      left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to top, rgba(244,150,39,0.15), transparent);
      border-radius: 0 0 18px 18px;
      pointer-events: none;
    }
    .what-section .what-img-box .wib-badge {
      position: absolute;
      top: 20px; left: 20px;
      background: var(--navy);
      color: var(--white);
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 0.78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .what-section .what-img-box .wib-badge i { color: var(--primary); }

    /* ── HOW WE HELP ── */
    .how-section {
      padding:60px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .how-section .how-bg-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(244,150,39,0.10) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    .how-section .section-title { color: var(--white); }
    .how-section .section-desc { color: rgba(255,255,255,0.5); }
    .how-section .section-eyebrow { color: var(--primary); }
    
  
    .how-section .how-img-col img {
      width: 100%;
      border-radius: 18px;
      /* height: 450px; */
      object-fit: cover;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }

    /* ═══ WHY CHOOSE ═══ */
    .why-choose { padding: 60px 0; background: var(--primary); position: relative; overflow: hidden; }
      .why-choose .why-section-deco {
      position: absolute;
      right: -80px; top: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      border: 60px solid rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }
    .why-choose::after {
      content: 'FDM';
      position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
      font-size: 220px; font-weight: 900; color: rgba(255,255,255,.025);
      pointer-events: none; line-height: 1; user-select: none;
    }
    .why-choose .wc-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--border); margin-bottom: 14px;
    }
    .why-choose .wc-title {
      font-size: clamp(28px, 3vw, 44px); font-weight: 900;
      color: var(--white); line-height: 1.15; letter-spacing: -1px; margin-bottom: 50px;
    }
    .why-choose .wc-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 2px; background: rgba(255,255,255,.06);
      border-radius: 20px; overflow: hidden;
    }
    .why-choose .wc-grid .wc-cell {
      background: rgba(26,26,46,.95); padding: 40px 36px;
      position: relative; transition: background .3s;
    }
    .why-choose .wc-grid .wc-cell:hover {     background: rgb(0 0 0 / 93%); }
    .why-choose .wc-grid .wc-cell .cell-num {
      font-size: 48px; font-weight: 900; color: rgba(244,150,39,.12);
      line-height: 1; margin-bottom: 16px;
    }
    .why-choose .wc-grid .wc-cell .cell-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
    .why-choose .wc-grid .wc-cell .cell-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
    .why-choose .wc-grid .wc-cell .cell-icon { position: absolute; top: 36px; right: 36px; font-size: 22px; color: var(--primary); opacity: .7; }


    /* ── APPLICATIONS ── */
    .apps-section { padding: 60px 0; background: var(--white); }
    .apps-section .app-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      height: 320px;
      cursor: pointer;
      transition: transform 0.3s;
    }
    .apps-section .app-card:hover { transform: scale(1.02); }
    .apps-section .app-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .apps-section .app-card:hover img { transform: scale(1.06); }
    .apps-section .app-card .ac-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.20) 60%, transparent 100%);
    }
    .apps-section .app-card .ac-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px 22px;
    }
    .apps-section .app-card .ac-content .ac-tag {
      display: inline-block;
      background: var(--primary);
      color: var(--white);
      border-radius: 6px;
      padding: 3px 10px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 8px;
    }
    .apps-section .app-card .ac-content .ac-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 6px;
    }
    .apps-section .app-card .ac-content .ac-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.55;
      display: none;
    }
    .apps-section .app-card:hover .ac-desc { display: block; }

    /* ── CTA ── */
    .cta-section {
      padding: 100px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
      text-align: center;
      
    }
    .cta-section .cta-bg-ring {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      width: 700px; height: 700px;
      border-radius: 50%;
      border: 80px solid rgba(244,150,39,0.06);
      pointer-events: none;
    }
    .cta-section .cta-bg-ring-2 {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      width: 460px; height: 460px;
      border-radius: 50%;
      border: 50px solid rgba(244,150,39,0.08);
      pointer-events: none;
    }
    .cta-section .cta-eyebrow { justify-content: center; }
    .cta-section .cta-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.5px;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .cta-section .cta-title .hl { color: var(--primary); }
    .cta-section .cta-body {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.55);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.75;
    }
    .cta-section .btn-cta-main {
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 16px 38px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 6px 28px rgba(244,150,39,0.40);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .cta-section .btn-cta-main:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(244,150,39,0.50);
      color: var(--white);
    }
    .cta-section .cta-tagline {
      margin-top: 20px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.35);
      font-style: italic;
      display: none !important;
    }
 
    /* ── PROCESS STRIP ── */
    .process-strip {
      background: var(--primary);
      padding: 20px 0;
      overflow: hidden;
    }
    .process-strip .ps-inner {
      display: flex;
      gap: 40px;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .process-strip .ps-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .process-strip .ps-item i { font-size: 0.8rem; opacity: 0.7; }
    .process-strip .ps-sep {
      color: rgba(255,255,255,0.45);
      font-size: 0.7rem;
    }

    /* ── MATERIAL PILLS ROW ── */
    .materials-section {
      padding: 60px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .materials-section .mat-title {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
      text-align: center;
    }
    .materials-section .mat-chips {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .materials-section .mat-chips .chip {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 10px 22px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      cursor: default;
    }
    .materials-section .mat-chips .chip:hover {
      border-color: var(--primary);
      background: var(--primary-light);
      color: var(--primary-dark);
    }
    .materials-section .mat-chips .chip .chip-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

.Main-gallery{
    padding: 100px 0px;
}
.main-gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.main-gallery-buttons button {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Portfolio - Active state with star */

.main-gallery-buttons button:first-child {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

/* Star indicator before the active text */

.main-gallery-buttons button:first-child::before {
    content: 'ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦';
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
}

/* Prints - Inactive state */

.main-gallery-buttons button:last-child {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Hover effects */

.main-gallery-buttons button:first-child:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.main-gallery-buttons button:last-child:hover {
    background-color: #e9ecef;
    color: #495057;
}

.main-gallery-buttons button.active::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 0;
    width: 16px;
    height: 16px;
    top: 32px;
    left: calc(50% - 10px);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-gallery-buttons button.active:hover::after {
    background-color: var(--accent-color);
}

.spl-footer {
    text-align: center;
}

.spotlight-group {
    position: relative;
    width: 100%; 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spotlight-group .badge-title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}

/* custom classes are always prefixed by "spl-" automatically */

.spl-like {
    background-image: url(demo/gallery/heart-outline.svg);
    background-size: 23px;
}

/* optionally, additional state to toggle the button: */

.spl-like.on {
    background-image: url(demo/gallery/heart.svg);
}

/*
     * Custom Animation:
     * -----------------
     */
/* custom scene transition (slide effect) */

.only-this-gallery.show .spl-scene {
    transition: transform 0.2s ease;
}

/* custom animation "visible state" (css context by custom classname "only-this-gallery" to apply these animation just on a specific gallery) */

.only-this-gallery.show .spl-pane>* {
    clip-path: circle(100% at center);
    transition: transform 0.35s ease, opacity 0.65s ease, clip-path 0.8s ease;
}

/* custom animation "hidden state" ("custom" is the name of the animation you pass as gallery option) */

.only-this-gallery .spl-pane .custom {
    clip-path: circle(0px at center);
    transition: transform 0.65s ease, opacity 0.65s ease;
}

/* animation state when gallery is hidden */

#spotlight.only-this-gallery {
    clip-path: circle(0px at center);
}

/* animation state when gallery will open */

#spotlight.only-this-gallery.show {
    clip-path: circle(100% at center);
    transition: clip-path 0.65s ease 0.15s;
}

@media(max-width:768px) {
    .spotlight-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
}

/* =========================
   HERO SECTION
========================= */
.contact-hero {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
}

.contact-hero .hero-subtitle {
    opacity: 0.9;
}

/* =========================
   CONTACT INFO CARDS
========================= */
.contact-info {
    margin-top: -60px;
}

.contact-info .info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.contact-info .info-card:hover {
    transform: translateY(-8px);
}

.contact-info .info-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info .info-card h6 {
    font-weight: 600;
}

.contact-info .info-card p {
    font-size: 14px;
    color: #555;
}

/* =========================
   CONTACT FORM
========================= */
.contact-section {
    padding: 80px 0;
}

.contact-section .form-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-section .form-box .form-control {
    border-radius: 8px;
    padding: 12px;
}

.contact-section .form-box .btn-submit {
    background: var(--primary);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-section .form-box .btn-submit:hover {
    background: var(--primary-dark);
}

/* =========================
   MAP SECTION
========================= */
.map-section iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}




/* ===== BLOG SECTION ===== */
.blogs-clean {
    padding: 100px 0;
}

/* CARD */
.blogs-clean .blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.blogs-clean .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* IMAGE */
.blogs-clean .blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* CONTENT */
.blogs-clean .blog-card .content {
    padding: 22px;
}

.blogs-clean .blog-card .tag {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.blogs-clean .blog-card h5 {
    margin: 10px 0;
    font-weight: 600;
    color: var(--navy);
}

.blogs-clean .blog-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* BUTTON */
.blogs-clean .read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.blogs-clean .read-btn:hover {
    color: var(--primary-dark);
}

/* SECTION HEADER */
.blogs-clean .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-clean .section-title h2 {
    font-weight: 700;
    color: var(--navy);
}

.blogs-clean .section-title p {
    color: var(--text-muted);
}

/* CTA BUTTON */
.blogs-clean .main-btn {
    margin-top: 40px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    display: inline-block;
    transition: 0.3s;
}

.blogs-clean .main-btn:hover {
    background: var(--primary-dark);
}


/* ===== BASE ===== */
.feedback-creative {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy), #111);
    color: var(--white);
}

/* LEFT */
.feedback-creative .feedback-creative-content .tag {
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.feedback-creative .feedback-creative-content h2 {
    margin: 20px 0;
    font-size: 42px;
    font-weight: 700;
}

.feedback-creative .points div {
    margin-top: 10px;
    opacity: 0.9;
}

/* GLASS FORM */
.feedback-creative .feedback-glass-form {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.feedback-creative .feedback-glass-form input,
.feedback-creative .feedback-glass-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.feedback-creative .feedback-glass-form button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: #fff;
}

/* ===== SECTION ===== */
.career-premium {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

/* DIAGONAL BACKGROUND */
.career-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), #0f0f1f);
    transform: skewX(-12deg);
    z-index: 0;
}

/* CONTENT */
.career-premium .career-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px;
}

.career-premium .career-content .tag {
    display: inline-block;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
}

.career-premium .career-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 20px 0;
}

.career-premium .career-content p {
    opacity: 0.9;
    max-width: 420px;
}

.career-premium .career-content ul {
    margin-top: 25px;
    padding: 0;
}

.career-premium .career-content ul li {
    list-style: none;
    margin-bottom: 10px;
}

.career-premium .career-content ul li i {
    color: var(--primary);
    margin-right: 8px;
}

/* FORM CARD */
.career-premium .career-form-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* INPUTS */
.career-premium .career-form-card .form-control {
    border-radius: 10px;
    padding: 14px;
    border: 1px solid var(--border);
    margin-bottom: 15px;
    transition: 0.3s;
}

.career-premium .career-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(244,150,39,0.2);
}

/* BUTTON */
.career-premium .career-form-card .btn-submit {
    background: var(--navy);
    color: var(--white);
    padding: 14px;
    border-radius: 10px;
    border: none;
    width: 100%;
    transition: 0.3s;
}

.career-premium .career-form-card .btn-submit:hover {
    background: var(--primary);
}
