/* Custom properties for ultra-premium glassmorphism feel */
:root {
    --primary-color: rgb(13, 110, 253);
    --primary-color-hover: rgb(67, 43, 189);
    --navbar-bg-dark: rgba(20, 20, 25, 0.75);
    --navbar-bg-light: rgba(255, 255, 255, 0.8);
    --blur-strength: 16px;
}
.text-purple{
    color: #0d6efd;
}
.bg-purple{
    background: var(--primary-color);
}
.btn-purple{
    background: var(--primary-color);
    color:#fff;
}
.btn-purple:hover{
    background: var(--primary-color-hover);
    color:#fff;
}

body {
    transition: background-color 0.4s ease, color 0.4s ease;
    font-family: 'Antonio', sans-serif; /* Highly recommended premium font */
}

/* Glassmorphism Logic for Dark and Light Modes */
[data-bs-theme="dark"] .navbar-glass,
[data-bs-theme="dark"] .mega-menu-glass {
    background-color: var(--navbar-bg-dark);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
}

[data-bs-theme="light"] .navbar-glass,
[data-bs-theme="light"] .mega-menu-glass {
    background-color: var(--navbar-bg-light);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
}

/* Mega Menu Alignment */
.dropdown-menu {
    top: 100% !important;
    margin-top: 15px !important;
}

/* Elite Mega Menu Hover Effects */
.mega-item {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega-item:hover {
    background-color: rgba(13, 110, 253, 0.08) !important;
    transform: translateY(-2px);
}

/* Tracking tweaks for elite aesthetic */
.tracking-wide {
    letter-spacing: -0.03em;
}
.tracking-wider {
    letter-spacing: 0.08em;
}

/* Smooth active transition for links */
.nav-link {
    position: relative;
    font-weight: 500;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}
/* Core Layout Structural Setup */
.hero-wrapper {
    background-color: #050508; /* Ultra deep dark base layout */
    padding-top: 120px;
}
.z-3 { z-index: 3; }
.max-w-lg { max-width: 540px; }
.max-w-md { max-width: 420px; }
.unselectable { user-select: none; pointer-events: none; }

/* -------------------------------------------------------
 * PARALLAX GRAPHICS LAYER LOGIC
 * ------------------------------------------------------- */
.parallax-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%; /* Extra bottom space buffer allows layout movement safely */
    pointer-events: none;
}

/* Background Wave/Mesh Texture */
.layer-mesh {
    background-image: url('../images/bg-img.png'); /* Match image_0e6f26.jpg base flow style */
    background-size: cover;
    background-position: center bottom;
    filter:opacity(0.5);
    z-index: 1;
}

