/* ================================================================
GLT ELEVATE - COMPLETE PRODUCTION STYLESHEET (V1.0)
Prefix: glt-
================================================================
*/

/* 1. DESIGN TOKENS & ROOT 
   ------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --glt-primary: #0f172a;        /* Deep Navy */
    --glt-secondary: #1e293b;      /* Slate Blue */
    --glt-accent: #0ea5e9;         /* Engineering Blue */
    --glt-accent-hover: #0284c7;
    --glt-accent-glow: rgba(14, 165, 233, 0.2);
    
    /* Semantic Colors */
    --glt-success: #10b981;
    --glt-danger: #ef4444;
    --glt-warning: #f59e0b;
    --glt-white: #ffffff;
    --glt-bg-light: #f8fafc;
    --glt-bg-dark: #020617;
    --glt-text-main: #334155;
    --glt-text-muted: #64748b;
    
    /* Typography */
    --glt-font-head: 'Montserrat', sans-serif;
    --glt-font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --glt-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glt-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --glt-shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --glt-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* 2. BASE RESET & GLOBAL 
   ------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--glt-font-body);
    color: var(--glt-text-main);
    line-height: 1.7;
    background-color: var(--glt-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .glt-logo {
    font-family: var(--glt-font-head);
    font-weight: 800;
    color: var(--glt-primary);
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

a { text-decoration: none; color: inherit; transition: var(--glt-transition); }

/* 3. LAYOUT UTILITIES 
   ------------------------------------------------------------- */
.glt-container { max-width: 1170px; margin: 0 auto; padding: 0 20px}

.glt-section { padding: 100px 0; position: relative; }

.glt-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.glt-center { text-align: center; }
.glt-center::after { margin-left: auto; margin-right: auto; }

.glt-bg-alt { background-color: var(--glt-bg-light); }

/* ================================================================
   GLT ELEVATE - NO-ROOT PRODUCTION CSS
   Architecture: Social (L) | Contact (R) + Logo | Menu | CTA
   ================================================================ */

/* 1. TOPBAR - SOCIAL (LEFT) & UTILITY (RIGHT) */
/* ================================================================
   GLT NAVIGATION - ARCHITECTURAL LIGHT THEME
   ================================================================ */

/* Topbar: Industrial Slate */
.glt-topbar {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.glt-topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glt-topbar-left, .glt-topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.glt-social-minimal a {
    color: #94a3b8;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.glt-social-minimal a:hover { color: #0ea5e9; }

.glt-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

/* Header: Glassmorphism */
.glt-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.glt-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Engineering Logo */
.glt-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.glt-logo img {
	max-width: 180px;
}

.glt-logo-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.glt-logo-bar {
    width: 24px;
    height: 3px;
    background: #0f172a;
    transition: width 0.3s ease;
}

.glt-logo:hover .glt-logo-bar:nth-child(2) { width: 15px; }

.glt-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
}

.glt-accent { color: #0ea5e9; }

/* Nav Links */
.glt-nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.glt-nav-list a {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.glt-nav-list a:hover, .glt-nav-list a.active {
    color: #0ea5e9;
}

/* Megamenu Logic */
.glt-dropdown { position: relative; }

.glt-megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #ffffff;
	width: 270px;
	padding: 15px;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
}

.glt-dropdown:hover .glt-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.glt-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.glt-mega-col h6 {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.glt-mega-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #1e293b;
}

/* Header Actions */
.glt-header-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.glt-search-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
}

.glt-btn-primary {
    background: #0ea5e9;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
}

/* Mobile Toggle */
.glt-mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 1.2rem;
    color: #0f172a;
}

@media (max-width: 1024px) {
    .glt-nav, .glt-hide-mobile { display: none; }
    .glt-mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .glt-topbar { display: none; }
}


/* The "Numbers" Data Card */
.glt-data-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 200px;
}

.glt-card-header {
    font-size: 0.65rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 10px;
}

.glt-card-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
}

.glt-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
}

.glt-card-footer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

/* Action Buttons */
.glt-hero-actions { display: flex; gap: 15px; }

.glt-btn-primary {
    background: #0ea5e9;
    color: #fff;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    transition: 0.3s;
}

.glt-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.glt-data-card { animation: float 4s ease-in-out infinite; }

/* Mobile Adaptability */
@media (max-width: 1024px) {
    .glt-hero-split { grid-template-columns: 1fr; text-align: center; }
    .glt-hero-actions { justify-content: center; }
    .glt-data-card { left: 50%; transform: translateX(-50%); bottom: 20px; }
    .glt-main-img { height: 400px; }
}

.glt-btn {
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
}

.glt-btn-primary { background: var(--glt-accent); color: var(--glt-white); }
.glt-btn-primary:hover { background: var(--glt-accent-hover); transform: translateY(-3px); box-shadow: 0 10px 20px var(--glt-accent-glow); }

.glt-btn-outline { border-color: var(--glt-white); color: var(--glt-white); }
.glt-btn-outline:hover { background: var(--glt-white); color: var(--glt-primary); }

/* 6. GRID SYSTEM 
   ------------------------------------------------------------- */
.glt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
.glt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.glt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* 7. ABOUT SECTION 
   ------------------------------------------------------------- */
/* ================================================================
   GLT ABOUT SECTION - PROFESSIONAL REFINEMENT
   ================================================================ */

.glt-section {
    padding: 100px 0;
}

.glt-about {
    background: #ffffff;
    overflow: hidden;
}

.glt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Column & Badge */
.glt-about-visual {
    position: relative;
}

