/* ══════════════════════════════════════════════════════════════════════
   GLOBAL INITIALIZATION AND VARIABLE TOKENS
   ══════════════════════════════════════════════════════════════════════ */
:root {
    --gi-red: #ff0000;
    --gi-red-dark: #ff0000;
    --gi-dark: #1a1a1a;
    --gi-gray: #4d4d4d;
    --gi-light-gray: #f5f6f7;
    --gi-border: #e8eae9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    zoom: 1.1; /* Chrome, Edge, Safari */
}

body {
      font-family: 'Open Sans', sans-serif;
            font-weight: 400;
    color: var(--gi-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.gi-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red { color: var(--gi-red) !important; }
.font-bold { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════
   NAVBAR SECTION BRANDING DESIGN
   ══════════════════════════════════════════════════════════════════════ */
.gi-navbar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--gi-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
}

.gi-nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    height: 100%;
}

.gi-navbar-brand {
    display: flex;
    align-items: center;
    gap: 100px;
    text-decoration: none;
    position: relative;
    top: 5px;
}

.logo-fallback-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gi-red);
}

.logo-text-simulation {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text-simulation .g-letter {
    font-size: 1.4rem;
    color: var(--gi-red);
    font-weight: 700;
}

.logo-text-simulation .sub-brand {
    font-size: 0.65rem;
    color: var(--gi-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gi-nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.gi-nav-link {
    text-decoration: none;
    color: var(--gi-dark);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gi-nav-link i {
    font-size: 0.65rem;
    color: #888;
}

.gi-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gi-search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gi-dark);
}

.btn-nav-devis {
    background: var(--gi-red);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════════════
   1. HERO CONTAINER LAYOUT WITH FLOATING STATISTICS BAR
   ══════════════════════════════════════════════════════════════════════ */
.home-hero {
    position: relative;
    background-color: white;
    height: 540px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center left;
    z-index: 1;
}

.home-hero .gi-container {
}

.hero-text-block {
    max-width: 550px;
}

.hero-headline {
    font-size: 3rem;
    padding-bottom: 10px;

    color: #808080 !important;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 900;
    width: 130% !important;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hero-paragraph {
    font-size: 0.85rem;
    color: var(--gi-gray);
    line-height: 1.7;
    width: 120% !important;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: -20px;
    display: flex;
    gap: 15px;
}

.btn-filled-red {
    background: var(--gi-red);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
}

.btn-outline-dark {
    border: 1px solid var(--gi-dark);
    color: var(--gi-dark);
    font-family: 'Open Sans', sans-serif;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
}

.hero-floating-metrics-bar {
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 20px 50px;
    border: 1px solid var(--gi-border);
    gap: 40px;
}

.metric-col {
    text-align: center;
}

.metric-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: var(--gi-red);
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--gi-gray);
    text-transform: uppercase;
    font-weight: 500;
    width: 200%;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: var(--gi-border);
}


/* ══════════════════════════════════════════════════════════════════════
   2. ABOUT US SECTION WITH GRID GRID & CARDS
   ══════════════════════════════════════════════════════════════════════ */
.gi-about-section {
    padding: 120px 0 80px 0;
    background-color: #ededef; /* Soft background to pop up cards */
}

.gi-about-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Content Design */
.about-left-content {
    flex: 1;
    max-width: 500px;
}

.about-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    color: #808080;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: none;
}

.about-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gi-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--gi-red);
}

