:root {
    --color-primary: #2a6a95;    /* Deep Blue */
    --color-secondary: #54acc8;  /* Sky Blue */
    --color-accent: #3f8caf;     /* Mid Blue */
    --color-light: #aecfdd;      /* Pale Blue */
    --bg-main: #ffffff;          /* Pure White Background */
    --bg-subtle: #f8fafc;        /* Off-white for sections */
    --text-main: #1e293b;        /* Dark Slate for readability */
    --text-light: #ffffff;
    --text-muted: #64748b;
}

body, #app, .main-content {
    background-color: var(--bg-main) !important;
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.main-smooth-wrapper {
    background: radial-gradient(at 0% 0%, rgba(84, 172, 200, 0.05) 0, transparent 50%),
                radial-gradient(at 100% 100%, rgba(42, 106, 149, 0.05) 0, transparent 50%);
    background-color: var(--bg-main);
    padding-bottom: 50px;
}

/* --- Full-Bleed Futuristic Suite --- */

.full-screen-terminal {
    width: 100vw;
    height: 100vh;
    margin-top: 50px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Corner UI Anchors */
.ui-anchor {
    position: absolute;
    z-index: 10;
    padding: 40px;
    pointer-events: none;
}
.ui-top-left { top: 0; left: 0; }
.ui-top-right { top: 0; right: 0; }
.ui-bottom-left { bottom: 0; left: 0; }
.ui-bottom-right { bottom: 0; right: 0; }

.ui-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-primary);
    opacity: 0.5;
    text-transform: uppercase;
}

/* Central Composition */
.center-content {
    width: 100%;
    max-width: 1600px;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

/* The Animated Core */
.bg-blur-orb {
    position: absolute;
    width: 80vh;
    height: 80vh;
    background: radial-gradient(circle, rgba(84, 172, 200, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: pulse-aura 10s infinite alternate;
}

@keyframes pulse-aura {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.3); opacity: 0.8; }
}

/* --- Hero Adjustments --- */
.intro-text {
    color: var(--color-primary);
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
}

/* --- Updated Glass Card to "Modern Card" --- */
.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(42, 106, 149, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 106, 149, 0.15);
    border-color: var(--color-light);
}

.system-image-frame {
    background: var(--bg-subtle);
    border-radius: 16px !important;
    border: none;
    box-shadow: none;
}

/* --- Typography & Buttons --- */
.text-white-10 { color: var(--text-light) !important; }
.text-white { color: var(--text-main) !important; }
.text-white-50 { color: var(--text-main) !important; }

.btn-custom-light {
    background-color: var(--color-primary);
    color: #ffffff !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-custom-light:hover {
    background-color: var(--color-secondary);
    box-shadow: 0 10px 20px rgba(84, 172, 200, 0.3);
}