.glt-image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.glt-about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0px #f1f5f9; /* Industrial offset shadow */
}

.glt-experience-badge {
    position: absolute;
    bottom: 10px;
    right: 0;
    background: #0f172a; /* Midnight Blue */
    color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    z-index: 2;
}

.glt-badge-num {
    font-size: 3rem;
    font-weight: 900;
    color: #0ea5e9;
    line-height: 1;
}

.glt-badge-txt {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Text & Feature Refinement */
.glt-upper-title {
    display: block;
    color: #0ea5e9;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.glt-section-title {
    font-size: 2.8rem;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 900;
}

.glt-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.glt-about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glt-feat-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.glt-feat-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(10px);
}

.glt-feat-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.glt-feat-content h4 {
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.glt-feat-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Polish */
@media (max-width: 1024px) {
    .glt-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .glt-section-title {
        font-size: 2.2rem;
    }
    .glt-image-stack {
        padding: 0;
    }
}

/* 8. SERVICE CARDS 
   ------------------------------------------------------------- */
/* ================================================================
   GLT SERVICES SECTION - GRID REFINEMENT
   ================================================================ */

.glt-bg-alt {
    background-color: #f8fafc; /* Subtle grey to separate from About section */
}

.glt-center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.glt-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Grid System */
.glt-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.glt-service-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.glt-service-card:hover {
    transform: translateY(-12px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Background Number Decor */
.glt-card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 1;
    transition: color 0.3s ease;
}

.glt-service-card:hover .glt-card-number {
    color: rgba(14, 165, 233, 0.1);
}

/* Icon & Content */
.glt-card-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    background: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.glt-service-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.glt-service-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Card Footer Link */
.glt-card-link {
    margin-top: auto;
    text-decoration: none;
    color: #0ea5e9;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.glt-service-card:hover .glt-card-link {
    gap: 12px;
}

/* Responsive Mobile */
@media (max-width: 1024px) {
    .glt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .glt-grid-3 {
        grid-template-columns: 1fr;
    }
    .glt-service-card {
        padding: 40px 30px;
    }
}

/* 9. PRODUCT CARDS 
   ------------------------------------------------------------- */
/* ================================================================
   GLT PRODUCTS - ARCHITECTURAL SHOWCASE
   ================================================================ */

.glt-products {
    background: #ffffff;
}

.glt-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

/* Image Wrapper & Interactions */
.glt-product-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.glt-p-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glt-product-card:hover .glt-p-img {
    transform: scale(1.1);
}

/* Technical Badges */
.glt-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0f172a;
    color: #0ea5e9;
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 4px;
    z-index: 2;
}

.glt-spec-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 30px 20px 20px;
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.glt-product-card:hover .glt-spec-overlay {
    opacity: 1;
    transform: translateY(0);
}

.glt-spec-overlay span {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glt-spec-overlay i {
    color: #0ea5e9;
}

/* Info Section */
.glt-product-info {
    padding: 30px;
}

.glt-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.glt-product-info h4 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 900;
}

.glt-product-info p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Card Lift on Hover */
.glt-product-card:hover {
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
    border-color: #0ea5e9;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .glt-product-img-wrapper {
        height: 280px;
    }
    .glt-spec-overlay {
        opacity: 1;
        transform: translateY(0);
        background: rgba(15, 23, 42, 0.6);
    }
}

/* 10. TESTIMONIALS (Dark Mode) 
   ------------------------------------------------------------- */
/* ================================================================
   GLT TESTIMONIALS - PERFORMANCE VALIDATION
   ================================================================ */

.glt-bg-dark {
    background: #0f172a; /* Midnight Blue */
    position: relative;
    overflow: hidden;
}

/* Background Texture for Depth */
.glt-bg-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.glt-testimonial-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Impact Visual Side */
.glt-testimonial-stat {
    display: flex;
    justify-content: center;
}

.glt-stat-circle {
    width: 220px;
    height: 220px;
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.03);
    position: relative;
}

.glt-stat-circle::after {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px dashed rgba(14, 165, 233, 0.2);
    border-radius: 50%;
}

.glt-stat-percent {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0ea5e9;
    line-height: 1;
}

.glt-stat-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Card Content Side */
.glt-testimonial-card {
    position: relative;
}

.glt-quote-icon {
    font-size: 3rem;
    color: rgba(14, 165, 233, 0.1);
    margin-bottom: -20px;
}

.glt-testimonial-card blockquote {
    font-size: 1.8rem;
    color: #f8fafc;
    line-height: 1.5;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 40px;
    border: none;
    padding: 0;
}

/* Client Identity */
.glt-client-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.glt-client-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #0ea5e9;
    object-fit: cover;
}

.glt-client-details {
    flex-grow: 1;
}

.glt-client-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.glt-client-title {
    font-size: 0.85rem;
    color: #94a3b8;
}

.glt-client-logo {
    font-size: 0.75rem;
    font-weight: 900;
    color: #334155;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 15px;
    border-radius: 4px;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .glt-testimonial-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .glt-testimonial-stat {
        margin-bottom: 40px;
    }
    .glt-testimonial-card blockquote {
        font-size: 1.4rem;
    }
    .glt-client-meta {
        flex-direction: column;
    }
    .glt-client-logo {
        margin-top: 10px;
    }
}

/* 11. TEAM SECTION 
   ------------------------------------------------------------- */
/* ================================================================
   GLT TEAM - ENGINEERING BOARD REFINEMENT
   ================================================================ */