.about-text {
    font-size: 0.9rem;
    color: var(--gi-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Right Content & Grid Design */
.about-right-content {
    flex: 1.2;
    width: 40% !important;
    margin-right: 180px !important;
}

.solutions-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gi-dark);
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Solution Cards Styling */
.solution-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-radius: 16px;
    min-height: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.solution-card h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.solution-card .card-icon i {
    font-size: 2.4rem;
}

/* Alternating Card Color Skins */
.card-white {
    background-color: #ffffff;
    border: 1px solid var(--gi-border);
}
.card-white h5 {
    color: var(--gi-dark);
}
.card-white .card-icon i {
    color: var(--gi-red);
}

.card-red {
    background-color: var(--gi-red);
    border: 1px solid var(--gi-red);
}
.card-red h5 {
    color: #ffffff;
}
.card-red .card-icon i {
    color: #ffffff;
}

/* Discover Link Layout */
.discover-more-wrapper {
    text-align: right;
    margin-top: 25px;
}

.btn-discover-more {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gi-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--gi-red);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-discover-more:hover {
    color: var(--gi-red-dark);
    border-color: var(--gi-red-dark);
}

/* Responsive Handling */
@media (max-width: 991px) {
    .gi-about-grid {
        flex-direction: column;
        gap: 50px;
    }
    .about-left-content, .about-right-content {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════════════════
   3. PRODUCTS GRID SECTION ("Les produits")
   ══════════════════════════════════════════════════════════════════════ */
.gi-products-section {
    padding: 80px 0 100px 0;
    background-color: #ffffff;
}

/* Header Text elements */
.products-header {
    margin-bottom: 50px;
}

.products-main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.6rem;
    color: #808080;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 30px;
}

.products-partners-intro {
    font-size: 0.95rem;
    color: var(--gi-gray);
    max-width: 900px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}

/* Partner brand colors as requested by image */
.products-partners-intro .brand-abb { color: #ff0000; font-weight: 600; }
.products-partners-intro .brand-schneider { color: #3d854e; font-weight: 600; }
.products-partners-intro .brand-drivesystem { color: var(--gi-dark); font-weight: 600; }

/* The 5-Column layout grid structure */
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

/* Product Cards standard styling handles */
.product-card {
    background: #ffffff;
    border: 1px solid var(--gi-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--gi-border);
}

.product-card-body {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gi-dark);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.product-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 3px;
    background-color: var(--gi-red);
}

.product-card-description {
    font-size: 0.8rem;
    color: #777777;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Circle Icon Trigger inside card footer */
.product-card-footer {
    display: flex;
    justify-content: center;
}

.btn-card-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gi-red);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.product-card:hover .btn-card-arrow {
    background-color: var(--gi-red);
    color: #ffffff;
    border-color: var(--gi-red);
}

/* Bottom Actions container setup */
.products-action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.products-action-wrapper .btn-filled-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 14px 30px;
}

.products-action-wrapper .btn-outline-dark {
    border-radius: 12px;
    padding: 14px 30px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.products-action-wrapper .btn-outline-dark:hover {
    background-color: var(--gi-dark);
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (TABLETS & MOBILE DEVCES)
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .products-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-action-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .products-action-wrapper a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   4. SECTORS & REALISATIONS SECTION DESIGN
   ══════════════════════════════════════════════════════════════════════ */
.gi-sectors-realisations-section {
    padding: 80px 0;
    background-color: #f5f6f7;
}

.sectors-realisations-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.text-right-aligned {
    text-align: right;
    border-bottom: none !important;
}
/* Titles standardization formatting */
.section-panel-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: #808080;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    padding-bottom: 6px;
}
 .red-underline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: var(--gi-red);
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 3px solid var(--gi-red);
    padding-bottom: 6px;
}

/* Left panel sectors sizing rules */
.sectors-panel {
    flex: 1;
    max-width: 420px;
}

.sectors-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sector-mini-card {
    background: #ffffff;
    border: 1px solid var(--gi-border);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    min-height: 115px;
}

.sector-mini-card span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gi-dark);
    margin-top: 8px;
    line-height: 1.2;
}

.sector-icon-box i {
    font-size: 1.8rem;
    color: var(--gi-red);
}

.mini-card-line {
    width: 16px;
    height: 3px;
    background-color: var(--gi-red);
    margin-top: 8px;
}

/* Right layout design implementations */
.realisations-panel {
    flex: 1.6;
    display: flex;
    flex-direction: column;
}

.realisations-header-text {
    text-align: right;
    margin-bottom: 25px;
}

.realisations-header-text .section-panel-title {
    margin-bottom: 8px;
}

.realisations-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gi-dark);
}

/* Carousel Window Frame Setup */
.realisations-slider-container {
    position: relative;
    border-radius: 32px;
    overflow-x: hidden;
    overflow-y: visible;  /* allow card to bleed below */
    height: 80%;
}

.realisations-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.realisation-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px;
    display: flex;
    align-items: flex-end;
}

.realisation-slide-wrapper {
    position: relative;
    flex: 0 0 100%;  /* match whatever your slide sizing is */
        margin-bottom: 100px;  /* space for the card that bleeds below */

}

.realisation-slide {
    width: 100%;
    height: 480px;  /* your image height */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    /* remove overflow: hidden if it's set */
}

.slide-floating-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px 20px;
    width: 80%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    position: absolute;
    bottom: -40px;   /* bleeds below the image */
    left: 5%;
    z-index: 10000;
}

