
:root {
    --yellow: #f6bd00;
    --yellow-dark: #d9a600;
    --black: #111111;
    --dark: #1b1b1b;
    --gray: #f5f5f5;
    --text: #555555;
}

* {
    
}

body {
    margin: 0;
    color: var(--black);
    background: #fff;
    overflow-x: hidden;
	font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn-yellow {
    background: var(--yellow);
    color: #111;
    border-radius: 50px;
    font-weight: 800;
    padding: 13px 28px;
    border: 0;
}

.btn-yellow:hover {
    background: #fff;
    color: #111;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 800;
}

.btn-dark-custom {
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    padding: 11px 24px;
}

.btn-dark-custom:hover {
    background: var(--yellow);
    color: #111;
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(10px);
    transition: .3s;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, .95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.logo-area {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.logo-area img {
    max-height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .logo-area img {
        max-height: 42px;
    }
}

.navbar-toggler {
    border: 0;
    color: #fff;
    font-size: 25px;
    box-shadow: none !important;
}

.nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    margin: 0 5px;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow) !important;
}

.header-btn {
    padding: 11px 23px;
    font-size: 14px;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.55), rgba(0,0,0,.25));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding-top: 90px;
    color: #fff;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(246, 189, 0, .15);
    color: var(--yellow);
    border: 1px solid rgba(246, 189, 0, .45);
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 13px;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 55px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.hero-content h1 span {
    color: var(--yellow);
}

.hero-content p {
    color: #e4e4e4;
    font-size: 18px;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.35);
    color: #fff;
    transition: .3s;
}

.slider-arrow:hover {
    background: var(--yellow);
    color: #111;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    z-index: 6;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    padding: 0;
}

.slider-dots button.active {
    background: var(--yellow);
    width: 30px;
    border-radius: 20px;
}

.feature-box-area {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}
.feature-box {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    height: 100%;
    min-height: 260px;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
}

.feature-box i {
    width: 58px;
    height: 58px;
    background: var(--yellow);
    color: #111;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.section {
    padding: 90px 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title span {
    color: var(--yellow-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 10px 0 15px;
}

.section-title p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.section-title.light h2,
.section-title.light p {
    color: #fff;
}

.equipment-section {
    background: #f7f7f7;
}

.category-card {
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    transition: .5s;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: .55;
}

.category-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: #fff;
    z-index: 2;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.category-content a {
    color: var(--yellow);
    font-weight: 800;
}

.about-section {
    background: #fff;
}

.about-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-content span {
    color: var(--yellow-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.about-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 12px 0 20px;
}

.about-content p {
    color: var(--text);
    line-height: 1.8;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 25px;
}

.about-list div {
    font-weight: 700;
    color: #222;
}

.about-list i {
    color: var(--yellow-dark);
    margin-right: 7px;
}

.why-section {
    background:
        linear-gradient(rgba(0,0,0,.92), rgba(0,0,0,.92)),
        url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 32px;
    border-radius: 24px;
    height: 100%;
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: var(--yellow);
    background: rgba(246,189,0,.08);
}

.why-card i {
    color: var(--yellow);
    font-size: 36px;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}

.why-card p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

.product-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,.11);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-body {
    padding: 28px;
}

.product-body h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 15px;
}

.product-body ul {
    padding-left: 18px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 22px;
}

.quote-section {
    padding: 40px 0 90px;
    background: #fff;
}

.quote-box {
    background: linear-gradient(135deg, #111, #292929);
    border-radius: 34px;
    padding: 55px;
    overflow: hidden;
    position: relative;
}

.quote-box:before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    background: var(--yellow);
    border-radius: 50%;
    right: -120px;
    top: -120px;
    opacity: .15;
}

.quote-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.quote-content span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.quote-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -1.2px;
    margin: 12px 0 18px;
}

.quote-content p {
    color: #ddd;
    line-height: 1.8;
}

.quote-form {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 28px;
    border-radius: 24px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: #f7f7f7;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    font-size: 14px;
}

.quote-form textarea {
    height: 110px;
    resize: none;
}

