.elementor-2028 .elementor-element.elementor-element-87ead57{--display:flex;}.elementor-2028 .elementor-element.elementor-element-61f9db5{--display:flex;}/* Start custom CSS for html, class: .elementor-element-725dc14 *//* GLOBAL STYLES */
:root {
    --navy: #001d4a;
    --blue-accent: #0056b3;
    --orange: #f37021;
    --light-bg: #f8fbff;
    --white: #ffffff;
}

.sk-wrapper {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* FULL WIDTH BANNER */
.full-width-banner {
    width: 100vw;
    height: 450px;
    background: linear-gradient(rgba(0, 29, 74, 0.7), rgba(0, 29, 74, 0.7)), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=2070'); /* Replace with your banner image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.full-width-banner h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* SECTION HEADINGS */
.section-heading {
    text-align: center;
    padding: 60px 0 20px;
    font-size: 2.5rem;
    color: var(--navy);
    text-transform: uppercase;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--orange);
    display: block;
    margin: 10px auto;
}

/* PRODUCT GRID */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* MACHINE CARD & HOVER EFFECTS */
.machine-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid #eee;
    padding-bottom: 25px;
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--blue-accent);
}

.img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #fff;
}

.machine-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.machine-card:hover img {
    transform: scale(1.1);
}

.machine-card h3 {
    color: var(--navy);
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.btn-view {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-view:hover {
    background: var(--navy);
}

/* MODAL / POPUP STYLE */
.sk-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 700px;
    border-radius: 15px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table tr:nth-child(even) { background: #f9f9f9; }
.spec-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.spec-table td:first-child {
    font-weight: bold;
    color: var(--navy);
    width: 40%;
}
/* ===== MODAL OVERLAY ===== */
.sk-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
}

/* ===== MODAL BOX ===== */
.sk-modal-content {
    background: #f4f4f4;
    max-width: 900px;
    margin: auto;
    border-radius: 12px;
    padding: 30px 35px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    font-family: 'Segoe UI', sans-serif;
}

/* ===== TITLE ===== */
.sk-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a2c5e;
    margin-bottom: 25px;
}

/* ===== CLOSE BUTTON ===== */
.sk-close {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #777;
    transition: 0.3s;
}

.sk-close:hover {
    color: #000;
    transform: rotate(90deg);
}

/* ===== TABLE STYLE ===== */
.sk-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.sk-table td {
    padding: 14px 18px;
    border: 1px solid #d6d6d6;
    font-size: 16px;
}

/* LEFT COLUMN */
.sk-table td:first-child {
    font-weight: 700;
    color: #0a2c5e;
    width: 40%;
    background: #f9f9f9;
}

/* RIGHT COLUMN */
.sk-table td:last-child {
    color: #333;
}

/* ===== SCROLLBAR STYLE ===== */
.sk-modal-content::-webkit-scrollbar {
    width: 8px;
}

.sk-modal-content::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .machine-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .machine-grid { grid-template-columns: 1fr; }
    .full-width-banner h1 { font-size: 2.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-66d79ca *//* Break footer out of theme container */
.sk-footer-outer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background-color: #071c36;
    padding: 60px 0;
}

/* Inner layout */
.sk-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Remove theme wrapper width restrictions */
.site,
.site-content,
.container,
.wrap,
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
}
.sk-social {
    margin-top: 20px;
}

.sk-social h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #f04e23; /* change to your brand color */
}

/* Responsive */
@media (max-width: 992px) {
    .sk-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sk-footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-61f9db5 *//* FORCE TRUE FULL WIDTH - OVERRIDE THEME CONTAINERS */
.sk-footer-outer {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    background-color: #001533;
    color: #ffffff;
    padding: 80px 0 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;

    /* Important fixes */
    max-width: 100vw !important;
}

/* Remove theme container spacing if applied */
body .sk-footer-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Prevent horizontal scroll issue */
html, body {
    overflow-x: hidden;
}/* End custom CSS */