.btn-outline-light {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.badge-innovate {
    background: rgba(42, 106, 149, 0.1);
    color: var(--color-primary);
    border: none;
}

.step-num {
    background: var(--color-light);
    color: var(--color-primary);
}

/* --- Solutions Section Enhancement --- */
.solution-image-card {
    padding: 2rem;
    border-radius: 30px;
    margin-top: 20px;
}

.solution-title {
    font-size: 25px;
    font-weight: bold;
}

.solution-desc {
    font-size: 18px;
}

.text-gradient-custom {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Workflow Enhancements --- */

/* Animated Step Numbers */
.step-num-animated {
    background: var(--color-primary);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-num-animated::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 14px;
    opacity: 0.2;
    z-index: -1;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Modern Browser Mockup (Light Theme) */
.browser-window {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 30px 60px rgba(42, 106, 149, 0.12);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.browser-header {
    background: var(--bg-subtle);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

/* Placeholder content inside mockup */
.mock-bar { height: 8px; background: var(--color-light); border-radius: 4px; opacity: 0.3; margin-bottom: 12px; }
.mock-hero { height: 120px; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); border-radius: 12px; margin-top: 15px; }

/* Interactive Hover effect for Workflow Section */
.workflow-row:hover .browser-window {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.system-image-frame {
    background: #ffffff;
    aspect-ratio: 16/12;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
}

.line-clamp.expanded {
    -webkit-line-clamp: unset;
}

.active-glow {
    box-shadow: 0 0 30px rgba(174, 207, 221, 0.3);
    border-color: var(--color-light);
}

.page-hero-section {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--color-primary);
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(at 0% 0%, var(--color-primary) 0, transparent 50%),
                radial-gradient(at 100% 0%, var(--color-secondary) 0, transparent 45%),
                radial-gradient(at 50% 100%, var(--color-accent) 0, transparent 50%);
    z-index: 1;
}

.glass-card-large {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(174, 207, 221, 0.2);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}

.member-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.member-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-light);
    transform: translateY(-12px);
}

.ceo-portrait {
    width: 100%;
    max-width: 320px;
    height: 350px;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ceo-accent-glow {
    position: absolute;
    top: 5%; left: 5%; width: 90%; height: 90%;
    background: var(--color-light);
    filter: blur(50px);
    opacity: 0.25;
    z-index: 1;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

    /* Styling for the new Offerings section */
    .offering-card {
        transition: all 0.4s ease;
    }
    .offering-card:hover {
        transform: translateY(-12px);
        background: #ffffff !important;
        border-color: var(--color-secondary) !important;
        box-shadow: 0 20px 40px rgba(42, 106, 149, 0.1) !important;
    }
    .offering-icon-box {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 18px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .feature-list-modern li {
        display: flex;
        align-items: center;
        color: var(--text-muted);
        margin-bottom: -5px;
    }

.brand-img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

.brand-logo-item:hover .brand-img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.member-avatar-box img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    padding: 3px;
}

.text-gradient-custom {
    background: linear-gradient(90deg, #ffffff, var(--color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions-con {
    background-color:#ffffff;
    padding: 0;
    border-radius: 10%;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.badge-innovate {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(174, 207, 221, 0.1);
    border: 1px solid rgba(174, 207, 221, 0.3);
    color: var(--color-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
}

.page-hero-section {
position: relative;
padding: 160px 0 100px;
background-color: var(--vlog-primary);
overflow: hidden;
}

.hero-mesh {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(at 0% 0%, var(--vlog-primary) 0, transparent 50%),
            radial-gradient(at 100% 0%, var(--vlog-secondary) 0, transparent 45%),
            radial-gradient(at 50% 100%, var(--vlog-accent) 0, transparent 50%);
z-index: 1;
}

.text-gradient-custom {
background: linear-gradient(90deg, #ffffff, var(--vlog-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.badge-innovate {
display: inline-block;
padding: 8px 20px;
border-radius: 50px;
background: rgba(174, 207, 221, 0.1);
border: 1px solid rgba(174, 207, 221, 0.3);
color: var(--vlog-light);
font-size: 0.85rem;
font-weight: 600;
}

.vlogs-section {
background: transparent;
position: relative;
z-index: 2;
}

.vlog-card-modern {
display: block;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 20px;
padding: 12px;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vlog-thumbnail-wrapper {
aspect-ratio: 16 / 9;
background: #000;
border-radius: 14px !important;
overflow: hidden;
position: relative;
}

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

.play-overlay {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(42, 106, 149, 0.4);
backdrop-filter: blur(2px);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 2;
}

.play-btn-glass {
width: 55px;
height: 55px;
background: var(--vlog-secondary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 0 20px rgba(84, 172, 200, 0.4);
}

.vlog-card-modern:hover {
background: rgba(255, 255, 255, 0.07);
border-color: var(--vlog-light);
transform: translateY(-8px);
}

.vlog-card-modern:hover .play-overlay { opacity: 1; }
.vlog-card-modern:hover .vlog-img { transform: scale(1.08); }

.vlog-badge {
position: absolute;
top: 12px; left: 12px;
background: var(--vlog-accent);
color: white;
z-index: 3;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.5px;
text-transform: uppercase;
padding: 6px 12px;
}

.vlog-title {
color: #ffffff;
font-size: 1.1rem;
line-height: 1.4;
transition: color 0.3s ease;
}

.vlog-card-modern:hover .vlog-title {
color: var(--vlog-light);
}

/* --- PAGINATION STYLING --- */
.pagination .page-link {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--vlog-light);
margin: 0 4px;
border-radius: 8px;
padding: 10px 18px;
}

.pagination .page-item.active .page-link {
background: var(--vlog-secondary);
border-color: var(--vlog-secondary);
color: white;
}

.pagination .page-link:hover {
background: rgba(255, 255, 255, 0.15);
color: #ffffff;
}

.bg-glass-alert {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--vlog-light);
}

.page-hero-section {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--v-primary) !important;
    overflow: hidden;
    z-index: 1;
}

.hero-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(at 0% 0%, var(--v-primary) 0, transparent 55%),
                radial-gradient(at 100% 0%, var(--v-secondary) 0, transparent 45%),
                radial-gradient(at 50% 100%, var(--v-accent) 0, transparent 50%);
    z-index: -1;
}

.badge-innovate {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(174, 207, 221, 0.1);
    border: 1px solid rgba(174, 207, 221, 0.3);
    color: var(--v-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-item a {
    color: var(--v-light);
    opacity: 0.7;
    transition: opacity 0.3s;
}
.breadcrumb-item a:hover { opacity: 1; }
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.2);
}

.vlog-details-section {
    background-color: var(--v-primary);
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

.media-display-wrapper {
    background: #000;
    border: 1px solid rgba(174, 207, 221, 0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.glass-card-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.date-badge-custom {
    background: linear-gradient(135deg, var(--v-accent), var(--v-primary));
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.show-rich-content {
    color: var(--v-primary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.show-rich-content h1, .show-rich-content h2, .show-rich-content h3 {
    color: var(--v-primary);
    margin-top: 2rem;
}

.btn-back {
    border-color: var(--v-primary);
    color: var(--v-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--v-primary);
    color: var(--v-primary);
    transform: translateX(-5px);
}

/* --- Reusable Feature Rows (Add to theme.css) --- */

.feature-section-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-main) 100%);
}

.system-row {
    padding: 90px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.system-row:last-child {
    border-bottom: none;
}

/* The box containing the system image */
.system-visual-container {
    background: var(--bg-subtle);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.system-row:hover .system-visual-container {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(42, 106, 149, 0.1);
    background: #ffffff;
    border-color: var(--color-light);
}

/* Feature tags and labels */
.feature-tag-label {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Custom list items for features */
.feature-list-modern li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.feature-list-modern i {
    font-size: 1.2rem;
    margin-right: 12px;
}

/* --- Contained Futuristic Minimalist CTA --- */

.cta-module-container {
    background: #ffffff;
    border: 1px solid rgba(42, 106, 149, 0.1);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(42, 106, 149, 0.05);
}

/* Internal Glow */
.cta-module-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(174, 207, 221, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

/* Specialized Terminal Button */
.btn-terminal {
    background: var(--color-primary);
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 16px 35px;
    border: none;
    border-radius: 4px; /* Slight round for a modern-tech feel */
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-terminal:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(84, 172, 200, 0.2);
}

/* --- Detail View Components --- */

/* Wrapper for CMS-generated rich text */
.rich-content-wrapper {
    line-height: 1.8;
}

.rich-content-wrapper h1,
.rich-content-wrapper h2,
.rich-content-wrapper h3 {
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Sidebar sticky adjustment */
.sticky-top {
    z-index: 10;
}

/* Override for Detail Breadcrumbs to match Light Theme */
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--color-primary);
}

/* Feature Row Active Glow for Detail Visuals */
.active-glow {
    box-shadow: 0 0 40px rgba(42, 106, 149, 0.1) !important;
    border: 1px solid var(--color-light) !important;
    background: #ffffff !important;
}

/* Reduce the hero height specifically for details to show content earlier */
.feature-section-header {
    padding: 100px 0 60px !important; /* Reduced from 160px */
}

/* A soft background for the detail call-out */
.bg-subtle-gradient {
    background: linear-gradient(90deg, var(--bg-subtle) 0%, #ffffff 100%);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Ensure breadcrumbs don't take too much vertical space */
.breadcrumb {
    font-size: 0.85rem;
}

/* Ensure the text gradient works on light backgrounds */
.text-gradient-custom {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Ensure the background for the values section feels distinct */
.bg-subtle {
    background-color: var(--bg-subtle);
}

/* Fix for the icon colors if you use Bootstrap Icons */
.bi-check2-circle {
    color: var(--color-primary);
    font-size: 1.4rem;
}

/* Custom empty state icon color */
.text-light {
    color: var(--color-light) !important;
}

/* Ensuring the terminal button looks crisp in the careers context */
.btn-terminal {
    display: inline-block;
    padding: 14px 30px;
    background: var(--color-primary);
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

/* Clean Modern Light Modal Overrides */
.modal-content.glass-card-large {
    background: #ffffff !important;
    backdrop-filter: none; /* Better readability on white */
    border: 1px solid rgba(42, 106, 149, 0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(42, 106, 149, 0.25) !important;
}

/* Updated Text and Header Colors */
.modal-header .text-white { color: var(--color-primary) !important; }
.modal-header .text-white-50 { color: var(--text-muted) !important; }
.btn-close-white { filter: brightness(0.2); } /* Makes the close button dark */

/* Custom Input Styling (Light) */
.glass-input {
    background: var(--bg-subtle) !important;
    border: 1px solid rgba(42, 106, 149, 0.1) !important;
    color: var(--text-main) !important;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: #ffffff !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 15px rgba(84, 172, 200, 0.15);
    outline: none;
    color: var(--color-primary) !important;
}

/* Modern File Upload Area (Light) */
.upload-container {
    position: relative;
    border: 2px dashed var(--color-light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-subtle);
}

.upload-container:hover {
    border-color: var(--color-secondary);
    background: rgba(84, 172, 200, 0.05);
}

.upload-placeholder {
    color: var(--text-muted);
}

.upload-placeholder i {
    color: var(--color-primary);
}

/* Quick Tips Sidebar (Light) */
.bg-glass-alert {
    background: var(--bg-subtle) !important;
    border: 1px solid rgba(42, 106, 149, 0.05);
    color: var(--text-main) !important;
}

.bg-glass-alert .text-white,
.bg-glass-alert .text-white-50 {
    color: var(--color-primary) !important;
}

.bg-glass-alert .text-white-50 {
    opacity: 0.7;
}

/* Subtle border for separation */
.border-white-10 {
    border-color: rgba(42, 106, 149, 0.1) !important;
}


.btn-apply-modern {
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid rgba(42, 106, 149, 0.2);
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-apply-modern:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 106, 149, 0.15) !important;
    border-color: var(--color-primary);
}

.btn-apply-modern i {
    transition: transform 0.3s ease;
}

.btn-apply-modern:hover i {
    transform: translateX(3px);
}


/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
    .full-screen-terminal {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
        overflow: visible;
    }

    .center-content {
        padding: 0 20px;
    }

    .display-2 {
        font-size: 38px !important;
        line-height: 1.2;
    }

    .display-5 {
        font-size: 30px !important;
    }

    .ui-anchor {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .btn-lg {
        width: 100%; /* Stack buttons on small phones */
        font-size: 1rem;
        padding: 12px 20px !important;
    }

    .glass-card {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .system-image-frame {
        height: 100px; /* Force height for mobile grid consistency */
    }

    .small-mobile {
        font-size: 13px;
    }

    .hero-img-main {
        max-height: 40vh !important;
    }
}

/* Fix for mobile browsers with dynamic navbars (iOS/Android Chrome) */
@supports (-webkit-touch-callout: none) {
    .full-screen-terminal {
        height: -webkit-fill-available;
    }
}

/* Extra responsiveness for solution images */
.solution-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .solution-row {
        margin-bottom: 3rem !important;
    }
    .solution-title {
        text-align: center;
        font-size: 22px;
    }
    .solution-desc {
        text-align: center;
        font-size: 15px;
    }
}

/* Fix Hamburger Alignment */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px; /* Matches your logo height for perfect symmetry */
    width: 32px;
    position: relative;
    cursor: pointer;
}

/* Ensure the checkbox doesn't push the lines down */
.hamburger .checkbox {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.hamburger-lines {
    height: 20px; /* Smaller, tighter height for the lines */
    width: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease-in-out;
}