.quote-form button {
    width: 100%;
    background: var(--yellow);
    border: 0;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    color: #111;
}

.project-section {
    background: #f7f7f7;
}

.project-grid {
    display: grid;
  
    gap: 18px;
}

.project-item {
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
}

.project-item.large {
    grid-column: span 2;
}

.project-item img {
    width: 100%;

    transition: .45s;
}

.project-item:hover img {
    transform: scale(1.08);
    opacity: .75;
}

.blog-section {
    background: #fff;
}

.blog-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.1);
    height: 100%;
}

.blog-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 25px;
}

.blog-body h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 12px;
}

.blog-body p {
    color: var(--text);
    line-height: 1.7;
}

.blog-body a {
    color: var(--yellow-dark);
    font-weight: 900;
}

.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 75px 0 25px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer-logo span {
    color: var(--yellow);
}

.footer p {
    color: #bbb;
    line-height: 1.8;
}

.footer h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 11px;
    color: #bbb;
}

.footer ul li a {
    color: #bbb;
    transition: .3s;
}

.footer ul li a:hover {
    color: var(--yellow);
}

.footer-contact i {
    color: var(--yellow);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 22px;
    color: #999;
    font-size: 14px;
    text-align: center;
}

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 1199px) {
    .navbar-collapse {
        background: #111;
        margin-top: 15px;
        padding: 20px;
        border-radius: 18px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .header-btn {
        margin-top: 12px;
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 720px;
    }

    .feature-box-area {
        margin-top: 0;
        padding-top: 40px;
    }

    .about-image img {
        height: 420px;
    }

    .quote-box {
        padding: 35px;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 13px 0;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 92vh;
    }

    .hero-content {
        padding-top: 95px;
    }

    .hero-content h1 {
        letter-spacing: -1.3px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .category-card {
        height: 260px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .quote-box {
        padding: 25px;
        border-radius: 24px;
    }

    .quote-form {
        padding: 20px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-item {
        height: 230px;
    }

    .footer {
        padding-top: 55px;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .feature-box {
        padding: 22px;
    }

    .category-content h3 {
        font-size: 21px;
    }
}


.inner-hero {
    min-height: 420px;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 110px;
    color: #fff;
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
}

.inner-hero p {
    max-width: 650px;
    color: #ddd;
    font-size: 17px;
    line-height: 1.7;
}

.breadcrumb-custom {
    color: var(--yellow);
    font-weight: 800;
    margin-bottom: 15px;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    height: 100%;
}

.content-card h3 {
    font-weight: 900;
    margin-bottom: 15px;
}

.content-card p {
    color: var(--text);
    line-height: 1.8;
}

.page-list {
    padding: 0;
    list-style: none;
}

.page-list li {
    margin-bottom: 13px;
    font-weight: 700;
}

.page-list i {
    color: var(--yellow-dark);
    margin-right: 8px;
}

.machine-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.machine-filter button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: .3s;
}

.machine-filter button:hover,
.machine-filter button.active {
    background: var(--yellow);
    color: #111;
}

.product-tag {
    display: inline-block;
    background: rgba(246, 189, 0, .18);
    color: var(--yellow-dark);
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.blog-detail {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.blog-detail-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 24px;
}

.blog-detail h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    margin: 15px 0 20px;
}

.blog-detail h3 {
    font-size: 25px;
    font-weight: 900;
    margin: 35px 0 15px;
}

.blog-detail p,
.blog-detail li {
    color: var(--text);
    line-height: 1.9;
}

.detail-highlight {
    background: #111;
    color: #fff;
    padding: 25px;
    border-left: 6px solid var(--yellow);
    border-radius: 18px;
    margin: 30px 0;
    line-height: 1.8;
}

.blog-date {
    color: var(--yellow-dark);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 10px;
}

.sidebar-card,
.sidebar-cta {
    background: #fff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

.sidebar-card h3,
.sidebar-cta h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.sidebar-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-card ul li {
    border-bottom: 1px solid #eee;
}

.sidebar-card ul li a {
    display: block;
    padding: 12px 0;
    color: #222;
    font-weight: 700;
}

.sidebar-card ul li a:hover {
    color: var(--yellow-dark);
}

.sidebar-cta {
    background: #111;
    color: #fff;
}

.sidebar-cta p {
    color: #ddd;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .blog-detail {
        padding: 22px;
    }

    .blog-detail-img {
        height: 260px;
    }
}

.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    height: 100%;
}

.contact-icon {
    width: 85px;
    height: 85px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 32px;
    color: #111;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text);
    margin: 0;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.contact-form-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 25px;
}

.section-mini-title {
    color: var(--yellow-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 16px 18px;
    outline: none;
    font-size: 15px;
}

.contact-image img {
    width: 100%;
    border-radius: 30px;
}

.map-area {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.map-area iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

@media (max-width: 767px) {
    .contact-form-box {
        padding: 24px;
    }

    .map-area iframe {
        height: 350px;
    }
}


/* BORTAP INDEX V2 EK CSS - mevcut sayfaları bozmaz */

.trust-section {
    background: #fff;
    padding: 70px 0;
}

.trust-item {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .3s;
}

.trust-item:hover {
    transform: translateY(-7px);
}

.trust-icon {
    width: 66px;
    height: 66px;
    background: var(--yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.applications-section {
    background: #f7f7f7;
}

.application-card {
    display: block;
    height: 100%;
    background: #111;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.application-card:hover {
    color: #fff;
    transform: translateY(-7px);
}

.application-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    opacity: .58;
    transition: .4s;
}

.application-card:hover img {
    transform: scale(1.07);
    opacity: .38;
}

.application-content {
    position: relative;
    left: 0;
    right: 0;
    padding: 50px;
    bottom: 0;
    z-index: 2;
}

.application-content i {
    color: var(--yellow);
    font-size: 34px;
    margin-bottom: 15px;
}

.application-content h3 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 10px;
}

.application-content p {
    color: #ddd;
    line-height: 1.7;
    margin: 0;
}

.machine-section {
    background: #fff;
}

.machine-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
    transition: .3s;
}

.machine-card:hover {
    transform: translateY(-7px);
}

.machine-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.machine-body {
    padding: 24px;
}

.machine-body span {
    display: inline-block;
    background: rgba(246,189,0,.18);
    color: var(--yellow-dark);
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.machine-body h3 {
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 14px;
}

.machine-body ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.machine-body li {
    color: var(--text);
    margin-bottom: 7px;
    font-size: 14px;
}

.machine-body a {
    color: var(--yellow-dark);
    font-weight: 900;
}

.machine-cta-card {
    height: 100%;
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.machine-cta-card h3 {
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 15px;
}

.machine-cta-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .trust-section {
        padding: 55px 0;
    }

    .application-card img {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .trust-section {
        padding: 45px 0;
    }

    .trust-item {
        padding: 24px;
    }

    .application-card img {
        height: 280px;
    }

    .machine-img img {
        height: 210px;
    }
}

.technical-table-wrap {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.technical-table {
    margin: 0;
}

.technical-table th {
    background: #111;
    color: #fff;
    padding: 17px 20px;
    font-size: 18px;
    font-weight: 900;
}

.technical-table td {
    padding: 15px 20px;
    color: var(--text);
    font-weight: 600;
    border-color: #eee;
}

.technical-table tr td:first-child {
    color: #111;
    font-weight: 900;
}

@media (max-width: 767px) {
    .technical-table th,
    .technical-table td {
        padding: 13px 14px;
        font-size: 13px;
    }
}

.hero-video{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-video video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%,-50%);
    object-fit:cover;
}

.hero-video .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-video .container{
    position:relative;
    z-index:3;
}

/* TOP BAR */

.topbar{
    background:#111;
    color:#fff;
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.topbar-left a{
    color:#ddd;
    transition:.3s;
}

.topbar-left a:hover{
    color:var(--yellow);
}

.topbar-left i{
    color:var(--yellow);
    margin-right:7px;
}

.topbar-right a{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    transition:.3s;
}

.topbar-right a:hover{
    background:var(--yellow);
    color:#111;
}

.site-header{
    top:0;
}

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .site-header{
        top:0;
    }

}