.glt-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glt-team-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.glt-team-visual {
    position: relative;
    height: 320px;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    background: #f1f5f9;
}

.glt-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glt-team-card:hover .glt-member-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Social Overlay */
.glt-team-social {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0ea5e9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.glt-team-card:hover .glt-team-social {
    transform: translateY(0);
}

.glt-team-social a {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Info Styling */
.glt-team-info h5 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 5px;
    font-weight: 800;
}

.glt-team-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0ea5e9;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.glt-team-spec {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .glt-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .glt-grid-4 { grid-template-columns: 1fr; }
    .glt-team-visual { height: 400px; }
}

/* 12. BLOG & CONTACT 
   ------------------------------------------------------------- */
/* ================================================================
   GLT BLOG - TECHNICAL PUBLICATION STYLE
   ================================================================ */

.glt-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.glt-blog-post {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px; /* Sharp for industrial feel */
    border-left: 4px solid #0f172a; /* Midnight Blue Accent */
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.glt-blog-post:hover {
    transform: translateY(-5px);
    border-left-color: #0ea5e9; /* Transitions to Azure */
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

/* Meta Data Row */
.glt-blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.glt-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.glt-read-time {
    font-size: 0.65rem;
    font-weight: 800;
    color: #0ea5e9;
    
}

/* Content Area */
.glt-category-pill {
    display: inline-block;
    background: #f8fafc;
    color: #475569;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 15px;
}

.glt-blog-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 800;
}

.glt-blog-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

/* Link Polish */
.glt-read-more {
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.glt-read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.glt-blog-post:hover .glt-read-more {
    color: #0ea5e9;
}

.glt-blog-post:hover .glt-read-more i {
    transform: translateX(5px);
}

/* Mobile Polish */
@media (max-width: 900px) {
    .glt-grid-2 { grid-template-columns: 1fr; }
    .glt-blog-post { padding: 30px; }
}

/* ================================================================
   GLT CONTACT - PROJECT PORTAL REFINEMENT
   ================================================================ */



/* ================================================================
   GLT GALLERY - ARCHITECTURAL MASONRY
   ================================================================ */

.glt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.glt-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #0f172a;
}

/* Span Logic for Asymmetry */
.glt-tall { grid-row: span 2; }
.glt-wide { grid-column: span 2; }

.glt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

/* Hover Effects */
.glt-gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.glt-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glt-gallery-item:hover .glt-gallery-overlay {
    opacity: 1;
}

.glt-project-info h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.glt-project-info span {
    color: #0ea5e9;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    display: block;
}

.glt-gallery-item:hover h5, 
.glt-gallery-item:hover span {
    transform: translateY(0);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .glt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glt-wide { grid-column: span 1; }
}

@media (max-width: 600px) {
    .glt-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .glt-tall { grid-row: span 1; }
}

/* 13. FOOTER 
   ------------------------------------------------------------- */
/* =========================================
   GLT 4-COLUMN ARCHITECTURAL FOOTER
   ========================================= */

.glt-footer {
    background: #020617; /* Deepest Midnight */
    color: #94a3b8;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* 2. Main Grid Layout */
.glt-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding: 80px 0;
}

.glt-col-title {
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 60px;
	position: relative;
}

.glt-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 30px;
    height: 2px;
    background: #0ea5e9;
}

/* 3. Typography & Links */
.glt-brand-desc {
    margin: 25px 0;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
    color: #fff;
}

.glt-link-list {
    list-style: none;
    padding: 0;
}

.glt-link-list li {
    margin-bottom: 15px;
}

.glt-link-list a {
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glt-link-list a:hover {
    color: #0ea5e9;
    padding-left: 8px;
}

/* 4. Contact & Emergency Tag */
.glt-address {
    font-style: normal;
}

.glt-address p {
	margin-bottom: 15px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}

.glt-address i {
    color: #0ea5e9;
}

.glt-tag-emergency {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(14, 165, 233, 0.3);
    display: inline-block;
    margin-top: 10px;
    
}

/* 5. Social Icon Polish */
.glt-social-row {
    display: flex;
    gap: 12px;
}

.glt-soc-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glt-soc-icon:hover {
    background: #0ea5e9;
    transform: translateY(-5px);
    border-color: #0ea5e9;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* 6. Footer Bottom Bar */
.glt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.glt-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.glt-copy {
    font-size: 0.8rem;
    opacity: 0.7;
}

.glt-legal a {
    font-size: 0.8rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.glt-legal a:hover { color: #fff; }

.glt-sep {
    margin: 0 10px;
    opacity: 0.2;
}

/* Animations */
@keyframes gltPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .glt-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .glt-footer-main {
        grid-template-columns: 1fr;
    }
    .glt-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .glt-trust-flex {
        justify-content: center;
    }
}

/* 14. ANIMATIONS & RESPONSIVENESS 
   ------------------------------------------------------------- */
@keyframes gltFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .glt-grid-3, .glt-grid-2, .glt-contact-grid { grid-template-columns: 1fr; }
    .glt-hero h1 { font-size: 3.5rem; }
    .glt-about-visual { height: 400px; margin-bottom: 50px; }
    .glt-experience-badge { right: 0; bottom: 0; }
    .glt-footer-main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .glt-nav-list { display: none; }
    .glt-topbar { display: none; }
    .glt-hero h1 { font-size: 2.8rem; }
    .glt-section { padding: 60px 0; }
    .glt-contact-form-box { padding: 40px; }
}

/* Sidebar Layout */
.glt-grid-sidebar {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Main Display Image */
.glt-main-display {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}

.glt-featured-img { width: 100%; display: block; }

.glt-img-badge {
    position: absolute; bottom: 30px; left: 30px;
    background: #0ea5e9; color: #fff;
    padding: 8px 15px; font-weight: 900;
    font-size: 0.7rem; 
}

/* Feature Grid with SVGs */
.glt-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.glt-feature-box {
    padding: 40px;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.glt-gallery-container.glt-section-inside {
	margin-top: 60px;
}
.glt-feature-box:hover {
    border-color: #0ea5e9;
    background: #f8fafc;
}
.glt-product-main .glt-sub-heading {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}
.glt-svg-icon {
    width: 50px; height: 50px;
    line-height: 50px;
    background-color: #0ea5e9;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.glt-svg-icon span{
    vertical-align: middle;
}

/* Glass-morphism Cards */
.glt-glass-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.glt-card-header h3 {
  font-size: 22px;
  font-family: inherit;
  font-weight: 700;
  
}
.glt-card-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 25px;
}

.glt-card-header i { color: #cbd5e1; font-size: 1.5rem; }

/* Technical Spec Styling */
.glt-spec-list { list-style: none; padding: 0;}
.glt-spec-list li {
    display: flex; justify-content: space-between;
    padding: 15px 0; border-bottom: 1px solid #f1f5f9;
}

.glt-spec-list span { color: #111; font-size: 0.85rem; font-weight: 600; }
.glt-spec-list strong { color: #0f172a; font-size: 0.9rem; }


.glt-product-sidebar.product-features li {
  padding: 10px 0;
  font-size: 15px;
}
.glt-product-sidebar.product-features li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.glt-card-header {
  margin-bottom: 7px;
}


.glt-gallery-container.glt-section-inside h4 {
  font-size: 24px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.product-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.product-gallery-grid img {
  border: 1px solid #ddd;
  padding: 3px;
  max-width: 145px;
}

/* Buttons */
.glt-btn-download {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; background: #0f172a; color: #fff;
    padding: 18px; text-decoration: none; font-weight: 800;
    font-size: 0.75rem; text-transform: uppercase;
}

.glt-btn-submit {
    width: 100%; background: #0ea5e9; color: #fff;
    border: none; padding: 18px; font-weight: 800;
    text-transform: uppercase; cursor: pointer;
    transition: 0.3s;
}

.glt-btn-submit:hover { background: #0f172a; }

/* Minimal Form */
.glt-input-group input, .glt-input-group select {
    width: 100%; padding: 15px; border: 1px solid #e2e8f0;
    margin-bottom: 15px; background: #fcfcfc;
    font-family: inherit;
}

@media (max-width: 1100px) {
    .glt-grid-sidebar { grid-template-columns: 1fr; }
}

/* ================================================================
   GLT ABOUT SECTION - TRADITIONAL PRO
   ================================================================ */

.glt-about {
    padding: 120px 0;
    background: #ffffff;
}

.glt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* 1. VISUAL SIDE */
.glt-about-visual {
    position: relative;
    padding-right: 40px;
}

.glt-image-stack {
    position: relative;
}

.glt-img-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 30px 30px 0px -10px #f1f5f9; /* Architectural shadow */
}

.glt-about-img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.glt-image-stack:hover .glt-about-img {
    transform: scale(1.05);
}

.glt-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 10;
    background: #0ea5e9;
    color: #ffffff;
    padding: 30px;
}

.glt-badge-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
}

.glt-badge-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    
    font-weight: 700;
}

/* Deco Elements */
.glt-shape-deco-dots {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

/* 2. TEXT SIDE */
.glt-label-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.glt-upper-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    
    color: #64748b;
}

.glt-title-line {
    height: 2px;
    width: 50px;
    background: #0ea5e9;
}

.glt-section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 30px;
}

.glt-text-blue {
    color: #0ea5e9;
}

.glt-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

/* Features List */
.glt-about-features {
    margin-bottom: 50px;
}

.glt-feat-item {
	display: flex;
	gap: 25px;
	margin-bottom: 0;
	border: 1px solid #ddd;
}
.glt-about-cta a:hover {
	background-color: #333;
	color: #fff;
}
.glt-feat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    transition: 0.3s;
}

.glt-feat-item:hover .glt-feat-icon {
    background: #0ea5e9;
    color: #ffffff;
}

.glt-feat-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.glt-feat-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Button Styling (Same as Hero) */
.glt-btn-trad-primary {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.glt-btn-trad-primary:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .glt-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .glt-about-visual {
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    .glt-section-title {
        font-size: 2.2rem;
    }
}


/* ================================================================
   GLT HERO - TRADITIONAL PRO (DIRECT COLOR IMPLEMENTATION)
   ================================================================ */

.glt-hero-trad-pro {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 9;
}
.glt-hero-trad-pro::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;
	left: 0;
	top: 0;
	opacity: .7;
}

/* 1. LAYERED OVERLAYS */
.glt-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, 
                rgba(15, 23, 42, 0.98) 0%, 
                rgba(15, 23, 42, 0.85) 40%, 
                rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.glt-shaft-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    z-index: 2;
}

/* 2. TYPOGRAPHY & CONTENT */
.glt-hero-inner {
	position: relative;
	z-index: 10;
	padding: 60px 0;
	text-align: center;
}

.glt-hero-top {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	justify-content: center;
}
.glt-trad-meta {
	color: #fff;
}
.glt-trad-badge {
    background: #0ea5e9;
    color: #ffffff;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 900;
    
    text-transform: uppercase;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.glt-hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.glt-hero-focus {
    color: #0ea5e9;
}

.glt-hero-p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 45px;
	padding-left: 25px;
	margin: 0 auto 45px;
}

/* 3. BUTTONS (Sharp & Industrial) */
.glt-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.glt-btn-trad-primary, 
.glt-btn-trad-outline {
    padding: 20px 40px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.glt-btn-trad-primary {
    background: #0ea5e9;
    color: #ffffff;
}

.glt-btn-trad-primary:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-3px);
}

.glt-btn-trad-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.glt-btn-trad-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #0ea5e9;
    color: #0ea5e9;
}

