/* --- Global Theme Sync --- */
:root {
    --adimech-blue: #0e2b5c;
    --adimech-orange: #ff5e14;
}

/* --- Banner Consistency Fix --- */
.modern-page-banner {
    /* position: relative;
    background-color: var(--adimech-blue);
    padding: 160px 0 100px 0;
    text-align: center;
    color: #ffffff; */
       position: relative;
    background-color: #0e2b5c; /* Adimech Blue */
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'); /* Subtle industrial texture */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
.banner-overlay {
    /* position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(14, 43, 92, 1) 0%, rgba(14, 43, 92, 0.7) 100%); */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(14, 43, 92, 0.9) 0%, rgba(255, 94, 20, 0.1) 100%);
    z-index: 1;
}

.page-title {
    font-size: 56px !important; 
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3) !important; 
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.8;
}

.breadcrumb-nav a:hover {
    color: #ff5e14; /* Adimech Orange */
    opacity: 1;
}

.breadcrumb-nav .separator {
    margin: 0 15px;
    font-size: 12px;
    color: #ff5e14;
}

.breadcrumb-nav .current-page {
    color: #ff5e14;
    font-weight: 700;
}
/* --- Gallery Styling --- */
.product-showcase-section { padding: 100px 0; background: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 4px;
    height: 300px;
}

.gallery-img-box { width: 100%; height: 100%; }

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* The Hover Effect */
.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(14, 43, 92, 0.9);
    color: #fff;
    padding: 15px;
    text-align: center;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay { bottom: 0; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- CTA Section --- */
.gallery-cta { background: #f4f7fa; padding: 80px 0; border-top: 1px solid #eee; }
.theme-btn-orange {
    background: var(--adimech-orange);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
    border-radius: 3px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 32px; }
}

/* .gallery-item a {
    display: block;
    cursor: zoom-in; 
    text-decoration: none;
}

.gallery-overlay i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff5e14;
} */

/* --- Gallery Item Container --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #000;
}

/* --- Image Styling --- */
.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* --- The Overlay (Hidden by Default) --- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 43, 92, 0.85); /* AdiMech Blue with Transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden */
    transition: opacity 0.4s ease;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px); /* Slight slide-up effect */
    transition: transform 0.4s ease;
}

/* --- Icon & Name Styling --- */
.overlay-content i {
    font-size: 32px;
    color: #ff5e14; /* AdiMech Orange */
    margin-bottom: 15px;
    display: block;
}

.component-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* --- Hover Effects --- */
.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Show Overlay */
}

.gallery-item:hover .overlay-content {
    transform: translateY(0); /* Slide content to center */
}

.gallery-item:hover .gallery-img-box img {
    transform: scale(1.1); /* Subtle Zoom */
}

.elementor-kit-31 a {
    color: white !important;
    font-family: "Barlow", Sans-serif;
}