﻿/* ========================================
   1. IMPORTS & VARIABLES
======================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --base-color: #5662F7;
    --dark-gray: #262b35;
    --medium-gray: #868d98;
    --white: #ffffff;
    --primary-font: "Montserrat", "Open Sans", sans-serif;
    color-scheme: light;
}

/* ========================================
   2. RESETS & GLOBAL STYLES
======================================== */

body {
    background-color: #f5f5f5 !important;
    font-size: 16px;
    line-height: 32px;
}
body {
    padding-top: 80px;
}

.page-wrapper {
    min-height: 100vh;
    padding-top: 0;
    margin-top:0;
}

@media (max-width: 991.98px) {
    .page-wrapper {
        padding-top: 0px;
    }
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}

p {
    margin-bottom: 20px;
}

/* Typography utilities */

.section-header {
    color: var(--dark-gray);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.card-section-header {
    color: var(--dark-gray);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.section-subheader {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.page-title-extra-large h1 {
    font-size: 4.7rem;
    line-height: 4.7rem;
}

/* ========================================
   3. LAYOUT & GENERIC COMPONENTS
======================================== */

.glem-screen-border {
    background: linear-gradient(to right, #24243eaa, #302b63ff, #0f0c2988);
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 15px;
    transition: 0.5s all;
}

    .glem-screen-border:hover {
        transform: translateY(-50px);
    }

    .glem-screen-border img {
        border-radius: 15px;
        box-shadow: 1px 1px 5px #333;
    }

/* Generic accordion, progress, separator, tags, etc. */

.accordion .accordion-item .accordion-header .accordion-title i {
    top: 52%;
}

.progress-bar-style-01 .progress .progress-bar-title {
    bottom: 15px;
}

.separator-line-9px {
    height: 9px;
}

.tag-cloud a {
    padding-bottom: 9px;
    padding-top: 5px;
}

.blog-comment li .btn-reply {
    padding-bottom: 7px;
    padding-top: 5px;
}

.pagination-style-01 .page-item .page-link {
    line-height: 42px;
}

.pagination-style-01 .page-item.active .page-link {
    background: var(--dark-gray);
    color: var(--white);
}

/* Position helpers */

.bottom-minus-45px {
    bottom: -45px;
}

.right-minus-45px {
    right: -45px;
}

/* Modal overlay */

.mfp-bg {
    background: #000000;
    opacity: 0.7;
}

/* Background helpers */

.bg-gradient-sherpa-blue-black {
    background-image: linear-gradient( to right top, #23248c, #22236d, #232348, #222226, #232323 );
}

.bg-gradient-sherpa-black-blue {
    background-image: linear-gradient( to right top, #232323, #222226, #232348, #22236d, #23248c );
}

.bg-base-color-transparent {
    background-color: rgba(87, 88, 214, 0.8);
}

/* ========================================
   4. HEADER, NAVIGATION & FOOTER
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    transition: all 0.3s ease;
    background: transparent;
}

    header.sticky {
        z-index: 1050;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

        header.sticky .navbar {
            background: #ffffff !important;
        }

    header .navbar-brand {
        display: flex;
        align-items: center;
    }

.logo-image {
    max-height: 53px;
    transition: max-height 0.3s ease;
    display: block;
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease, background-color 0.3s ease;
}

header.sticky .navbar {
    padding: 0.5rem 0;
}

@media (max-width: 575px) {
    .navbar {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

@media (min-width: 992px) {
    .navbar {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }
}

header.sticky .navbar {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.navbar-nav .nav-link {
    color: #232323 !important;
    font-size: 17px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .dropdown .nav-link i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.navbar-nav .dropdown.show .nav-link i {
    transform: rotate(180deg);
}

@media (max-width: 575px) {
    header .navbar {
        background: transparent !important;
        box-shadow: none !important;
    }
}

@media (max-width: 575px) {
    header.sticky .navbar {
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1) !important;
    }
}

@media (min-width: 992px) {
    .navbar-nav .dropdown-menu,
    .navbar-nav .submenu-content {
        margin-top: 0 !important;
    }

        .navbar-nav .dropdown-menu::before,
        .navbar-nav .submenu-content::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
            background: transparent;
        }
}

body {
    padding-top: 80px; 
}

/* Adjust padding for different screen sizes */
@media (max-width: 575px) {
    body {
        padding-top: 60px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 80px;
    }
}

/* Prevent body/html overflow */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Footer */

footer .footer-logo img {
    max-height: 66px;
}

.footer-dark p,
.footer-dark a {
    color: #c2c6ce;
}

footer ul li {
    margin-bottom: 0;
}

footer .footer-header {
    font-size: 20px;
    font-weight: 600;
}

.footer-dark a:hover {
    color: var(--white);
}

/* ========================================
   5. HERO & TOP-LEVEL SECTIONS
======================================== */

/* Hero Section */

.glem-hero-header .line1,
.glem-hero-header .line2 {
    color: var(--dark-gray);
    font-size: 52px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
}

.glem-hero-header .highlight {
    color: var(--base-color);
}

.glem-hero-subheader .line1,
.glem-hero-subheader .line2 {
    color: var(--dark-gray);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.glem-hero-subheader .line1 {
    font-weight: 800;
    margin: 8px 0;
}

.glem-hero-subheader{
    line-height:30px;
}

.glem-hero-image img {
    width: 100%;
}

.glem-hero-logo {
    /*background-color: var(--white) !important;*/
    border-radius: 35px;
    margin-top: -20px;
    padding: 42px 15px;
    text-align: center;
}

    .glem-hero-logo .title {
        color: var(--dark-gray);
        font-size: 24px;
        font-weight: 600;
        padding: 8px 0 12px;
    }

    .glem-hero-logo .logo-content img {
        height: 150px;
        margin: 0 45px;
    }

/* Platform Unique Boxes & Overview */

.glem-platform-unique-box {
    padding: 42px 30px;
}

    .glem-platform-unique-box .icon {
        height: 142px;
        padding: 28px 0;
    }

        .glem-platform-unique-box .icon img {
            height: 100%;
        }

    .glem-platform-unique-box .title {
        color: var(--dark-gray);
        font-size: 24px;
        font-weight: 600;
        padding: 6px 0 28px;
    }

    .glem-platform-unique-box .description {
        color: var(--dark-gray);
        font-size: 17px;
        line-height: 28px;
    }

.glem-learn-more-wrapper {
    padding-left: 30px;
}

.glem-overview-wrapper {
    overflow: hidden;
    position: relative;
}

    .glem-overview-wrapper .bg-back {
        width: 100%;
    }

    .glem-overview-wrapper .content-front {
        bottom: 0;
        height: 100%;
        left: 20%;
        position: absolute;
        right: 0;
        text-align: center;
        top: 0;
        width: 60%;
    }

/* Request button */

.glem-request-wrapper .btn-video i.fa {
    font-size: 20px;
    margin-right: 8px;
    vertical-align: top;
}

/* Solution Industry Wrapper */

.solution-industry-wrapper {
    border-radius: 25px;
    overflow: hidden;
}

    .solution-industry-wrapper .solution-industry-box {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 340px;
        width: 600px;
    }

/* Glem platform row */

.glem-platform-row {
    border: 2px solid;
    border-radius: 15px;
    color: var(--dark-gray);
    padding: 20px;
}

/* Agent image */

.agent-img-sm {
    max-width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Play button overlay */

.play-btn-overlay {
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .play-btn-overlay:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

.hero-play-btn {
    width: 70px;
    height: 70px;
}

/* ========================================
   6. CORE TECHNOLOGY SECTION
======================================== */

.glem-core-tech-wrapper {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Search Bar */

.tech-search-bar {
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 15px;
    margin: 0 auto 30px;
    max-width: 800px;
    padding: 8px 8px 8px 20px;
    position: relative;
    z-index: 100;
}

    .tech-search-bar .form-control {
        /*background: transparent;
        border: none;
        color: var(--dark-gray);
        font-family: var(--primary-font);
        font-size: 16px;
        font-weight: 400;*/
        padding: 12px 15px;
    }

        .tech-search-bar .form-control:focus {
            box-shadow: none;
            outline: none;
        }

        .tech-search-bar .form-control::placeholder {
            color: var(--dark-gray);
        }

/* CTA button */

.btn-tech-cta {
    background: #00d9b3;
    border: none;
    border-radius: 50px;
    color: var(--dark-gray);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .btn-tech-cta:hover {
        background: #00c4a1;
        box-shadow: 0 5px 20px rgba(0, 217, 179, 0.3);
        transform: translateY(-2px);
    }

/* Background container */

.tech-bg-container {
    border-radius: 25px;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.tech-bg-image {
    display: block;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    width: 100%;
}

/* Feature cards grid */

.tech-cards-grid {
    align-content: center;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    left: 0;
    padding: 40px;
    position: absolute;
    top: 0;
    width: 100%;
}

.tech-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    transition: all 0.3s ease;
}

    .tech-feature-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
    }

.tech-card-icon {
    align-items: center;
/*    background: #f8f9fa;
*/    border-radius: 12px;
    display: flex;
    font-size: 28px;
    height: 60px;
    justify-content: center;
    margin-bottom: 20px;
    width: 60px;
    color: var(--dark-gray);
}

.tech-card-title {
    color: var(--dark-gray);
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.tech-card-description {
    color: var(--dark-gray);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

/* ========================================
   7. FEATURES SECTION
======================================== */

.glem-features-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

    .glem-features-wrapper .row {
        min-height: 600px;
    }

/* Left section - image */

.features-left {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.features-image-container {
    border-radius: 15px;
    height: 700px;
    max-width: 450px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.features-title {
    color: var(--dark-gray);
    font-family: var(--primary-font);
    font-size: 32px;
    font-weight: 600;
    left: 30px;
    line-height: 1.3;
    margin-bottom: 0;
    padding: 25px;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
}

.features-visual {
    background: var(--white);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    position: relative;
}

.features-bg-img {
    display: block;
    height: 700px;
    object-fit: cover;
    width: 100%;
}

/* Chart overlay */

.chart-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 160px;
    left: 50%;
    max-width: 280px;
    padding: 20px;
    position: absolute;
    transform: translateX(-50%);
    width: 80%;
}

.chart-bars {
    align-items: flex-end;
    display: flex;
    gap: 15px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.chart-bar {
    background: #e5e7eb;
    border-radius: 6px 6px 0 0;
    flex: 1;
    transition: all 0.3s ease;
}

.chart-bar-active {
    background: linear-gradient(to top, #d1d5db, #e5e7eb);
}

.growth-line {
    height: calc(100% - 40px);
    left: 20px;
    pointer-events: none;
    position: absolute;
    top: 20px;
    width: calc(100% - 40px);
    z-index: 3;
}

    .growth-line path {
        filter: drop-shadow(0 2px 8px rgba(74, 222, 128, 0.4));
    }

/* Right section - text */

.features-right {
    align-items: center;
    color: var(--white);
    display: flex;
    padding: 50px 45px;
}

.features-content {
    width: 100%;
}

.features-intro {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 35px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-block {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
}

    .feature-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

/* Image-based icon wrapper */

.feature-icon-wrapper .feature-icon-img {
    height: 70px;
    width: 70px;
}

.feature-text {
    flex: 1;
}

.feature-heading {
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

/* ========================================
   8. SOVEREIGNTY & COMPLIANCE
======================================== */

.sovereignty-section {
    align-items: center;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    display: flex;
    min-height: 100vh;
    padding: 100px 0;
}

.sovereignty-title {
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 50px;
}

/* Features grid inside sovereignty */

.features-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

/* Base card style */

.feature-card {
    background-position: center !important;
    background-size: cover !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

/* Card 1 */

.feature-card-1 {
    background: linear-gradient(135deg, #4169e1 0%, #6366f1 50%, #8b5cf6 100%);
    color: var(--white);
    position: relative;
}

    .feature-card-1::before {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        content: "";
        height: 400px;
        position: absolute;
        right: -20%;
        top: -50%;
        width: 400px;
    }

    .feature-card-1 .abstract-pattern {
        height: 200px;
        opacity: 0.4;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 200px;
    }

/* Card 2 */

.feature-card-2 {
    background: #0a0e15;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

    .feature-card-2 .circle-pattern {
        height: 140px;
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: 140px;
    }

.circle-outline {
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    position: absolute;
}

.circle-1 {
    height: 80px;
    left: 30px;
    top: 30px;
    width: 80px;
}

.circle-2 {
    height: 100px;
    left: 20px;
    top: 20px;
    width: 100px;
}

.circle-3 {
    height: 60px;
    right: 10px;
    top: 10px;
    width: 60px;
}

.feature-card-3,
.feature-card-4 {
    color: var(--dark-gray) !important;
}

    .feature-card-3 .card-description,
    .feature-card-4 .card-description {
        max-width: 50%;
    }

/* Card text */

.card-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    opacity: 0.9;
}

/* Certification wrapper */

.certification-wrapper {
    background-position: left center;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

    .certification-wrapper::before {
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 90% );
        content: "";
        inset: 0;
        pointer-events: none;
        position: absolute;
    }

.certification-content {
    background: var(--white);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.cert-logo {
    max-height: 60px;
    width: auto;
}

/* Stack card items (carousel) */

.swiper-slide > .container {
    min-height: 100%;
}

/* ========================================
   9. SERVICES, SOLUTIONS & CARDS
======================================== */

/* Service card height control */

.service-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    height: 700px;
    overflow: hidden;
}

.security-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

    .security-card .card-content {
        flex-grow: 1;
    }

    .security-card p {
        margin-top: auto;
        min-height: 60px;
    }

    .security-card img {
        flex-shrink: 0;
    }

.card-icon img {
    display: block;
    margin: 0 auto;
}

/* Services box */

.services-box-style-08 {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

    .services-box-style-08 .text-white,
    .services-box-style-08 p {
        color: #ffffff !important;
    }

    .services-box-style-08 p {
        line-height: 1.7;
        max-width: 90%;
    }

/* Solution page */

.star-icon {
    height: 14px;
    margin-right: 8px;
    margin-top: -2px;
    width: 14px;
}

.solution-card {
    background: rgba(35, 25, 120, 0.55);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 45px;
}

/* Feature list star alignment fix */

.feature-list {
    display: flex;
    flex-direction: column;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        line-height: 1.6;
    }

    .feature-list .star-icon {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        margin-top: 0;
        vertical-align: middle;
    }

    .feature-list li span {
        line-height: 1.6;
        display: inline-block;
    }

/* ========================================
   10. SLIDERS, TABS & LAYOUT HELPERS
======================================== */

/* LR container line swiper */

.lr-container-line .swiper .swiper-wrapper {
    align-items: stretch;
    display: flex;
}

.lr-container-line .swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

    .lr-container-line .swiper .swiper-slide > .container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

        .lr-container-line .swiper .swiper-slide > .container > .row {
            align-items: stretch;
            height: 100%;
        }

/* Keep long lists balanced */

.lr-container-line .swiper .tech-card-description,
.lr-container-line .swiper ul.list-unstyled {
    margin-bottom: 0;
}

/* Tabs */

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    width: 100%;
}

    .tab-pane.active {
        display: block;
    }

    .tab-pane .row {
        align-items: stretch !important;
    }

/* Profile image */

.profile-img {
    background-color: transparent !important;
    border-radius: 8px;
    display: block;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: center center;
    width: 100%;
}

/* Shared rows */

.row.align-items-stretch > [class*="col-"] {
    display: flex;
}

.row.align-items-stretch .card {
    flex: 1;
}

/* ========================================
   11. STACK CARD & SECTIONS
======================================== */

/* Background container */
.stack-section-bg {
    background-color: #F5F5F5;
}

/* Cards */
.glem-stack-item {
    padding: 70px;
    background-color: #EEEFF5;
    position: relative;
}

/* Background swirl image */
.stack-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
}

/* Layout */
.glem-stack-text {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Feature image */
.feature-img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* Stack card container */
.stack-card {
    position: relative;
    width: 100%;
}

/* Individual card item */
.stack-card-item {
    position: relative;
    background-color: #EEEFF5;
    border-radius: 22px;
    overflow: hidden;
}

    .stack-card-item > img.position-absolute {
        object-fit: cover;
        width: auto;
        opacity: 0.8;
    }

/* ========================================
   12. PLATFORM & ENTERPRISE SECTIONS
======================================== */

/* Platform section */
.platform-section {
    overflow: hidden;
}

.platform-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Desktop overlay */
.platform-overlay-desktop {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: 3rem;
    max-width: 40%;
}

/* Unified feature icon */
.feature-icon {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

/* Feature cards base */
.glem-platform-unique-box .title,
.glem-platform-unique-box .description {
    text-align: left;
}

/* Platform background */
.platform-bg {
    background-image: url('../images/platform-bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Platform card */
.platform-card {
    height: 500px;
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all .3s ease;
}

    .platform-card .content-box {
        max-width: 480px;
    }

/* Enterprise section */
.enterprise-section {
    padding: 60px 20px;
}

.enterprise-tabs .nav-tabs .nav-link {
    border: 0;
    background: #f7f7f7;
    font-weight: 500;
    transition: 0.25s ease;
}

    .enterprise-tabs .nav-tabs .nav-link.active {
        background: #ffffff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }

.enterprise-tabs .nav-link {
    background: transparent !important;
    color: #333 !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

    .enterprise-tabs .nav-link:hover {
        background: transparent !important;
        color: #666 !important;
    }

    .enterprise-tabs .nav-link.active {
        background: #6366F1 !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
    }

/* Feature left panel */
.feature-left {
    background-size: cover !important;
    background-position: center !important;
    border-radius: 15px;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: flex-start;
}

    .feature-left .tech-card-title {
        color: #000;
        font-weight: 600;
        line-height: 1.2;
    }

/* Feature right small cards */
.feature-card-sm {
    background: #fff;
    border-radius: 15px;
    padding: 18px 20px 60px 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 170px;
}

    .feature-card-sm h3.tech-card-title {
        margin: 0;
        font-weight: 400 !important;
        font-size: 17px;
        padding-right: 10px;
        line-height: 1.35;
        text-align: left;
    }

    .feature-card-sm img {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: 28%;
        height: auto;
    }

/* ========================================
   13. INDUSTRY & CLIENT SECTIONS
======================================== */

/* Make icons consistent */
.icon-img {
    width: 45px;
    height: 45px;
    border-radius: 5px;
}

/* Content rows (cleaner layout) */
.industry-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

/* Columns inside each row */
.col-icon {
    width: 60px;
    text-align: right;
}

.col-title {
    width: 35%;
    font-size: 20px;
    font-weight: 500;
    color: #4a4a4a;
}

.col-text {
    width: 45%;
    color: #000;
    line-height: 1.55;
}

/* Separator line */
.separator {
    border-bottom: 1px solid rgba(0,0,0,0.12);
    margin: 40px 0;
}

/* Client logo */
.client-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

    .client-logo:hover {
        opacity: 1;
    }

.glem-hero-logo .title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

/* ========================================
   14. BANNER & HERO SECTIONS
======================================== */

/* Background image full bleed */
.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: cover !important;
    z-index: 0;
}

/* White overlay card */
.banner-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Hero image centered */
.hero-img-centered {
    max-width: 120%;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero mobile background */
.hero-mobile-bg {
    display: none;
}

/* Desktop force wrapper width to 1650px */
.hero-img-wrapper {
    width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   15. BACKGROUND SECTIONS
======================================== */

.glem-bg-section {
    background: url('../images/mom-bg.jpg') center center / 100% 100% no-repeat;
}

.glem-inner-padding {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
}

.glem-line-tight {
    line-height: 1.3 !important;
}

.glem-heading-responsive {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.glem-solution-bg-section {
    background: url('../images/solution-function-quote-banner.png') center center / cover no-repeat;
}

.features-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
}

/* ========================================
   16. UTILITY CLASSES
======================================== */

.mt-n80 {
    margin-top: -80px;
}

.overflow-visible {
    overflow: visible !important;
}

.text-primary-custom {
    color: #6265FF;
}

.text-gradient {
    background: linear-gradient(90deg, #6366F1 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.star-shift-right {
    transform: translateX(80px);
}

.star-margin-adjust {
    transform: translateX(150px);
}

.row-margin-fix {
    margin-top: -50px !important;
}

.responsive-footnote {
    line-height: 1.5;
}

.first-section {
    margin-top: -100px;  
}

/* Mobile only */
/*@media (max-width: 767.98px) {
    .first-section {
        padding-top: 100px !important;
    }
}*/

@media (max-width: 767.98px) {
    .first-section {
        padding-top: 0px !important;
    }
}

/* Star icon floating */
.star-icon-floating {
    width: 40px;
    height: auto;
    position: absolute;
    top: -15px;
    left: -5px;
}

/* ========================================
   17. FLEXIBLE DEPLOYMENT PAGE
======================================== */

.trusted-section-overlap {
    margin-top: -65px;
}

.deployment-bg-section {
    background-color: #eeeef5;
}

.deployment-container {
    max-width: 1300px;
    margin: 0 auto;
}

.deployment-row {
    margin-bottom: 0;
}

.deployment-figure-left {
    margin-right: 3rem;
    margin-bottom: 0;
}

.deployment-figure-right {
    margin-left: 3rem;
    margin-bottom: 0;
}

.deployment-star {
    width: auto;
    max-width: 60px;
}

.sticky-process-header {
    top: 80px;
}

.process-step-row {
    margin-bottom: 0;
}

.parallax-section {
    margin: 3rem 0;
}

.parallax-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner-img {
    object-fit: cover;
    height: 100%;
    border-radius: 0;
}

.hero-image-wrapper {
    overflow: hidden;
}

/* ========================================
   18. VIDEO SECTION
======================================== */

.video-wrapper {
    position: relative;
}

    .video-wrapper video {
        width: 100%;
        height: auto;
    }

.video-caption {
    backdrop-filter: blur(4px);
}

/* ========================================
   19. COL XL-6 SPECIAL STYLING
======================================== */

.col-xl-6.col-lg-5.md-mb-30px img {
    border-radius: 15px;
    display: block;
    height: 700px !important;
    object-fit: cover;
    width: auto;
}

/* ========================================
   20. RESPONSIVE STYLES - LARGE DEVICES
======================================== */

/* Large desktop (>1440px) */
@media (min-width: 1440px) {
    .platform-overlay-desktop {
        margin-left: 4.5rem;
        max-width: 35%;
    }

    .feature-icon {
        width: 95px;
        height: 95px;
    }
}

@media (max-width: 1650px) {
    .hero-img-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

/* Stack card scaling */
@media (max-width: 1399.98px) {
    .stack-card-item {
        height: 600px !important;
        transform: scale(0.95);
        transform-origin: top left;
    }

    .glem-stack-item {
        padding: 50px;
    }
}

/* Laptop (1024–1440px) */
@media (max-width: 1440px) and (min-width: 1024px) {
    .platform-overlay-desktop {
        margin-left: 3rem;
        max-width: 40%;
    }
}

@media (max-width: 1199.98px) {
    .stack-card-item {
        height: 520px !important;
        transform: scale(0.9);
        transform-origin: top left;
    }

        .stack-card-item .content-box {
            max-width: 380px;
        }
}

/* Large Tablets (≤1199px) */
@media (max-width: 1199px) {
    .glem-hero-header .line1,
    .glem-hero-header .line2 {
        font-size: 44px;
        line-height: 58px;
    }

    .section-header {
        font-size: 36px;
        line-height: 50px;
    }

    .section-subheader {
        font-size: 17px;
    }

    .tech-card-description {
        font-size: 15px;
    }

    .tech-cards-grid {
        gap: 18px;
        grid-template-columns: repeat(2, 1fr);
        padding: 35px;
    }
}

/* ========================================
   21. RESPONSIVE STYLES - TABLET
======================================== */

/* Tablet (768–1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .platform-overlay-desktop h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .glem-platform-row {
        margin-top: 20px;
        padding: 20px;
    }

    .glem-platform-unique-box {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .platform-card {
        height: 380px !important;
        background-size: 100% 100% !important;
        padding-left: 30px !important;
    }

        .platform-card .content-box {
            max-width: 420px !important;
        }
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .card-section-header {
        font-size: 26px;
    }

    .profile-img {
        max-height: 350px;
    }

    .feature-img {
        max-width: 380px;
    }

    /* Stack card scaling */
    .stack-card-item {
        height: 440px !important;
        transform: scale(0.85);
        transform-origin: top left;
    }

        .stack-card-item .content-box {
            max-width: 350px;
        }

    /* Features section */
    .features-left {
        min-height: 450px;
        margin-top: 0 !important;
        padding: 0;
    }

    .features-image-container {
        position: relative;
        width: 100%;
        height: 550px;
        overflow: hidden;
    }

    .features-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .features-title {
        position: absolute;
        top: 2rem;
        left: 2rem;
        right: 2rem;
        margin: 0;
        text-align: left;
        color: #000;
        z-index: 2;
    }
}

/* Tablet small */
@media (max-width: 991.98px) and (min-width: 768px) {
    .deployment-figure-left,
    .deployment-figure-right {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* Small Tablets / Medium (≤991px) */
@media (max-width: 991px) {
    .glem-hero-header .line1,
    .glem-hero-header .line2 {
        font-size: 36px;
        line-height: 48px;
    }

    .section-header {
        font-size: 32px;
        line-height: 44px;
    }

    .section-subheader {
        font-size: 16px;
    }

    .tech-card-description {
        font-size: 14px;
        line-height: 22px;
    }

    /* Core Technology Section */
    .tech-search-bar {
        border-radius: 20px;
        flex-direction: column;
        padding: 15px;
    }

    .btn-tech-cta {
        padding: 15px 32px;
        width: 100%;
    }

    .tech-cards-grid {
        gap: 15px;
        grid-template-columns: 1fr;
        /*padding: 30px 20px;*/
    }

    .tech-bg-container {
        min-height: auto;
    }

    /*.tech-bg-image {
        min-height: 400px;
        opacity: 0.3;
    }*/

    /* Features Section */
    .glem-features-wrapper .row {
        min-height: auto;
    }

    .features-left {
        padding: 40px 30px;
    }

    .features-right {
        padding: 40px 35px;
    }

    /* Sovereignty & cards */
    .sovereignty-title {
        font-size: 36px;
    }

    .feature-card {
        padding: 30px;
    }

    .features-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .card-description {
        max-width: 70%;
    }

    .feature-card-3 .card-description,
    .feature-card-4 .card-description {
        max-width: 65%;
    }

    /* Certification responsive */
    .certification-content {
        background: rgba(255, 255, 255, 0.9);
        padding: 2rem;
    }

    .cert-logo {
        max-height: 50px;
    }

    /* Service card */
    .service-card {
        height: 500px;
        padding: 2rem;
    }

    /* Header buttons & dropdown */
    /*.header-transparent .header-button .btn {
        border-color: var(--dark-gray);
        color: var(--dark-gray);
    }

        .header-transparent .header-button .btn:hover {
            background: var(--dark-gray);
            border-color: var(--dark-gray);
            color: var(--white);
        }

    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        margin-bottom: 0;
        margin-left: -15px;
        margin-right: -15px;
        padding: 10px 45px;
        width: calc(100% + 30px) !important;
    }

        .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:last-child a {
            padding-bottom: 17px;
        }

    .services-box-style-08 {
        background-size: contain;
        height: 400px;
    }*/

    .glem-inner-padding {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .glem-heading-responsive {
        font-size: 28px !important;
    }

    .star-icon-floating {
        width: 45px;
    }

    .col-xl-6.col-lg-5.md-mb-30px img {
        height: 400px !important;
    }

    .security-section {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .sticky-process-header {
        position: static !important;
    }

    .industry-row {
        flex-direction: column;
        gap: 10px;
    }

    .col-icon,
    .col-title,
    .col-text {
        width: 100%;
        text-align: left !important;
    }

    .separator {
        margin: 30px 0;
    }

    /* Tech core section mobile */
    .tech-core-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

       /* .tech-core-section .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }*/

       /* .tech-core-section .section-header {
            font-size: 1.5rem;
            text-align: center;
        }

        .tech-core-section .section-subheader {
            font-size: 0.95rem;
            text-align: center;
        }*/

    .tech-search-bar {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin: 0 auto 1.5rem auto;
        min-width: 100% !important;
        max-width: 100% !important;
        flex-direction: row !important;
        padding: 1.5rem 1.25rem !important;
        gap: 1rem;
        align-items: center;
        min-height: 80px;
    }

        /*.tech-search-bar input.form-control {
            text-align: left !important;
            font-size: 0.95rem !important;
            line-height: 1.6 !important;
            padding: 0 !important;
            margin: 0 !important;
            border: none !important;
            width: 100% !important;
            min-width: 0 !important;
            flex: 1 !important;
            white-space: normal !important;
            overflow: visible !important;
            height: auto !important;
            background: transparent !important;
            box-shadow: none !important;
            outline: none !important;
        }*/

            .tech-search-bar input.form-control:focus {
                border: none !important;
                box-shadow: none !important;
                outline: none !important;
            }

        .tech-search-bar input::placeholder {
            color: #666 !important;
            white-space: normal !important;
            opacity: 1 !important;
        }

        .tech-search-bar .btn-tech-cta {
            width: auto !important;
            white-space: nowrap !important;
            flex-shrink: 0 !important;
            padding: 0.75rem 1.5rem !important;
            font-size: 0.9rem !important;
            align-self: center !important;
        }

    .glem-core-tech-wrapper {
        margin-top: 2rem !important;
        overflow: visible !important;
    }

    .tech-bg-container {
        min-height: auto !important;
        max-height: none !important;
        background: transparent;
    }

    /*.tech-bg-image {
        display: none;
    }*/

    .tech-cards-grid {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        padding: 0;
    }

    .tech-feature-card {
        position: relative !important;
        width: 100% !important;
        transform: none !important;
        padding: 1.5rem !important;
        background: white;
        border-radius: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
/*        margin: 0;
*/    }

    .tech-card-icon {
        margin-bottom: 1rem;
    }

        .tech-card-icon img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

    .tech-card-title {
        font-size: 22px;
        margin-bottom: 0.75rem;
    }

    .tech-card-description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0;
    }

    /* Stack card mobile */
    .stack-card-item {
        padding: 25px !important;
    }

        .stack-card-item .row {
            flex-direction: column !important;
            text-align: center;
        }

        .stack-card-item .col-lg-6 {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 !important;
        }

        .stack-card-item > img.position-absolute {
            display: none !important;
        }

    .section-header {
        font-size: 26px;
    }

    .section-subheader {
        font-size: 16px;
    }

    /* Desktop sticky behavior */
    @media (min-width: 992px) {
        .sticky-process-header {
            position: sticky !important;
            top: 120px;
            align-self: flex-start;
        }

        .position-lg-sticky {
            position: sticky !important;
            top: 120px;
            align-self: flex-start;
        }
    }
}

/* ========================================
   22. RESPONSIVE STYLES - MOBILE
======================================== */

/* Mobile devices (< 768px) */
@media (max-width: 767.98px) {
    /* Hero Section */
    .hero-banner-img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    /* Trusted By Section */
    .trusted-section-overlap {
        margin-top: 0.2rem;
        border-radius: 1rem !important;
        padding: 1.5rem !important;
    }

    /* Deployment Options */
    .deployment-bg-section {
        border-radius: 1rem !important;
    }

    .deployment-figure-left,
    .deployment-figure-right {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .deployment-star {
        max-width: 50px;
    }

    /* Text alignment on mobile */
    .deployment-row .section-header,
    .deployment-row .section-subheader {
        text-align: center !important;
    }

    /* Process Section */
    .process-step-row {
        text-align: center;
    }

        .process-step-row .col-md-2 {
            text-align: center !important;
        }

        .process-step-row .fs-20 {
            font-size: 1.1rem !important;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .process-step-row .col-md-6 {
            text-align: center;
        }

    /* Parallax Banner */
    .skrollr-parallax {
        height: 300px !important;
    }

    .header-icon {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {

    /*.first-section {
        margin-top:5px !important;
    }*/

    .glem-hero-header {
        font-size: 36px;
    }

    .glem-hero-subheader {
        line-height: 22px;
    }

    .glem-hero-header .line1,
    .glem-hero-header .line2 {
        font-size: 26px;
        line-height: 38px;
    }

    .section-header {
        font-size: 26px;
        line-height: 34px;
    }

    .section-subheader {
        font-size: 15px;
        line-height: 22px;
    }

    .tech-card-description {
        font-size: 14px;
        line-height: 22px;
    }

    /* Core Technology Section */
    .tech-search-bar {
        padding: 12px;
    }

        .tech-search-bar .form-control {
            font-size: 14px;
            padding: 10px 12px;
        }

    .btn-tech-cta {
        font-size: 15px;
        padding: 12px 28px;
    }

    .tech-feature-card {
        padding: 25px 20px;
    }

    .tech-card-icon {
        font-size: 60px;
        height: 80px;
        margin-bottom: 15px;
        width: 100%;
    }

    .tech-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .tech-card-description {
        font-size: 14px;
        line-height: 22px;
    }

    /* Features Section */
    .features-left {
        padding: 0;
    }

    .features-title {
        font-size: 26px;
        margin-bottom: 20px;
        padding: 20px;
    }

    /*.features-bg-img {
        height: 250px;
    }*/

    .chart-overlay {
        bottom: 20px;
        height: 140px;
    }

    .features-right {
        padding: 35px 25px;
    }

    .features-intro {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .features-list {
        gap: 25px;
    }

    .feature-block {
        gap: 15px;
        padding-bottom: 25px;
    }

    .feature-heading {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 15px;
        line-height: 26px;
    }

    /* Sovereignty section */
    .sovereignty-section {
        padding: 60px 0;
    }

    .sovereignty-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .feature-card {
        min-height: 180px;
        padding: 30px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-description {
        font-size: 15px;
        max-width: 100%;
    }

    /* Service card */
    .service-card {
        height: 400px;
        padding: 1.5rem;
    }

    /* Services box */
    .services-box-style-08 {
        height: 300px;
    }

    /* Hero page title */
    .page-title-extra-large h1 {
        font-size: 40px;
        line-height: 46px;
    }

    /* Stack cards */
    .stack-card-item {
        height: 380px !important;
        transform: scale(0.8);
        transform-origin: top left;
    }

        .stack-card-item .content-box {
            margin: 0 auto;
            max-width: 90%;
            text-align: center;
        }

    /* Hero section background override */
    .hero-section {
        background: none !important;
    }

    .glem-inner-padding {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .glem-heading-responsive {
        font-size: 24px !important;
    }

    .star-icon-floating {
        width: 38px;
        top: -5px;
    }

    .col-xl-6.col-lg-5.md-mb-30px img {
        height: 250px !important;
    }

    .feature-img {
        max-width: 310px;
        margin-bottom: 20px;
    }

    .banner-card {
        padding: 30px;
    }

        .banner-card h2 {
            font-size: 24px;
            line-height: 1.3;
        }

    .video-section-title {
        font-size: 2rem !important;
    }

    .glem-stack-item {
        padding: 30px;
    }

    .platform-card {
        height: 250px !important;
        background-size: 100% 100% !important;
        background-position: top center !important;
        padding: 15px 15px 15px 15px !important;
        display: flex;
        align-items: flex-end;
    }

        .platform-card .content-box {
            width: 100% !important;
            text-align: left !important;
            padding-left: 0 !important;
            padding-right: 130px !important;
        }

    .platform-overlay-mobile {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        padding-top: 3rem;
        width: 100%;
        text-align: center !important;
    }

    .second-container {
        margin-top: 20px !important;
        padding: 25px 15px !important;
    }

    .glem-platform-unique-box {
        text-align: left !important;
        padding: 1.5rem 0.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .section-header {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .feature-list {
        gap: 15px;
    }

        .feature-list li {
            font-size: 15px;
            gap: 10px;
        }

        .feature-list .star-icon {
            width: 12px;
            height: 12px;
        }

    .icon-sm-80 {
        width: 80% !important;
        height: auto !important;
    }

    .mt-mobile--50 {
        margin-top: -38px !important;
    }

    /* Hero mobile fixes */
    .hero-section {
        background: none !important;
        min-height: 55vh !important;
        position: relative;
    }

        .hero-section .container {
            min-height: 55vh !important;
        }

    .hero-mobile-bg {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: fill !important;
        object-position: center;
        z-index: 1 !important;
    }

    .hero-section .container,
    .hero-section .hero-content {
        position: relative !important;
        z-index: 5 !important;
    }

    .hero-content {
        padding-top: 150px !important;
    }

    .section-header {
        margin-bottom: 12px !important;
    }

    .section-subheader {
        margin-bottom: 8px !important;
    }

    /* Platform unique box fixes */
    .glem-platform-unique-box {
        padding: 24px 18px;
        text-align: left;
    }

        .glem-platform-unique-box .icon {
            height: auto !important;
            padding: 0 0 12px !important;
        }

        .glem-platform-unique-box .title {
            font-size: 20px;
            line-height: 1.3;
            margin-top: 8px;
            margin-bottom: 10px;
            padding: 0 !important;
        }

        .glem-platform-unique-box .description {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 14px;
        }

    /* Overview wrapper mobile */
    .glem-overview-wrapper .content-front {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        padding: 20px 15px !important;
        text-align: center !important;
    }

    .glem-overview-wrapper .bg-back {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 20px !important;
        border-radius: 16px !important;
    }

    .glem-overview-wrapper .content-front > img:first-child {
        width: 140px !important;
        height: auto !important;
        margin: 0 auto 20px auto !important;
        display: block !important;
    }

    .glem-overview-wrapper .section-header {
        font-size: 26px !important;
        line-height: 34px !important;
        margin-top: 10px !important;
    }

    .glem-overview-wrapper .section-subheader {
        font-size: 15px !important;
        line-height: 22px !important;
        padding: 0 10px !important;
    }

    .glem-overview-wrapper .btn {
        margin: 25px auto 20px auto !important;
        display: inline-block !important;
        text-align: center !important;
    }

    .glem-screen-border {
        margin-top: 25px !important;
        padding: 0 10px !important;
        width: 100% !important;
    }

        .glem-screen-border img {
            width: 100% !important;
            height: auto !important;
            border-radius: 12px !important;
            display: block !important;
        }

    /* Mobile slider arrows */
    .slider-one-slide-prev-1.d-lg-none, .slider-one-slide-next-1.d-lg-none {
        background: rgba(255, 255, 255, 0.95) !important;
        width: 45px !important;
        height: 45px !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .slider-one-slide-prev-1.d-lg-none {
        left: 15px !important;
    }

    .slider-one-slide-next-1.d-lg-none {
        right: 15px !important;
    }

        .slider-one-slide-prev-1.d-lg-none i,
        .slider-one-slide-next-1.d-lg-none i {
            color: #333 !important;
            font-size: 18px !important;
        }

        .slider-one-slide-prev-1.d-lg-none:active,
        .slider-one-slide-next-1.d-lg-none:active {
            background: rgba(87, 88, 214, 0.9) !important;
        }

            .slider-one-slide-prev-1.d-lg-none:active i,
            .slider-one-slide-next-1.d-lg-none:active i {
                color: #fff !important;
            }

    .swiper {
        padding-bottom: 50px !important;
    }

    .swiper-pagination {
        bottom: 10px !important;
    }

    .swiper-pagination-bullet {
        background: #fff !important;
        opacity: 0.5 !important;
        width: 10px !important;
        height: 10px !important;
        margin: 0 5px !important;
    }

    .swiper-pagination-bullet-active {
        opacity: 1 !important;
        background: #5758d6 !important;
        width: 24px !important;
        border-radius: 5px !important;
    }

    .container.bg-light {
        padding: 1.5rem !important;
    }

    .slider-one-slide-prev-1.d-lg-none {
        left: 10px !important;
    }

    .slider-one-slide-next-1.d-lg-none {
        right: 10px !important;
    }

    .p-50px {
        padding: 30px !important;
    }
}

/* ========================================
   23. RESPONSIVE STYLES - SMALL MOBILE
======================================== */

/* Extra small devices (< 576px) */
@media (max-width: 575.98px) {
    .hero-banner-img {
        max-height: 250px;
    }

    .deployment-star {
        max-width: 40px;
    }

    .parallax-banner {
        height: 300px !important;
    }

    .skrollr-parallax {
        height: 250px !important;
    }

    /*.tech-core-section .section-header {
        font-size: 1.25rem;
    }*/

    .tech-search-bar {
        /*padding: 1.25rem 1rem !important;*/
        gap: 0.75rem;
        min-height: 75px;
    }

        /*.tech-search-bar input.form-control {
            font-size: 0.85rem !important;
            line-height: 1.5 !important;
        }*/

        .tech-search-bar .btn-tech-cta {
            font-size: 0.85rem !important;
            padding: 0.625rem 1.25rem !important;
        }

    .tech-feature-card {
        padding: 1.25rem !important;
    }

    .tech-card-icon {
        display: flex;
        justify-content: flex-start; 
        align-items: center; 
    }

        .tech-card-icon img {
            width: 60px;
            height: 60px;
        }

}

@media (max-width: 576px) {
    .card-section-header {
        font-size: 22px;
        line-height: 1.25;
    }

    .profile-img {
        max-height: 250px;
    }

    .responsive-footnote {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .client-logo {
        max-width: 90px;
    }

    .col-title {
        font-size: 18px;
    }

    .col-text {
        font-size: 15px;
    }

    .client-logo {
        max-width: 80px;
    }

    footer .row > [class*="col-"]:not(:first-child) {
        text-align: center;
    }

    .icon-mobile-size {
        max-width: 60px;
        height: auto;
    }

    .glem-overview-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .icon-mobile-size {
        max-width: 60px;
        height: auto;
        width: auto;
        max-height: 60px;
        object-fit: contain;
        -webkit-transform: translateZ(0);
        flex-shrink: 0;
    }

    .glem-platform-unique-box .icon {
        display: flex;
        justify-content: flex-start; 
        align-items: center;
    }

    .glem-overview-wrapper .bg-back {
        display: none;
    }

    .glem-overview-wrapper .content-front {
        position: relative;
        z-index: 1;
    }

    .glem-overview-section .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .security-section {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

        .security-section .security-card {
            padding: 1.5rem !important;
        }
}


@media (min-width: 576px) {
    .glem-overview-section {
        background-image: none !important;
    }
}

@media (max-width: 575.98px) {
    .stack-card-item {
        height: 320px !important;
        transform: scale(0.75);
        transform-origin: top left;
    }

        .stack-card-item .content-box {
            max-width: 100%;
            text-align: center;
        }
}

/* Extra small mobile (≤480px) */
@media (max-width: 480px) {
    .glem-hero-header .line1,
    .glem-hero-header .line2 {
        font-size: 22px;
        line-height: 30px;
    }

    .section-header {
        font-size: 22px;
        line-height: 30px;
    }

    .section-subheader {
        font-size: 14px;
        line-height: 20px;
    }

    .tech-card-description {
        font-size: 13px;
        line-height: 20px;
    }

    .feature-img {
        max-width: 260px;
    }

    .star-icon-floating {
        width: 18px;
        top: -8px;
    }

    .feature-card-sm {
        min-height: 145px;
        padding: 14px 16px 65px 16px;
    }

        .feature-card-sm h3.tech-card-title {
            font-size: 14.5px;
        }

        .feature-card-sm img {
            width: 40%;
        }

    .feature-list li {
        font-size: 14px;
    }

    .stack-card-item {
        height: 250px !important;
    }

    .glem-heading-responsive {
        font-size: 22px !important;
    }
}

/* ========================================
   24. DESKTOP-SPECIFIC STYLES
======================================== */

/* Keep desktop styling unchanged */
@media (min-width: 992px) {
    .swiper {
        padding-bottom: 0 !important;
    }

    .star-shift-right {
        transform: none;
    }

    .star-margin-adjust {
        transform: translateX(600px);
    }

    .row-margin-fix {
        margin-top: -60px !important;
    }
}

/* Desktop arrow styles */
@media (min-width: 768px) {
    .star-shift-right {
        transform: none;
    }
}

/* ========================================
   25. PRINT & ACCESSIBILITY
======================================== */

/* Print Styles */
@media print {
    .parallax-banner {
        height: 400px !important;
        page-break-inside: avoid;
    }

    .skrollr-parallax {
        height: 400px !important;
        page-break-inside: avoid;
    }

    .deployment-row {
        page-break-inside: avoid;
    }

    .solution-card {
        page-break-inside: avoid;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .parallax-banner {
        background-attachment: scroll !important;
    }

    .skrollr-parallax {
        background-attachment: scroll !important;
    }

    [data-anime] {
        animation: none !important;
        transition: none !important;
    }
}

.hero-mobile-bg {
    width: 100%;
    height: auto; 
}

.menu-img {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
    .hero-mobile-bg {
        height: 700px; 
        object-fit: cover; 
        object-position: center;
    }

    body {
        background: white !important;
        background-color: white !important;
    }

    .container-fluid.py-5 {
        padding-top: 0px !important;
    }
}

@media (min-width: 992px) {
    .slider-one-slide-prev-1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .slider-one-slide-next-1 {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

@media (max-width: 991px) { 
    .tech-bg-container {
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .navbar .navbar-nav .dropdown.open.show .dropdown-menu {
        display: block !important;
        -webkit-animation: show-animation 0.5s !important;
        animation: show-animation 0.5s !important;
    }
}

@media (max-width: 767px) {
    .mobile-top-spacing {
        margin-top: 50px;
    }

    .mega-menu img.img-fluid {
        display: none !important;
    }
}

.responsive-banner-height {
    height: 550px;
}

@media (max-width: 767.98px) {
    .responsive-banner-height {
        height: 350px; 
    }
}

@media (max-width: 767px) {
    .custom-mobile-pt {
        padding-top: 26px !important;
        padding-left: 10px !important;
        padding-right: 10px !IMPORTANT;
    }
}