/* 4. TECHNICAL STATS */
.glt-hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    justify-content: center;
}

.glt-stat-item {
    display: flex;
    flex-direction: column;
}

.glt-stat-num {
	font-size: 50px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 5px;
}

.glt-stat-label {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

/* 5. VISUAL SHAFT ANIMATION */
.glt-lift-line {
    position: absolute;
    right: 15%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: 2;
}

.glt-lift-car-dot {
    position: absolute;
    top: 20%;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 15px #0ea5e9;
    animation: liftTravel 8s infinite ease-in-out;
}

@keyframes liftTravel {
    0%, 100% { top: 15%; }
    50% { top: 85%; }
}

/* 6. RESPONSIVENESS */
@media (max-width: 992px) {
    .glt-hero-inner { text-align: center; }
    .glt-hero-p { margin: 0 auto 40px; border-left: none; padding-left: 0; }
    .glt-hero-cta-group { justify-content: center; }
    .glt-hero-stats { justify-content: center; gap: 30px; }
    .glt-lift-line { display: none; }
}


/* ================================================================
   GLT CTA - INDUSTRIAL THEME
   ================================================================ */

.glt-cta-industrial {
    position: relative;
    padding: 100px 0;
    background-color: #0f172a; /* Deep Navy */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}

.glt-cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.glt-blueprint-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.glt-cta-flex {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.glt-cta-tag {
    display: inline-block;
    color: #0ea5e9;
    font-weight: 800;
    text-transform: uppercase;
    
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.glt-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.glt-cta-p {
    max-width: 550px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Checkmarks */
.glt-cta-features {
    display: flex;
    gap: 30px;
}

.glt-cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

/* Actions Area */
.glt-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.glt-btn-trad-primary {
    background: #0ea5e9;
    color: #ffffff;
    padding: 22px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    
    transition: 0.3s ease;
}

.glt-btn-trad-primary:hover {
    background: #ffffff;
    color: #0f172a;
}

.glt-cta-phone {
    text-align: right;
    text-decoration: none;
    display: block;
}

.glt-phone-label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    
    margin-bottom: 5px;
}

.glt-phone-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    transition: 0.3s;
}

.glt-cta-phone:hover .glt-phone-num {
    color: #0ea5e9;
}

/* Responsive */
@media (max-width: 992px) {
    .glt-cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .glt-cta-actions {
        align-items: center;
    }
    .glt-cta-phone {
        text-align: center;
    }
    .glt-cta-features {
        justify-content: center;
    }
}


/* ================================================================
   GLT TESTIMONIALS - TRADITIONAL 3-COL DARK
   ================================================================ */

.glt-bg-dark {
    background-color: #0f172a;
    padding: 100px 0;
}

.glt-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card: Square Industrial Design */
.glt-testi-card-trad {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-radius: 0; /* Strict square */
}

.glt-testi-card-trad:hover {
    border-color: #0ea5e9;
    transform: translateY(-5px);
    background: #1e293b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Data Highlight Block */
.glt-testi-data {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.glt-data-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0ea5e9;
    line-height: 1;
}

.glt-data-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}

/* Content */
.glt-testi-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.glt-quote-svg {
    opacity: 0.3;
    margin-bottom: 15px;
}

.glt-testi-card-trad blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
    margin: 0;
}

/* Footer / Meta */
.glt-testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.glt-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 0; /* Square avatar */
    border: 1px solid #0ea5e9;
    object-fit: cover;
}

.glt-testi-meta strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.glt-testi-meta span {
    display: block;
    font-size: 12px;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .glt-grid-3 { grid-template-columns: 1fr; }
}

/* ================================================================
   GLT TEAM - 4 COLUMN BOX-LOGIC
   ================================================================ */

.glt-team {
    background-color: #f8fafc;
    padding: 100px 0;
}

.glt-center-header {
    text-align: center;
    margin-bottom: 70px;
}

.glt-header-line {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    margin: 20px auto 0;
}

/* Grid Layout: 4 Columns */
.glt-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card: Strict Square */
.glt-team-card-trad {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0 !important;
}

/* Hover: Architectural Offset Shadow */
.glt-team-card-trad:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 15px 15px 0px rgba(14, 165, 233, 0.1);
}