/* Floating Character Layer Positioning */
.layer-character {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layer-character img {
    height: 85vh;
    object-fit: contain;
    opacity: 0.85;
    mix-blend-mode: lighten; /* Flawlessly blends PNG glows into mesh backgrounds */
    transform: translateY(-5%);
    opacity:0.1;
}

/* -------------------------------------------------------
 * ELITE INTERACTIVE DESIGN COMPONENTS
 * ------------------------------------------------------- */
/* Typography */
.tracking-tight { letter-spacing: -0.04em; line-height: 1.15; }
.tracking-wider { letter-spacing: 0.12em; font-size: 0.8rem; }

/* Action Buttons */
.btn-elite-link {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-elite-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.btn-elite-link:hover::after {
    transform: scaleX(1);
}
.hover-white:hover { color: #ffffff !important; }

/* Image Display Cards */
.preview-img-card {
    width: 95px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
}

/* Glass Pill Badges */
.badge-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.25s ease;
}
.badge-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Massive Title Backdrop Stamp */
.massive-hero-title {
    font-size: clamp(4rem, 11vw, 15rem); /* Flawlessly scales to full viewport width */
    line-height: 0.8;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.95;
    margin-bottom: -15px;
}

/* Bottom Ticker Info Items */
.footer-ticker-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-ticker-link:hover {
    color: #ffffff;
}
/* Core Structural & Lighthouse Accessibility Tokens */
/* Core Layout Styling */
.services-section {
    background-color: var(--bs-body-bg);
}

.tracking-widest { letter-spacing: 0.15em; }
.max-w-sm { max-width: 310px; }
.abstract-badge { width: 56px; height: 56px; }

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-slow-spin {
    display: inline-block;
    animation: slowSpin 12s infinite linear;
}

/* Avatar Row Stacking layout */
.avatar-row-stack img {
    object-fit: cover;
    transition: transform 0.25s ease;
}
.avatar-row-stack img:hover {
    transform: translateY(-4px);
    z-index: 10;
}
.ms-n2 { margin-left: -0.65rem !important; }

/* Adjust row spacing on desktop to accommodate the offset cards safely */
@media (min-width: 992px) {
    .services-stagger-container {
        padding-bottom: 3rem;
    }
}

/* -------------------------------------------------------
 * ELITE CARD THEMING (Replicating image_0df75c.jpg)
 * ------------------------------------------------------- */
.card-service-elite {
    min-height: 380px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    cursor: pointer;
}

/* Maintain subtle micro-hover lift without breaking the core layout offset */
.card-service-elite:hover {
    transform: translateY(-6px);
}

/* Dark Theme Specific Card Layouts */
.card-dark-glass {
    background: linear-gradient(145deg, #0f1015 0%, #15171e 100%);
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.card-dark-glass:hover {
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    border-color: rgba(97, 13, 253, 0.3) !important;
}

/* Light Theme Specific Card Layouts */
.card-light-glass {
    background: linear-gradient(145deg, #f8f9fa 0%, #edf0f5 100%);
    border-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.card-light-glass:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(69, 13, 253, 0.2) !important;
}

[data-bs-theme="light"] .card-light-glass {
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f7 100%);
}
[data-bs-theme="light"] .card-dark-glass {
    background: linear-gradient(145deg, #181a21 0%, #111216 100%);
}
/* Outer Frame Setup - Generates the soft gray canvas borders seen on the left/right */
.process-outer-wrapper {
    background-color: #f4f4f4; /* Matches the outer page frame color precisely */
    width: 100%;
}

.process-inner-canvas {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.z-2 { z-index: 2; }
.tracking-widest { letter-spacing: 0.12em; }
.layout-tag { font-size: 0.8rem; }
.main-process-title { font-size: 2.5rem; }

/* -------------------------------------------------------
 * PERSISTENT BACKGROUND WIRE GRID LAYER
 * ------------------------------------------------------- */
.elite-column-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.grid-line-row {
    --bs-gutter-x: 0;
}
.elite-column-grid .col {
    border-color: rgba(0, 0, 0, 0.04) !important; /* Ultra fine clean line */
    background-color: transparent;
}

/* -------------------------------------------------------
 * PRECISE HORIZONTAL STAIRCASE GRID ALIGNMENT
 * ------------------------------------------------------- */
.process-capsule {
    width: 80px;
    height: 150px; /* High aspect ratio vertical capsule design */
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px;
}

.badge-number {
    position: relative;
    z-index: 3;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.capsule-mesh-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.node-text-block {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Desktop Only: Strict Step Stagger Cascade offsets */
@media (min-width: 992px) {
    .node-stair-1 { margin-top: 0rem; }
    .node-stair-2 { margin-top: 3rem; }
    .node-stair-3 { margin-top: 6rem; }
    .node-stair-4 { margin-top: 9rem; }
}

/* -------------------------------------------------------
 * LOWER BRAND DETAILS & HERO GRAPHIC
 * ------------------------------------------------------- */
.mascot-image-wrapper {
    max-width: 250px;
    aspect-ratio: 1 / 1;
}

.custom-mantra-text {
    font-weight: 400;
    color: #8c8c8c !important;
}

/* Quote Button Architecture */
.btn-elite-quote {
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #111111;
    border: none;
}
.quote-arrow-circle {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.btn-elite-quote:hover .quote-arrow-circle {
    transform: rotate(45deg);
}

/* -------------------------------------------------------
 * RESPONSIVE RULES: SILENT GRID MASKING
 * ------------------------------------------------------- */
@media (max-width: 991px) {
    /* Instantly collapse background styling elements on dynamic Viewports */
    .process-outer-wrapper {
        background-color: transparent; /* Drops outer white margin bars natively */
        padding: 0 !important;
    }
    
    .process-inner-canvas {
        border-radius: 0 !important; /* Flattens internal container completely */
        border: none;
    }
    
    /* Normalize layout node structures back to standard flex flow cards */
    .step-node {
        margin-top: 0 !important;
    }
    
    .process-capsule {
        height: 80px; /* Turns vertical tubes into friendly rounded blocks */
    }
}
/* Custom Utility Limits */
.max-w-xl { max-width: 620px; }
.text-light-muted { color: #b5b5b5; }

/* -------------------------------------------------------
 * FEATURE SERVICE BLOCK ARCHITECTURE (Row 1)
 * ------------------------------------------------------- */
.feature-service-card {
    min-height: 460px;
    background: #121212;
}

.service-mini-tag {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    background-color: #ff3b30 !important;
}

.pill-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    color: #e0e0e0;
}

.elite-read-more {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}
.elite-read-more:hover {
    opacity: 0.8;
}

/* Graphic Overlay and Media Pulse Triggers */
.service-mesh-wrapper {
    position: relative;
}
.service-graphic {
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-service-card:hover .service-graphic {
    transform: scale(1.03);
}

.media-center-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(18,18,18,0.4), transparent);
}

.play-pulse-btn {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding-left: 4px; /* Optical center alignment */
}
.play-pulse-btn i {
    color: #121212 !important;
}

/* -------------------------------------------------------
 * SYMMETRICAL DUAL CARDS (Row 2)
 * ------------------------------------------------------- */
.sub-service-card {
    background-color: #f9f9f9 !important;
    border-color: rgba(0,0,0,0.06) !important;
    min-height: 480px;
}

.card-visual-top {
    height: 280px;
    background-color: #eaeaea;
}
.card-img-trend {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-metric-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #111111;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 8px 16px;
    border-radius: 12px;
    letter-spacing: -0.02em;
}

.pill-tag-dark {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #555555;
    font-weight: 500;
}

/* -------------------------------------------------------
 * RECTANGULAR BRAND FOOTER CARD (Row 3)
 * ------------------------------------------------------- */
.brand-footer-service-card {
    background-color: #ffffff;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}
.brand-icon-frame {
    width: 56px;
    height: 56px;
}

/* -------------------------------------------------------
 * RESPONSIVE ADAPTIVE BALANCING RULES
 * ------------------------------------------------------- */
@media (max-width: 991px) {
    .min-h-md-300 {
        min-height: 280px;
    }
    .sub-service-card {
        min-height: auto;
    }
    .card-visual-top {
        height: 280px;
    }
}

/* -------------------------------------------------------
 * MATTE DARK CARAPACE & ABSTRACT MESH BACKDROP
 * ------------------------------------------------------- */
.testimonial-dark-wrapper {
    background-color: #0b0b0d; /* Pure premium organic midnight base */
    min-height: 520px;
    z-index: 1;
}

/* Replicating the distinct color waves seen behind text in image_f6db91.jpg */
.testimonial-mesh-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
}

.text-light-muted {
    color: #a1a1a6 !important;
}

.border-translucent-light {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.text-uppercase-xs {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
}

/* -------------------------------------------------------
 * TYPOGRAPHY & LEFT BLOCK DETAILS
 * ------------------------------------------------------- */
.section-hero-title {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.text-glow {
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* -------------------------------------------------------
 * SLIDER & QUOTE TEXT ARCHITECTURE
 * ------------------------------------------------------- */
.quote-icon-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    margin-top: -1.5rem;
    height: 3.5rem;
}

.custom-quote-text {
    letter-spacing: -0.01em;
    /* color: #f5f5f7 !important; */
    font-weight: 300 !important;
}

/* Symmetrical desktop boundary separation line */
@media (min-width: 992px) {
    .border-right-split {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 2.5rem;
    }
}

/* -------------------------------------------------------
 * PREMIUM SLIDER PAGINATION & NAV BUTTONS
 * ------------------------------------------------------- */
.custom-indicator-dot {
    width: 28px !important;
    height: 3px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    border-radius: 20px;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.custom-indicator-dot.active {
    background-color: #ffffff !important;
}

.nav-circle-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.15);
    background: transparent;
    transition: all 0.25s ease;
}
.nav-circle-btn:hover {
    background: #0d6efd;
    border-color: #ffffff;
    color: #0b0b0d !important;
}

/* -------------------------------------------------------
 * RESPONSIVE HANDLING
 * ------------------------------------------------------- */
@media (max-width: 991px) {
    .testimonial-dark-wrapper {
        min-height: auto;
    }
    .custom-quote-text {
        font-size: 1.25rem !important;
    }
}

/* Full Width Wrapper */
.blog-fullwidth-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* -------------------------------------------------------
 * TYPOGRAPHY AND CORE HEADLINE ALIGNMENT
 * ------------------------------------------------------- */
.blog-main-headline {
    font-size: 2.85rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.blog-header-subtext {
    color: #55555a !important;
    font-weight: 400;
    max-width: 320px;
}

.btn-blog-view-all {
    background-color: #111111;
    border: none;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------
 * INTELLIGENT SCROLL TRACK SYSTEM (Fluid Responsive Layout)
 * ------------------------------------------------------- */
.blog-scroll-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Strips default scrollbar lines on Firefox */
    -webkit-overflow-scrolling: touch; /* Native iOS momentum physics */
}

.blog-scroll-viewport::-webkit-scrollbar {
    display: none; /* Strips default webkit scrollbar frames on Chrome/Safari */
}

.blog-flex-track {
    display: flex;
    gap: 1.5rem; 
    width: 100%;
}

/* Individual Content Node Dimensions */
.blog-article-node {
    flex: 0 0 calc(25% - 1.125rem); /* Perfect 4-column distribution on desktop viewports */
    min-width: 0;
}

/* High Aspect Ratio Media Windows matching image_f671c1.jpg */
.blog-media-frame {
    width: 100%;
    aspect-ratio: 1.18 / 1; 
    background-color: #f6f6f6;
}

.blog-img-transform {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.group-anchor:hover .blog-img-transform {
    transform: scale(1.025);
}

.article-title-text {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #111111 !important;
}

.article-meta-data {
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

/* -------------------------------------------------------
 * DYNAMIC MEDIA RESPONSIVE BREAKPOINTS
 * ------------------------------------------------------- */
@media (max-width: 1200px) {
    .blog-article-node {
        flex: 0 0 calc(33.333% - 1rem); /* 3 columns on mid-sized screens */
    }
}

@media (max-width: 991px) {
    .blog-main-headline {
        font-size: 2.25rem;
    }
    .blog-article-node {
        flex: 0 0 calc(50% - 0.75rem); /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .blog-article-node {
        flex: 0 0 85%; /* Elegant peek-and-swipe layout on mobile */
    }
    .blog-flex-track {
        gap: 1rem;
    }
}
/* -------------------------------------------------------
 * MATTE BLACK CONTAINER SHELL
 * ------------------------------------------------------- */
.footer-dark-card {
    background-color: #0b0b0d !important; /* Premium sleek organic black option */
    border: none;
}

/* -------------------------------------------------------
 * TYPOGRAPHIC BRAND STAMP (Matching image_f61102.png)
 * ------------------------------------------------------- */
.brand-giant-text {
    font-size: 8.5vw; /* Perfectly matching the giant scalably bound footprint */
    font-weight: 900 !important;
    letter-spacing: -0.05em !important; /* Super tight tracking layout rule */
    line-height: 0.85;
    color: #ffffff;
}

.registered-trademark-symbol {
    font-size: 2.5vw;
    vertical-align: super;
    position: relative;
    top: -0.5em;
    margin-left: 0.05em;
    font-weight: 400;
}

/* -------------------------------------------------------
 * CONTACT LOGIC & LINKS
 * ------------------------------------------------------- */
.footer-primary-email {
    font-size: 2rem;
    font-weight: 700;
    transition: opacity 0.25s ease;
}
.footer-primary-email:hover {
    opacity: 0.85;
    color: #ffffff;
}

.text-muted-gray {
    color: #74747c !important;
}

.footer-meta-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.footer-meta-value {
    color: #e8e8ed !important;
    font-weight: 400;
}

.hover-white:hover {
    color: #ffffff !important;
}

/* -------------------------------------------------------
 * BRUTALIST PILL-SHAPED SOCIAL BUTTONS
 * ------------------------------------------------------- */
.btn-pill-social {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    padding: 0.35rem 0.95rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.02em;
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn-pill-social:hover {
    background-color: #ffffff !important;
    color: #0b0b0d !important;
    border-color: #ffffff !important;
}

/* -------------------------------------------------------
 * SIMPLE MATRIX DIRECTORY LINKS
 * ------------------------------------------------------- */
.footer-links-list a {
    color: #e8e8ed;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.2s ease;
}
.footer-links-list a:hover {
    color: #ffffff;
}

/* -------------------------------------------------------
 * BOTTOM METADATA UTILITY ROW
 * ------------------------------------------------------- */
.border-dark-translucent {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-horizontal-services {
    font-size: 0.78rem;
}
.footer-horizontal-services .list-inline-item {
    margin-right: 1.5rem;
    color: #74747c;
    transition: color 0.2s ease;
    cursor: default;
}
.footer-horizontal-services .list-inline-item:hover {
    color: #ffffff;
}

.extra-small-timestamp {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------
 * RESPONSIVE VIEWPORT BREAKPOINTS
 * ------------------------------------------------------- */
@media (max-width: 991px) {
    .brand-giant-text {
        font-size: 12vw;
    }
    .footer-primary-email {
        font-size: 1.5rem;
    }
    .footer-horizontal-services .list-inline-item {
        display: block;
        margin-bottom: 0.5rem;
    }
}