.slide-badge-tag {
    color: var(--gi-red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 6px;
}

.slide-floating-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gi-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.slide-floating-card p {
    font-size: 0.78rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.slide-badge-line {
    width: 25px;
    height: 3px;
    background-color: var(--gi-red);
}

/* Arrows controls structure mapping rules */
.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: var(--gi-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background 0.3s, color 0.3s;
}

.slider-arrow-btn:hover {
    background: var(--gi-red);
    color: #ffffff;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Active pagination tracking layout design hooks */
.slider-dots-indicator {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.realisation-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.realisation-dot.active-dot {
    background: var(--gi-red);
    transform: scale(1.3);
}

/* Button UI styling handles transformation rules */
.realisations-bottom-action {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn-filled-red-pill {
    background: var(--gi-red);
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 0, 26, 0.2);
    transition: background 0.3s;
}

.btn-filled-red-pill:hover {
    background: var(--gi-red-dark);
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT MEDIA QUERY BREAKPOINTS
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .sectors-realisations-flex {
        flex-direction: column;
        gap: 50px;
    }
    .sectors-panel, .realisations-panel {
        max-width: 100%;
        width: 100%;
    }
    .realisations-header-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .sectors-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .realisations-slider-container {
        height: 480px;
    }
}


/* ══════════════════════════════════════════════════════════════════════
   5. CERTIFICATIONS TIMELINE SECTION DESIGN
   ══════════════════════════════════════════════════════════════════════ */
.gi-certifications-section {
    padding: 80px 0 120px 0;
    background-color: #ffffff;
    position: relative;
}

.certifications-header {
    margin-bottom: 60px;
}

.certifications-main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    color: #808080;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.certifications-sub {
    font-size: 1.1rem;
    color: var(--gi-dark);
    font-weight: 600;
}

/* Timeline Track Layout Structure */
.timeline-container {
    position: relative;
    margin-top: 40px;
    padding: 0 40px;
}
.timeline-connecting-line {
    position: absolute;
    top: 59px;
    left: 70px;
    right: 70px;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0,
        transparent 20px,
        var(--gi-red) 20px,
        var(--gi-red) calc(100% - 20px),
        transparent calc(100% - 20px),
        transparent 100%
    );
}

.timeline-connecting-line::before,
.timeline-connecting-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 20px;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--gi-red) 0 3px,
        transparent 3px 6px
    );
}

.timeline-connecting-line::before {
    left: 0;
}

.timeline-connecting-line::after {
    right: 0;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Timeline node header layout elements */
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-node-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}

/* Red indicator drop vertical connection link marker */
.timeline-node-header::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background-color: var(--gi-red);
}

.timeline-year {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--gi-red);
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-badge-circle {
    width: 52px;
    height: 52px;
    background-color: var(--gi-red);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(230, 0, 26, 0.3);
}

/* White Bottom-accented Cards styling definitions */
.timeline-card {
    background: #ffffff;
    border: 1px solid var(--gi-border);
    border-bottom: 5px solid var(--gi-red); /* Accent border line from mockup */
    border-radius: 16px 16px 12px 12px;
    padding: 24px;
    width: 100%;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.card-brand-tag {
    font-size: 0.72rem;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.card-award-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.award-visual-icon i {
    font-size: 3.5rem;
    line-height: 1;
}

.award-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-heading {
    font-size: 0.99rem;
    color: var(--gi-dark);
    line-height: 1.4;
    text-transform: uppercase;
}
.award-heading .font-bold {
    font-weight: 900;
}

.award-brand-signature {
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Specialized Card Internal Alignment structures */
.text-logo-layout {
    align-items: center;
    gap: 20px;
}

.brand-huge-text {
    font-size: 2.8rem;
    letter-spacing: -1px;
    line-height: 1;
}

/* Schneider Green text simulation styles */
.schneider-layout {
    align-items: center;
    gap: 20px;
}

.schneider-brand-simulation {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #3d854e; /* Premium Schneider Electric Green Brand Handle */
}

.schneider-brand-simulation .schneider-main {
    font-size: 1.3rem;
}

.schneider-brand-simulation .schneider-sub {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT RESPONSIVENESS OVERRIDES
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .timeline-connecting-line,
    .timeline-container::before,
    .timeline-container::after,
    .timeline-node-header::after {
        display: none; /* Hide lines on compressed viewports */
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-container {
        padding: 0;
    }
    
    .timeline-node-header {
        margin-bottom: 15px;
    }
    
    .timeline-card {
        min-height: auto;
    }
}