/* Square Image Wrapper */
.glt-avatar-wrapper {
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.glt-avatar-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces square shape regardless of image source */
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

.glt-team-card-trad:hover .glt-avatar-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Technical Inset Frame */
.glt-avatar-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
    transition: 0.4s;
}

.glt-team-card-trad:hover .glt-avatar-frame {
    border: 1px solid #0ea5e9;
    top: 0; left: 0; right: 0; bottom: 0;
}

/* Info Section */
.glt-team-info-trad {
    padding: 30px 20px;
    text-align: center;
}

.glt-team-info-trad h5 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 5px;
}

.glt-team-role-trad {
    font-size: 0.7rem;
    color: #0ea5e9;
    font-weight: 700;
    
    text-transform: uppercase;
}

.glt-role-divider {
    width: 30px;
    height: 2px;
    background: #e2e8f0;
    margin: 15px auto;
}

.glt-team-info-trad p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Link Squares */
.glt-team-social-trad {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.glt-team-social-trad a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    transition: 0.3s;
    border-radius: 0 !important;
}

.glt-glass-card.glt-inquiry-box h3, .glt-glass-card.glt-inquiry-box p {
  margin-bottom: 20px;
}
.glt-team-social-trad a:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Responsive Grid for Tablets and Mobile */
@media (max-width: 1024px) {
    .glt-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .glt-grid-4 { grid-template-columns: 1fr; }
}

