.elementor-1578 .elementor-element.elementor-element-e4d05fd{--display:flex;}.elementor-1578 .elementor-element.elementor-element-fe0bfd1{--display:flex;}.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-1578 .elementor-element.elementor-element-477272e .gallery-item .gallery-caption{text-align:center;color:#000000;}.elementor-1578 .elementor-element.elementor-element-ab95817{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0731678 *//* --- SK ENGG ABOUT BANNER --- */
.sk-about-banner {
    /* Forces the banner to be full width regardless of theme container */
    width: 100vw;
    height: 380px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* Premium Industrial Background with dark blue overlay for text readability */
    background: linear-gradient(rgba(0, 21, 51, 0.75), rgba(0, 21, 51, 0.75)), 
                url('https://images.unsplash.com/photo-1537462715879-360eeb61a0ad?q=80&w=2000&auto=format&fit=crop');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Centers the text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.sk-about-banner h1 {
    /* Uses your website's global theme font */
    font-family: inherit; 
    color: #ffffff !important;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 20px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .sk-about-banner { height: 250px; }
    .sk-about-banner h1 { font-size: 32px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d881fb *//* --- SK ENGG PREMIUM PRODUCT PAGE THEME --- */
:root {
    --sk-navy: #001d4a;
    --sk-blue: #0056b3;
    --sk-orange: #f37021;
    --sk-light-bg: #f8fbff;
    --sk-border: #eef2f6;
}

.sk-product-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* FULL WIDTH HERO BANNER */
.sk-prod-banner {
    width: 100vw;
    height: 400px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Professional Industrial Background */
    background: linear-gradient(rgba(0, 29, 74, 0.75), rgba(0, 29, 74, 0.75)), 
                url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sk-prod-banner h1 {
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

/* PRODUCT GRID SECTION */
.sk-grid-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.sk-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Images per row */
    gap: 30px;
}

/* INDIVIDUAL PRODUCT CARD */
.sk-prod-card {
    background: #ffffff;
    border: 1px solid var(--sk-border);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

/* Image Container - Maintains alignment */
.sk-prod-img-box {
    width: 100%;
    height: 280px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sk-prod-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

/* Title Box */
.sk-prod-title {
    padding: 25px 20px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    flex-grow: 1;
}

.sk-prod-title h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--sk-navy);
    font-weight: 700;
    transition: color 0.3s ease;
}

/* --- PREMIUM HOVER EFFECTS --- */
.sk-prod-card:hover {
    transform: translateY(-12px); /* Lifts card */
    box-shadow: 0 20px 45px rgba(0, 29, 74, 0.15);
    border-color: var(--sk-orange);
}

.sk-prod-card:hover .sk-prod-img-box img {
    transform: scale(1.1); /* Smooth Zooms Image */
}

.sk-prod-card:hover h3 {
    color: var(--sk-orange); /* Changes text to brand orange */
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .sk-product-grid { grid-template-columns: repeat(2, 1fr); }
    .sk-prod-banner h1 { font-size: 32px; }
}

@media (max-width: 650px) {
    .sk-product-grid { grid-template-columns: 1fr; }
    .sk-prod-img-box { height: 220px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ae2a17 *//* 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-ab95817 *//* 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 */