/* ================================================================
   GLT COUNTERS - TRADITIONAL INDUSTRIAL DASHBOARD
   ================================================================ */

.glt-counters {
    position: relative;
    /* Architectural Slate Background */
    background-color: #f1f5f9; 
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Subtle Blueprint Grid Pattern */
.glt-counters::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.glt-container {
    position: relative;
    z-index: 2;
}

/* 4-Column Grid: No gaps for a "Solid Unit" look */
.glt-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff; /* The "Console" background */
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Individual Data Block */
.glt-counter-item {
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
}

.glt-counter-item:last-child {
    border-right: none;
}

/* HOVER EFFECT: The Selection Glow */
.glt-counter-item:hover {
    background: #0f172a; /* Deep Navy on Hover */
    z-index: 3;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

/* Icon Styling */
.glt-counter-icon {
    color: #0ea5e9; /* Safety Blue */
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.glt-counter-item:hover .glt-counter-icon {
    transform: translateY(-5px);
    color: #ffffff;
}

/* Numbers & Typography */
.glt-counter-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.glt-counter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    
    color: #64748b;
    transition: color 0.3s ease;
}

/* Hover State Text Colors */
.glt-counter-item:hover .glt-counter-number {
    color: #ffffff;
}

.glt-counter-item:hover .glt-counter-label {
    color: #0ea5e9;
}

/* Technical "Underline" Animation */
.glt-counter-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #0ea5e9;
    transition: width 0.4s ease;
}

.glt-counter-item:hover .glt-counter-deco {
    width: 100%;
}

/* 2. RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
    .glt-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glt-counter-item:nth-child(2) {
        border-right: none;
    }
    .glt-counter-item:nth-child(-n+2) {
        border-bottom: 1px solid #e2e8f0;
    }
}

@media (max-width: 600px) {
    .glt-counter-grid {
        grid-template-columns: 1fr;
    }
    .glt-counter-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .glt-counter-item:last-child {
        border-bottom: none;
    }
}

/* ================================================================
   GLT BLOG - PRO ENGINEERED THEME
   ================================================================ */

.glt-blog {
    padding: 100px 0;
    background: #f8fafc;
}

.glt-center-header {
    text-align: center;
    margin-bottom: 60px;
}

.glt-upper-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    
    color: #0ea5e9;
    margin-bottom: 10px;
}

.glt-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.glt-section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.glt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* 1. Blog Card Styling */
.glt-blog-card-pro {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #e2e8f0;
}

.glt-blog-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.glt-blog-image-pro {
    position: relative;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

.glt-blog-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glt-blog-card-pro:hover .glt-blog-image-pro img {
    transform: scale(1.05);
}

/* 2. Category Tags */
.glt-category-tag-pro {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.glt-tag-innovation { background: #0ea5e9; }
.glt-tag-compliance { background: #f97316; } /* Orange */
.glt-tag-data { background: #8b5cf6; } /* Violet */
.glt-tag-engineering { background: #10b981; } /* Green */
.glt-tag-green { background: #22c55e; } /* Deeper Green */
.glt-tag-solutions { background: #ef4444; } /* Red */


/* 3. Blog Body & Meta */
.glt-blog-body-pro {
    padding: 25px;
}

.glt-blog-meta-pro {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 15px;
    font-weight: 600;
}

.glt-blog-meta-pro span i {
    margin-right: 8px;
    color: #cbd5e1;
}

.glt-blog-body-pro h3 {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.glt-blog-body-pro p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 4. Read More Link */
.glt-link-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.glt-link-action:hover {
    gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glt-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   GLT GALLERY - ELITE SMOOTH 3-COLUMN GRID
   ================================================================ */

.glt-gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.glt-gallery-card {
    position: relative;
    background: #0f172a;
    border-radius: 20px; /* Softer, modern radius */
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    /* The Secret to Smooth: Custom Bezier Curve */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.4s ease;
}

/* Image behavior */
.glt-card-media {
    width: 100%;
    height: 100%;
}

.glt-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Slower zoom for a "cinematic" feel */
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Technical Badge Styling */
.glt-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Frosted glass effect */
    color: #0f172a;
    padding: 6px 14px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Smooth Gradient Overlay */
.glt-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(15, 23, 42, 0.2) 60%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    backdrop-filter: blur(0px);
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

/* Content Slide-up Animation */
.glt-card-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.glt-card-content h5 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 4px;
    font-weight: 800;
}

.glt-card-content p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* The View Button (Floating Action) */
.glt-view-btn {
    width: 50px;
    height: 50px;
    background: #0ea5e9;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px; /* Squircle */
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    /* Springy interaction */
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

/* ================================================================
   THE HOVER LOGIC
   ================================================================ */

.glt-gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
    border-color: #0ea5e9;
}

.glt-gallery-card:hover img {
    transform: scale(1.1);
}

.glt-gallery-card:hover .glt-card-overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
}

.glt-gallery-card:hover .glt-card-content {
    transform: translateY(0);
}

.glt-view-btn:hover {
    background: #000; /* Contrast shift */
    transform: scale(1.1) rotate(90deg);
}

/* Mobile Smoothing */
@media (max-width: 1024px) {
    .glt-gallery-grid-pro { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 600px) {
    .glt-gallery-grid-pro { grid-template-columns: 1fr; }
}

/* ================================================================
   GLT CONTACT - TRADITIONAL GRID THEME
   ================================================================ */

.glt-contact-trad {
    padding: 100px 0;
    background: #f8fafc;
}

.glt-contact-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* 1. Left Column: Info Styling */
.glt-info-header { margin-bottom: 40px; }
.glt-info-desc { color: #64748b; font-size: 1.1rem; line-height: 1.6; margin-top: 15px; }

.glt-method-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.glt-method-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.glt-method-text label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    
}

.glt-method-text p {
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.glt-social-wrap label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 15px;
}

.glt-social-links { display: flex; gap: 15px; }
.glt-social-links a {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.glt-social-links a:hover { background: #0ea5e9; transform: translateY(-3px); }

/* 2. Right Column: Form Styling */
.glt-form-terminal-frame {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.glt-terminal-header {
    background: #0f172a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.glt-status-light { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.glt-status-light.pulse { animation: gltPulse 2s infinite; }

.glt-terminal-title { color: #94a3b8; font-family: monospace; font-size: 0.7rem; }

.glt-pro-form { padding: 40px; }

.glt-pro-field { position: relative; margin-bottom: 25px; }
.glt-pro-field input, .glt-pro-field select, .glt-pro-field textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s;
}

.glt-pro-field label {
    position: absolute;
    left: 0; top: 12px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s;
}

.glt-pro-field input:focus ~ label, 
.glt-pro-field input:not(:placeholder-shown) ~ label,
.glt-pro-field textarea:focus ~ label,
.glt-pro-field textarea:not(:placeholder-shown) ~ label {
    top: -15px; font-size: 0.75rem; color: #0ea5e9; font-weight: 800;
}

.glt-pro-field input:focus, .glt-pro-field textarea:focus { border-bottom-color: #0ea5e9; }

.glt-btn-submit-pro {
    width: 100%;
    padding: 18px;
    background: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.glt-product-sidebar.product-features .glt-btn-primary {
  display: block;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
}
.glt-btn-submit-pro:hover { background: #0f172a; transform: scale(1.02); }

/* 3. Map Section */
.glt-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glt-map-container iframe {
	width: 100%;
	height: 350px;
}

.glt-map-overlay-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: #0f172a;
    color: #0ea5e9;
    padding: 8px 15px;
    font-family: monospace;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: 700;
}

@keyframes gltPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1024px) {
    .glt-contact-grid-2 { grid-template-columns: 1fr; gap: 50px; }
}


.glt-page-header {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
  color: #fff;
}
.glt-page-header:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #111;
  left: 0;
  top: 0;
  opacity: .85;
  z-index: -1;
}

.glt-bc-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.glt-page-title {
  color: #fff;
  font-size: 45px;
  margin-bottom: 20px;
}

/* Grid & Section Spacing */
.glt-section { padding: 100px 0; }
.glt-products-section { background: #f8fafc; }
.glt-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }

/* Product Cards */
.glt-prod-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.glt-prod-card:hover {
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    transform: translateY(-10px);
}

.glt-prod-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.glt-prod-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.glt-prod-card:hover .glt-prod-img img { transform: scale(1.1); }

.glt-prod-status {
    position: absolute; top: 15px; left: 15px;
    background: #0ea5e9; color: #fff;
    padding: 6px 12px; font-size: 0.65rem; font-weight: 800;
     border-radius: 3px;
}

.glt-prod-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }

.glt-cat-tag { font-size: 0.7rem; color: #94a3b8; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.glt-prod-info h3 {
	font-size: 24px;
	color: #0f172a;
	margin-bottom: 12px;
	font-weight: 700;
	
	text-transform: capitalize;
}
.glt-prod-info p {
	font-size: 14px;
	color: #111;
	line-height: 22px;
	margin-bottom: 60px;
	text-transform: initial;
	font-weight: 400;
	
}

/* Technical Spec Rows */
.glt-spec-row {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px dashed #e2e8f0;
}
.glt-spec-row span { font-size: 0.8rem; color: #94a3b8; font-weight: 600; }
.glt-spec-row strong { font-size: 0.85rem; color: #0f172a; font-weight: 700; }

.glt-btn-full {
    background: #0f172a; color: #fff; text-align: center;
    padding: 16px; text-decoration: none; font-weight: 800;
    font-size: 0.75rem; text-transform: uppercase; 
    margin-top: 30px; transition: 0.3s;
}

.glt-btn-full:hover { background: #0ea5e9; }

/* Technical Table Section */
.glt-bg-dark { background: #0f172a; color: #fff; }
.glt-section-header.light p { color: #94a3b8; }
.glt-table-responsive { overflow-x: auto; margin-top: 50px; }

.glt-pro-table {
    width: 100%; border-collapse: collapse; min-width: 850px;
    background: rgba(255,255,255,0.02);
}

.glt-pro-table th {
    background: rgba(255,255,255,0.05); padding: 25px;
    text-align: left; color: #0ea5e9; font-size: 0.8rem;
    text-transform: uppercase; border-bottom: 2px solid #0ea5e9;
}

.glt-pro-table td {
    padding: 22px 25px; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.glt-pro-table tr:hover td { background: rgba(14, 165, 233, 0.05); }

/* Quality Icons */
.glt-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: center; }
.glt-q-icon { font-size: 3rem; color: #0ea5e9; margin-bottom: 20px; }
.glt-quality-item h4 { font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.glt-quality-item p { font-size: 0.9rem; color: #64748b; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glt-page-title { font-size: 2.5rem; }
}
.glt-contact-info-column .glt-section-title {
	font-size: 30px;
}
.glt-contact-methods iframe {
	width: 100%;
	border: 1px solid #ddd;
	padding: 3px;
	margin-top: 30px;
}

.glt-link-list li {
  position: relative;
  padding-left: 20px;
}
.glt-link-list li:before {
  content: "\f061";
  font-family: "Font Awesome 5 FREE";
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.glt-row-blog {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.glt-grid-8 {
  flex-basis: 70%;
}
.glt-row-blog .glt-grid-4 {
  flex-basis: 25%;
}
.entry-header h1 {
  font-size: 32px;
  line-height: 42px;
}
.entry-meta {
  margin: 10px 0;
}
.entry-meta a {
  margin: 0 5px;
}
.entry-meta a time {
  margin: 0 5px;
}
.entry-meta a time .updated {
  display: none !important;
}
.entry-meta a time.updated {
  display: none;
}
.post-thumbnail img {
  width: 100%;
  border: 1px solid #ddd;
  padding: 3px;
}
.widget.widget_block.widget_search {
  display: none;
}
.wp-block-group {
  border: 1px solid #ddd;
  margin-bottom: 40px;
}
.wp-block-heading {
  background-color: #37b4ec;
  color: #fff;
  padding: 15px;
  font-size: 22px;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
  text-align: left;
  padding: 15px;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.wp-block-latest-comments {
  padding: 15px;
}
.wp-block-archives-list.wp-block-archives {
  padding: 15px;
}
.wp-block-categories-list.wp-block-categories {
  text-align: left;
  padding: 15px;
}
.wp-block-categories-list.wp-block-categories li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wp-block-categories-list.wp-block-categories li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.glt-feature-box h4 {
  margin-bottom: 10px;
}
.glt-feature-box p {
  font-size: 14px;
}
        :root {
            --glt-primary: #007bff;
            --glt-bg: #0a0a0a;
            --glt-text: #ffffff;
            --glt-font: 'Inter', sans-serif;
        }

        body { margin: 0; padding: 0; font-family: var(--glt-font); }

        /* --- Hero Section Styling --- */
        .glt-hero-trad-pro {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .glt-overlay-matte {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.15) 0%, transparent 50%);
            z-index: 1;
        }

        .glt-blueprint-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
                              linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        .glt-container {
            max-width: 1170px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .glt-hero-top {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .glt-trad-badge {
            background: var(--glt-primary);
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            color: white;
        }

        .glt-trad-meta {
            color: rgba(255,255,255,0.6);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .glt-trad-meta i { vertical-align: middle; margin-right: 5px; color: var(--glt-primary); }

        .glt-hero-h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: white;
            font-weight: 800;
        }

        .glt-hero-p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            margin-bottom: 35px;
        }

        /* --- Buttons --- */
        .glt-hero-cta-group { display: flex; gap: 15px; }
        .glt-btn-trad-primary, .glt-btn-trad-outline {
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
        }
        .glt-btn-trad-primary { background: var(--glt-primary); color: white; }
        .glt-btn-trad-outline { border: 1px solid rgba(255,255,255,0.2); color: white; }
        .glt-btn-trad-outline:hover { background: white; color: black; }

        /* --- Owl Carousel Customization --- */
        .owl-dots {
            position: absolute;
            bottom: -60px;
            left: 0;
        }
        .owl-dot span {
            width: 30px !important;
            height: 3px !important;
            border-radius: 0 !important;
            background: rgba(255,255,255,0.2) !important;
        }
        .owl-dot.active span {
            background: var(--glt-primary) !important;
            width: 60px !important;
        }

        /* --- Lift Shaft Indicators --- */
        .glt-lift-shaft-line {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 40px;
            z-index: 20;
        }
        .glt-lift-shaft-line::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255,255,255,0.1);
            z-index: -1;
        }
        .glt-lift-car-indicator {
            width: 50px;
            height: 50px;
            background: #111;
            border: 1px solid var(--glt-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.5s ease;
        }
        .glt-lift-car-indicator.inactive {
            opacity: 0.3;
            border-color: rgba(255,255,255,0.1);
            transform: translateX(10px);
        }

        /* Animations */
        .owl-item.active .glt-hero-h1 { animation: fadeInUp 0.8s both; }
        .owl-item.active .glt-hero-p { animation: fadeInUp 0.8s both 0.2s; }
        
.glt-services .glt-section-title {
  color: #fff;
}

.glt-hero-slide {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.glt-hero-slide:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  opacity: .5;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
    .glt-leader-grid {
        flex-direction: column;
    }
    .glt-hero-h1 {
        font-size: 40px;
        line-height: 50px;
        font-weight: 800;
    }
    .glt-logo img {
        max-width: 130px;
    }
    .glt-nav-list{
        gap: 0 !important;
    }
}


.glt-social-minimal h4 {
  margin-bottom: 45px;
}
.glt-social-minimal a {
  color: #fff;
  background-color: #0ea5e9;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
}
#services {
	background-color: #111;
}