/*----------------------------------------------------------------------------------*/
/*---------------------------------icon_product_menu--------------------------------*/

.products_left_menu {
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    height: 100vh;
    /*    left: 0px;*/
    right: 0px;
    width: 50px;
    /*transition: transform 6s;*/
    transition-duration: 5s;
    /*transition-duration: 120ms;*/
    transition-duration: 1s, 5s;
    /*transition-duration: 10s, 30s, 230ms;*/
    display:none;
}

.products_left_menu.active {
    width: 100%;
}

.products_icon_list_menu {
    margin: 5px 0px;
    padding: 5px;
    list-style: none;
    box-shadow: var(--ma-depth16);
    background-color: #000000;
    border-radius: 32px;
    position: absolute;
    right: 0px;
    z-index: 20;
}

.products_icon_list_menu li {
    padding: 0px 0px 0px 0px;
    margin: 5px 5px;
    border-bottom: 1px dashed #bdbdbd;
    display: flex;
}

.products_icon_list_menu li a {
    display: inline-block;
    padding: 10px;
    font-size: var(--ma-subject-title);
    line-height: 20px;
    border-radius: 4px;
    color: var(--ma-type-primary);
    margin-bottom: 5px;
}

.products_icon_list_menu li a i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.products_icon_list_menu li:last-child {
    border-bottom: 0px;
}

.products_icon_list_menu li:last-child a {
    margin-bottom: 0px;
}

.products_icon_list_menu li a:hover,
.products_icon_list_menu li a:focus,
.products_icon_list_menu li a:active,
.products_icon_list_menu li a.active {
    color: var(--ma-grey20);
    background-color: #f5f5f55e;
    outline: none;
}

.products_icon_list_menu li a i {
    content: "";
    background-size: cover;
    height: 25px;
    width: 25px;
    background-position: center;
    display: inline-block;
    background-repeat: no-repeat;
}


/*---------------------------------------------*/

.left_products_box {
    display: block;
    box-shadow: var(--ma-depth16);
    background-color: var(--ma-tag-black);
    border-radius: 10px 0px 0px 10px;
    position: absolute;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    padding-right: 70px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 10px solid var(--ma-tag-black);
    /*transition: transform 6s;*/
    transition-duration: 5s;
    /*transition-duration: 120ms;*/
    transition-duration: 1s, 5s;
    /*transition-duration: 10s, 30s, 230ms;*/
    right: -200%;
    max-height: 100vh;
    max-height: calc(100vh - 350px);
    min-height: 332px;
}

.left_products_box.active {
    right: 0px;
}

.left_product_title {
    font-size: 20px;
    padding: 10px 0px;
    color: var(--ma-white);
    font-weight: bold;
}

.product_box {
    display: block;
    padding: 0px;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: var(--ma-body-text);
    line-height: 20px;
    color: var(--ma-tag-black);
}

.product_box:hover,
.product_box:focus,
.product_box:active {
    color: var(--ma-type-primary);
}

.product_box .pro_img_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center !important;
    justify-content: center !important;
    height: 80px;
    overflow: hidden;
}

.product_box .pro_img_box img {
    width: auto;
    max-width: 80px;
    transition: transform .9s;
}

.product_box span.pro_name {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: var(--ma-white);
}

.product_box span.pro_tag_line {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    color: var(--ma-white);
}

.product_box:hover .pro_img_box img,
.product_box:focus .pro_img_box img,
.product_box:active .pro_img_box img {
    transform: scale(1.2);
}

.product_box:hover span.pro_name,
.product_box:focus span.pro_name,
.product_box:active span.pro_name {
    color: var(--ma-type-primary);
}

.intro-item.flickity-bg-lazyloaded.is-selected:after {
    content: "";
    background-color: #000000;
    opacity: 0.3;
}

.close_btn {
    display: none;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    background-color: #000000;
    /* Deep dark background */
    color: var(--ma-white);
    padding-top: 110px;
    padding-bottom: 3rem;
}

.hero-main-card {
    border: none;
    border-radius: 1rem;
    background-color: #030708;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-main-card img.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay for the Main Image */
.hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

@media (min-width: 992px) {
    .hero-overlay {
        padding: 3rem;
    }
}

.hero-title {
    /*font-size: 2.5rem;
    font-weight: 700;*/
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--ma-white);
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Feature Cards (Right Side) */
.hero-feature-card {
    background-color: #111b21;
    /* Slightly lighter dark */
    color: var(--ma-white);
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    transition: transform 0.2s ease, background-color 0.2s;
    height: 100%;
    display: flex;
    /* Ensure flex behavior */
    flex-direction: column;
}

.hero-feature-card:hover,
.hero-feature-card:focus,
.hero-feature-card:active {
    background-color: #1a262d;
    transform: translateY(-2px);
    cursor: pointer;
    color: var(--ma-white);
}

.hero-badge {
    display: inline-block;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ma-white);
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 18px;
    font-family: var(--ma-font-semibold);
    font-size: var(--ma-metadata);
}

/* Slider Controls */
.hero-slider-dots {
    display: flex;
    align-items: center;
}

.hero-dot {
    height: 8px;
    width: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.hero-dot.active {
    background-color: var(--ma-white);
    width: 20px;
    border-radius: 4px;
}

.hero-controls {
    display: flex;
    gap: 0.5rem;
}


/* Stats Row */

.hero-stat-item {
    text-align: center;
}

.hero-stat-item i {
    font-size: 2.5rem;
    /* display-6 equivalent */
    margin-bottom: 1rem;
    display: block;
}

.hero-stat-value {
    color: var(--ma-white);
    margin-bottom: 0;
}


.hero-stat-label {
    font-size: var(--ma-body-text);
    color: var(--ma-white);
    opacity: 0.85;
}

.hero-client-logo {
    height: 80px;
    width: auto;
}

.hero-award-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hero-pr-logo {
    /*    height: 14px;*/
    width: auto;
}

/* Hero Semantic Refactoring */
.hero-section .container-fluid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}

@media (min-width: 992px) {
    .hero-section .container-fluid {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

.hero-main-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.hero-section .object-fit-cover {
    object-fit: cover;
}

.hero-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.hero-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-slider-btn.prev {
    border: 1px solid var(--ma-white);
    background-color: transparent;
    color: var(--ma-white);
    margin-right: 0.5rem;
}

.hero-slider-btn.prev:hover,
.hero-slider-btn.prev:focus,
.hero-slider-btn.prev:active {
    background-color: var(--ma-white);
    color: #000;
}

.hero-slider-btn.next {
    background-color: var(--ma-white);
    color: #000;
    border: none;
}

.hero-slider-btn.next:hover,
.hero-slider-btn.next:focus,
.hero-slider-btn.next:active {
    background-color: #f0f0f0;
}

.hero-sub-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    height: 100%;
}

.hero-col-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature-card.flex-grow {
    flex-grow: 1;
}

/* Card Typography & Spacing */
.hero-card-title {
    margin-bottom: 0.5rem;
    color: var(--ma-white);
}

.hero-card-check-text {
    margin-bottom: 0;
    font-size: var(--ma-metadata);
    color: var(--ma-white);
    opacity: 0.55;
    letter-spacing: 0.35px;
}

.hero-quote {
    font-size: var(--ma-metadata);
    color: var(--ma-white);
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.55;
    letter-spacing: 0.35px;
}

.hero-mt-auto {
    margin-top: auto;
}

.hero-recognition-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hero-arrow-btn {
    background-color: var(--ma-white);
    color: #000;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.hero-arrow-btn:hover,
.hero-arrow-btn:focus,
.hero-arrow-btn:active {
    transform: translateY(2px);
}

.hero-card-news-text {
    font-size: var(--ma-metadata);
    margin-top: auto;
    margin-bottom: 0;
    color: var(--ma-white);
    opacity: 0.55;
}

.hero-card-pr-text {
    font-size: var(--ma-metadata);
    margin-top: auto;
    margin-bottom: 1rem;
    color: var(--ma-white);
    opacity: 0.55;
}

.hero-award-badge-wrapper {
    padding-top: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero-award-title {
    font-size: var(--ma-body-text);
    margin-bottom: 0.5rem;
    color: var(--ma-white);
}

.hero-award-img-wrapper {
    margin-top: auto;
    overflow: hidden;
    border-radius: 0.5rem;
}

.award-badge-pos {
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem;
    z-index: 2;
}

.hero-feature-card.overflow-relative {
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

.hero-stats-row .col-md-2 {
    margin-bottom: 1.5rem;
    /* mb-4 for mobile */
}

@media (min-width: 768px) {
    .hero-stats-row .col-md-2 {
        margin-bottom: 0;
    }
}

/* ── HERO BANNER SLIDER ───────────────────────────────────────── */
/* Slide background panels - absolutely positioned inside hero-main-card */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.75s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay must sit above slides */
.hero-overlay {
    z-index: 2;
}

/* Give hero-main-card a minimum height since slides are absolute */
.hero-main-card {
    min-height: 420px;
}

@media (min-width: 992px) {
    .hero-main-card {
        min-height: 520px;
    }
}

/* Slide text content blocks - stacked, only active is shown */
.hero-slide-content {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    animation: heroFadeUp 0.5s ease both;
}

.hero-slide-content.active {
    display: flex;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide category tag (Products / Solutions / Technology) */
.hero-slide-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #FF8500;
    background: rgba(255, 133, 0, 0.15);
    border: 1px solid rgba(255, 133, 0, 0.35);
    border-radius: 4px;
    padding: 3px 10px;
    width: fit-content;
}

/* Slide description paragraph */
.hero-slide-desc {
    color: var(--ma-white);
    margin: 0;
    max-width: 480px;
    opacity: 0.85;
}

/* Slide CTA button */
.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--ma-type-secondary);
    color: var(--ma-white) !important;
    font-size: var(--ma-body-text);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    width: fit-content;
    transition: background 0.2s ease;
    display:none;
}

.hero-slide-cta:hover,
.hero-slide-cta:active,
.hero-slide-cta:focus {
    background: var(--ma-type-secondaryhoverdark);
    color: var(--ma-white) !important;
}

/* Make dot clicks feel natural */
.hero-dot {
    cursor: pointer;
}

/***************** presence-section **********************************************************************************************/
/* 1. Main Section Background */
.presence-section {
    min-height: 85vh;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(106.4deg, #02234A 0%, #022A59 0.01%, #023168 21.72%, #023876 65.24%, #033F85 91.2%, #034694 149.27%);
}

.presence-title {
    color: var(--ma-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.presence-subtitle {
    color: var(--ma-white);
    opacity: 0.85;
    margin-bottom: 0;
    font-size: var(--ma-body-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* 2. Map Background */
.map-background {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url(../../images/pages/index/new_dark_index/world_map.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

/* 3. Upper Shadow Overlay */
.upper-shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.6) 30%, transparent 100%);
}

/* 4. Content Container */
.presence-content {
    position: relative;
    z-index: 10;
}

/* Map Dots */
.map-hotspots-container {
    position: relative;
    width: 100%;
    height: 350px;
    z-index: 5;
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--ma-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-dot:hover,
.map-dot:focus,
.map-dot:active {
    transform: scale(1.4);
    background-color: #00AEEF;
    box-shadow: 0 0 0 8px rgba(0, 174, 239, 0.2);
}

/* Dot Positions */
.map-dot--na {
    top: 25%;
    left: 20%;
}

.map-dot--sa {
    top: 60%;
    left: 28%;
}

.map-dot--eu {
    top: 35%;
    left: 48%;
}

.map-dot--af {
    top: 55%;
    left: 52%;
}

.map-dot--in {
    top: 45%;
    left: 68%;
}

.map-dot--ap {
    top: 50%;
    left: 80%;
}

/* Stats Card Glassmorphism */
.presence-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--ma-white);
    text-align: center;
}


/* Border utility for desktop removed - used semantic classes */

.presence-stat-number {
    margin-bottom: 0.25rem;
    color: var(--ma-white);
}

.presence-stat-text {
    color: var(--ma-white);
    margin-bottom: 0;
    opacity: 0.60;
}

/* Presence Semantic Refactoring */
.presence-header-row {
    margin-bottom: 3rem;
}

.presence-subtitle-wrapper {
    align-items: center;
}

@media (min-width: 768px) {
    .presence-subtitle-wrapper {
        text-align: right;
    }
}

.map-hotspots-container {
    position: relative;
    width: 100%;
    height: 350px;
    z-index: 5;
    display: none;
}

@media (min-width: 768px) {
    .map-hotspots-container {
        display: block;
    }
}


.presence-stats-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.presence-stat-col {
    position: relative;
}

@media (min-width: 768px) {
    .presence-stat-col:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 768px) {
    .hero-main-card {
        min-height: 420px;
    }
    .hero-title {
        font-size: var(--ma-page-title);
    }
}

/***************** who-we-are-section **********************************************************************************************/
/* ---------- Who are we? --------- */

.who-we-are-section {
    background-color: var(--ma-bg-light);
    padding: 80px 0;
}

.who-nav-link {
    border-radius: 50rem !important;
    padding: 0.5rem 1.5rem !important;
}

.who-we-are-section ul.values_list {
    padding-left: 20px;
    margin-top: 10px;
}

    .who-we-are-section ul.values_list li {
        font-size: var(--ma-body-text);
        color: var(--ma-grey130);
        margin-bottom: 10px;
    }


.who-side-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.custom-pills {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.custom-pills .nav-link {
    transition: all 0.3s ease;
    padding: 10px 30px 10px 30px !important;
    background-color: var(--ma-bg-light);
    color: var(--ma-grey130);
    font-size: var(--ma-body-text);
}

.custom-pills .nav-link.active,
.custom-pills .nav-link:hover:not(.active),
.custom-pills .nav-link:focus:not(.active) {
    background-color: Var(--ma-type-primary);
    color: var(--ma-white);
    outline: none;
}


.who-stat-number {
    font-size: var(--ma-hero-title);
    color: var(--ma-grey130);
    margin-bottom: 0;
    font-weight: 400;
}

.who-stat-label {
    letter-spacing: 2px;
    text-transform: uppercase;
}






/* Tab-synced images - only active one shown */
.who-tab-image {
    display: none;
    animation: fadeInImg 0.4s ease;
}

.who-tab-image.active {
    display: block;
}

@keyframes fadeInImg {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/***************** technologies-section **********************************************************************************************/
/* -- Technologies Section Styles -- */

.technologies-section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.tech-header-right {
    text-align: left;
}

@media (min-width: 992px) {
    .tech-header-right {
        text-align: right;
    }
}

.tech-explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-explore-btn:hover,
.tech-explore-btn:focus,
.tech-explore-btn:active {
    background-color: var(--ma-type-primaryhoverdark);
    color: var(--ma-white);
}



/* Tech List Interactive Item */
.tech-item {
    border-top: 1px solid #e0e0e0;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-title {
    margin-bottom: 0;
    transition: color 0.3s;
}

/* Hover state - darken title before click */
.tech-item:hover .tech-title,
.tech-item:focus .tech-title,
.tech-item:active .tech-title {
    color: var(--ma-type-primary);
}

.tech-desc {
    /* Grid trick: animates from 0fr to 1fr - no layout shift, GPU-composited */
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Required: inner wrapper acts as the collapsible grid cell */
.tech-desc-inner {
    overflow: hidden;
    min-height: 0;
    padding-top: 0;
    transition: padding-top 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active State */
.tech-item.active .tech-title {
    color: var(--ma-type-primary);
    font-weight: 500;
}

.tech-item.active .tech-desc {
    grid-template-rows: 1fr;
    opacity: 1;
}

.tech-item.active .tech-desc-inner {
    padding-top: 12px;
}



.tech-learn-btn {
    border: 1px solid #343a40;
    border-radius: 50rem;
    padding: 5px 15px;
    font-size: var(--ma-body-text);
    color: var(--ma-grey130);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tech-learn-btn:hover,
.tech-learn-btn:focus,
.tech-learn-btn:active {
    background-color: var(--ma-grey130);
    color: var(--ma-white);
}



/* Right Side Image Display */
.tech-image-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: #000;
}

.tech-image-display.active {
    opacity: 1;
    z-index: 2;
}

.tech-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

/* Logo Grayscale */
.grayscale-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.grayscale-logo:hover,
.grayscale-logo:focus,
.grayscale-logo:active {
    filter: grayscale(0%);
    opacity: 1;
}



.tech-display-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}



/***************** industries-section **********************************************************************************************/
/* -- Industries Accordion Section -- */

.industries-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--ma-tag-black);
}

/*---------*/
.industry-sidebar-badge {
    border: 1px solid #6c757d;
    color: white;
    padding: 5px 15px;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: var(--ma-metadata);
    opacity: 0.85;
    border-radius: 25px;
    letter-spacing: 1px;
}

.industry-sidebar-title {
    color: var(--ma-white);
}

.industry-sidebar-desc {
    color: var(--ma-white);
    opacity: 0.85;
    margin-bottom: 3rem;
}

.industry-view-all-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-view-all-btn:hover,
.industry-view-all-btn:focus,
.industry-view-all-btn:active {
    background-color: var(--ma-type-primaryhoverlight);
    color: var(--ma-white);
}

/* Dark Gradient Overlay */
.acc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.4s;
}

.industry-bg-healthcare {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/industries/healthcare.png');
}

.acc-overlay-healthcare {
    background: #4dff4d4d;
}

.industry-bg-gov {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/industries/government.png');
}

.acc-overlay-government {
    background: #0077ff66;
}

.industry-bg-mfg {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/industries/manufacturing.png');
}

.acc-overlay-manufacturing {
    background: #0ae7ff52;
}

.industry-bg-energy {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/industries/energy.png');
}

.acc-overlay-energy {
    background: #FFF70f52;
}

.industry-bg-edu {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/industries/education.jpg');
}

.acc-overlay-education {
    background: #0051ff52;
}

.acc-item:hover .acc-overlay,
.acc-item:focus .acc-overlay,
.acc-item:active .acc-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%) !important;
}


/* The Flex Container */
.accordion-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Individual Strips */
.acc-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    /*border-right: 1px solid rgba(255, 255, 255, 0.1);*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.acc-item:hover,
.acc-item:focus,
.acc-item:active {
    flex: 5;
}

.accordion-wrapper:hover .acc-item:not(:hover),
.accordion-wrapper:focus .acc-item:not(:hover),
.accordion-wrapper:active .acc-item:not(:hover) {
    filter: brightness(0.6);
}

/*---------*/
.acc-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.acc-label i {
    font-size: 2.5rem;
    color: var(--ma-white);
}

.acc-label span {
    font-size: var(--ma-body-text);
    color: var(--ma-white);
}


.acc-item:hover .acc-label,
.acc-item:focus .acc-label,
.acc-item:active .acc-label {
    opacity: 0;
    transform: translate(-50%, 20px);
}


/*---------*/
.acc-content {
    position: relative;
    z-index: 3;
    padding: 4rem;
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}

.acc-item:hover .acc-content,
.acc-item:focus .acc-content,
.acc-item:active .acc-content {
    opacity: 1;
    transform: translateY(0);
}

/*---------*/
.industry-badge {
    display: inline-block;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ma-white);
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 18px;
    font-family: var(--ma-font-semibold);
    font-size: var(--ma-metadata);
}

.industry-acc-title {
    color: var(--ma-white);
    margin-bottom: 1rem;
}

.industry-acc-desc {
    margin-bottom: 1.5rem;
    color: var(--ma-white);
    opacity: 0.85;
}

.industry-learn-btn {
    border: 1px solid #f8f9fa;
    /* btn-outline-light */
    color: #f8f9fa;
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.industry-learn-btn:hover,
.industry-learn-btn:focus,
.industry-learn-btn:active {
    background-color: #f8f9fa;
    color: #000;
}




/*---------*/
.industry-sidebar-col {
    background-color: var(--ma-tag-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    border-left: 1px solid rgba(108, 117, 125, 0.25);
}

.industry-sticky-content {
    position: sticky;
    top: 100px;
    z-index: 1;
}



@media (max-width: 992px) {
    .accordion-wrapper {
        display: block;
        width: 100%;
        height: unset;
        overflow: unset;
    }

    .acc-label {
        display: none;
    }

    .acc-content {
        opacity: 1;
        max-width: unset;
        transform: unset;
    }

    .acc-item .acc-overlay,
    .acc-item .acc-overlay,
    .acc-item .acc-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%) !important;
    }
}

@media screen and (max-width: 768px) {
    .acc-content
    {
        padding:40px;
    }
}

/***************** project-solutions-section **********************************************************************************************/
/* -- Project Solutions Stack Section -- */

.project-solutions-section {
    min-height: 100vh;
    position: relative;
    background-color: var(--ma-tag-black);
    scroll-snap-type: y mandatory;
}

.sticky-menu-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    padding-left: 20px;
}


/* Nav List Styling */
.project-nav {
    margin: 0px;
    /*padding: 20px 20px;*/
}

.project-nav .nav-item {
    display: block;
    padding: 20px 0px;
    cursor: pointer;
    border-bottom: 1px solid var(--ma-grey150);
    position: relative;
    transition: all 0.3s;
}

.project-nav .nav-item:last-child {
    border-bottom: 0px;
}

.nav-text {
    font-size: var(--ma-header);
    color: var(--ma-white);
    opacity: 0.50;
}

.project-nav .nav-item.active .nav-text {
    color: var(--ma-white);
    padding-left: 10px;
    opacity: 1;
}

.project-nav .nav-item.active .nav-number {
    color: Var(--ma-type-primary);
    opacity: 1;
}



.project-cards-container {
    display: block;
}

.project-card-full {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 80px 100px;
    background-color: var(--ma-tag-black) !important;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    align-items: center !important;
    scroll-snap-align: start;
}

.project-bg-citizen {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/Citizen_Identity.png');
}

.project-bg-finance {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/Secure_Finance.png');
}

.project-bg-iot {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/Iot_Connectivity.jpg');
}

.project-bg-travel {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/Modern_Travel.png');
}

.project-bg-access {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/Acces_Control.png');
}

.project-bg-safety {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/projects/public_safety.png');
}

/* Gradient Overlay for Readability */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, #000000 30%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Card Internals */
.solution-card-badge {
    display: inline-block;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ma-white);
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 24px;
    padding: 5px 15px;
    margin-bottom: 18px;
    font-family: var(--ma-font-semibold);
    font-size: var(--ma-metadata);
}

.solution-card-title {
    color: var(--ma-white);
    margin-bottom: 15px;
}

.solution-card-desc {
    color: var(--ma-white);
    opacity: 0.85;
    margin-bottom: 15px;
}

.solution-divider {
    border-color: #6c757d;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100px;
    opacity: 1;
}

/* --------------- */
.solution-feature-col {
    position: relative;
    width: 100%;
}

.solution-feature-col i {
    font-size: 2rem;
    color: var(--ma-white);
    margin-bottom: 1rem;
    display: block;
}

.solution-feature-col h6 {
    color: var(--ma-white);
    margin-bottom: 15px;
}

.solution-feature-col p {
    color: var(--ma-white);
    opacity: 0.50;
}

/* --------------- */
.solution-status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-status-icon {
    color: var(--ma-white);
    font-size: 1.5rem;
}

.solution-status-text {
    color: var(--ma-white);
    opacity: 0.50;
    font-size: var(--ma-body-text);
}

/* --------------- */
.solution-stat-val {
    color: var(--ma-white);
    font-size: var(--ma-hero-title);
    margin-bottom: 0.5rem;
}

.solution-stat-lbl {
    color: var(--ma-white);
    opacity: 0.50;
    font-size: var(--ma-body-text);
}

@media screen and (max-height: 800px) {
    .sticky-menu-content {
        padding-top:100px;
    }
    .project-nav .nav-item {
        padding: 10px 0px;
        margin:0px;
    }
    .nav-text {
        font-size: var(--ma-body-text);
    }
}

@media screen and (max-width: 991px) {
    .sticky-menu-content
    {
        display:none;
    }
    .solution-feature-col p {
        opacity:0.85;
    }
    .solution-status-text {
        opacity: 0.85;
    }
    .solution-stat-lbl {
        opacity: 0.85;
    }
    .solution-stat-val {
        font-size: var(--ma-page-title);
    }
    .project-card-full {
        padding:70px;
    }
}
@media screen and (max-width: 768px) {
    .project-card-full {
        padding: 40px;
        background-position: center;
    }
}


/***************** Solutions Marquee Section **********************************************************************************************/

.clients-section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.clients-section h2 {
    margin-bottom: 1rem;
}

.clients-section p {
    margin: 0;
}

/* Grid row / col */
.clients-grid-row {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.clients-grid-col {
    width: 100%;
}

/* ── Static Grid ─────────────────────────── */
.static-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ma-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Individual Grid Item */
.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px 48px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: var(--ma-white);
    transition: background 0.25s ease;
    min-height: 148px;
}

/* Static Logo Styling */
.static-logo {
    max-height: 52px;
    width: auto;
    max-width: 110px;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s ease;
}

.grid-item:hover .static-logo,
.grid-item:focus .static-logo,
.grid-item:active .static-logo {
    filter: grayscale(0%) opacity(1);
}

/* Category tag - bottom-left of each cell */
.client-tag {
    position: absolute;
    bottom: 13px;
    left: 16px;
    font-size: var(--ma-body-text);
    color: var(--ma-grey130);
}

/* Hover overlay - solid deep blue, slides up from bottom */
.grid-item-tooltip {
    position: absolute;
    inset: 0;
    background: var(--ma-type-primary);
    color: var(--ma-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 18px 16px;
    opacity: 0;
    transform: translateY(30%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    pointer-events: none;
}

    .grid-item-tooltip p {
        margin: 0;
        color: var(--ma-white);
    }

.grid-item:hover .grid-item-tooltip,
.grid-item:focus .grid-item-tooltip,
.grid-item:active .grid-item-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Arrow icon at bottom-right of overlay */
.tooltip-arrow {
    display: flex;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 8px;
    flex-shrink: 0;
}
/* =========================================
   Client Logos
   ========================================= */
.static-logo {
    max-height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

    .static-logo:hover,
    .static-logo:focus,
    .static-logo:active {
        transform: scale(1.1);
    }

/* Responsive Grid (Stacking on smaller screens) */
@media (max-width: 991px) {
    .static-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-item {
        min-height: 120px;
    }

        .grid-item:nth-child(3n) {
            /* keep border-right via grid */
        }

        .grid-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 576px) {
    .static-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item {
        min-height: 100px;
        padding: 28px 16px 40px;
    }

    .client-tag {
        font-size: 0.6rem;
    }
}


/* 2. Marquee (Moving Logos) Styles */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

    /* Masks for smooth fade at edges */
    .marquee-wrapper::before,
    .marquee-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 200px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .marquee-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #ffffff, transparent);
    }

    .marquee-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #ffffff, transparent);
    }

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 80px;
    animation: marqueeScroll 45s linear infinite;
}

.logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: transform 0.3s;
}

    .logo-item img:hover,
    .logo-item img:focus,
    .logo-item img:active {
        transform: scale(1.15);
        opacity: 1;
    }

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/***************** Use Case Section **********************************************************************************************/
.use-case-section {
    background-color: var(--ma-bg-light);
    padding: 80px 0;
}


.use-case-highlight {
    color: Var(--ma-type-primary);
    font-size: 2rem;
    font-weight: 700;
}


.use-case-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .use-case-btn:hover,
    .use-case-btn:focus,
    .use-case-btn:active {
        background-color: var(--ma-type-primaryhoverdark);
        color: var(--ma-white);
    }



.use-case-card {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    /* Background Image */
    .use-case-card .card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
        z-index: 1;
    }

    /* The Blue Tint Overlay (Default State) */
    .use-case-card .card-overlay-default {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(38, 68, 140, 0.1) 0%, rgba(38, 68, 140, 0.6) 100%);
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    /* The Pill Label (Citizen Identification, etc.) */
    .use-case-card .card-label {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 3;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

        .use-case-card .card-label span {
            display: inline-block;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--ma-white);
            background: rgb(255 255 255 / 15%);
            border: 1px solid rgb(255 255 255 / 35%);
            border-radius: 24px;
            padding: 5px 15px;
            font-family: var(--ma-font-semibold);
            font-size: var(--ma-metadata);
        }

    /* Hover Content (Hidden by default) */
    .use-case-card .card-hover-content {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: Var(--ma-type-primary);
        color: white;
        padding: 25px;
        z-index: 4;
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: opacity 0.4s ease;
    }

    /* --- HOVER EFFECTS --- */

    /* Reveal Hover Content */
    .use-case-card:hover .card-hover-content,
    .use-case-card:focus .card-hover-content,
    .use-case-card:active .card-hover-content {
        opacity: 1;
    }

    /* Hide Default Overlay & Label */
    .use-case-card:hover .card-overlay-default,
    .use-case-card:hover .card-label,
    .use-case-card:focus .card-overlay-default,
    .use-case-card:focus .card-label,
    .use-case-card:active .card-overlay-default,
    .use-case-card:active .card-label {
        opacity: 0;
    }

    /* Slight zoom on background image for depth */
    .use-case-card:hover .card-bg,
    .use-case-card:focus .card-bg,
    .use-case-card:active .card-bg {
        transform: scale(1.1);
    }


.use-case-header-right {
    text-align: left;
}

@media (min-width: 992px) {
    .use-case-header-right {
        text-align: right;
    }
}


/* Hover Content Typography */
.hover-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hover-stat-value {
    margin-bottom: 0;
    color: var(--ma-white);
}

.hover-content-title {
    margin-bottom: 0.5rem;
    color: var(--ma-white);
}

.hover-content-desc {
    margin-bottom: 0;
    color: var(--ma-white);
    opacity:0.85;
}




/* Use Case Backgrounds */
.bg-use-case-citizen {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Citizen_Identification.png');
}

.bg-use-case-telecom {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Telecom.png');
}

.bg-use-case-security {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Security.png');
}

.bg-use-case-finance {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Finance.png');
}

.bg-use-case-education {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Education.png');
}

.bg-use-case-workforce {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Workforce.png');
}

.bg-use-case-medical {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Medical.png');
}

.bg-use-case-enterprise {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Enterprise.png');
}

.bg-use-case-agriculture {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Agriculture.png');
}

.bg-use-case-airport {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Airport.png');
}

.bg-use-case-distribution {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Distribution.png');
}

.bg-use-case-government {
    background-image: url('/Assets/Images/Pages/Index/New_dark_index/Use_cases_section/Government.png');
}



/***************** testimonial-section **********************************************************************************************/

.testimonial-section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.testimonial-title {
    margin-bottom: 1.5rem;
}

.testimonial-desc {
    margin-bottom: 1.5rem;
}

.testimonial-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .testimonial-btn:hover,
    .testimonial-btn:focus,
    .testimonial-btn:active {
        background-color: var(--ma-type-primaryhoverdark);
        color: var(--ma-white);
    }

/*--------------*/
.testimonial-wrapper {
    position: relative;
}

.testimonial-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    /* default border */
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: 50%;
    color: #555;
}

    .testimonial-nav-btn:hover,
    .testimonial-nav-btn:focus,
    .testimonial-nav-btn:active {
        border-color: Var(--ma-type-primary);
        color: Var(--ma-type-primary);
    }

    .testimonial-nav-btn.next-btn {
        background-color: #333;
        border-color: #333;
        color: var(--ma-white);
    }

        .testimonial-nav-btn.next-btn:hover,
        .testimonial-nav-btn.next-btn:focus,
        .testimonial-nav-btn.next-btn:active {
            background-color: Var(--ma-type-primary);
            border-color: Var(--ma-type-primary);
        }

/* Testimonial Card */
.testimonial-card-inner {
    background-color: var(--ma-bg-light);
    border-radius: 12px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-grow: 1;
    /* Interaction Styles */
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    transition: transform 0.1s ease;
}

    .testimonial-card-inner:active {
        cursor: grabbing;
        transform: scale(0.99);
    }

.testimonial-quote-title {
    color: Var(--ma-type-primary);
}

.testimonial-quote-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author-box {
    margin-top: auto;
}

.testimonial-author-name {
    margin-bottom: 0;
}

.testimonial-author-role {
    color: var(--ma-grey130);
    font-size: var(--ma-metadata);
}

/* Animations */
.fade-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.show-content {
    opacity: 1;
}

/* --- Fade Animation Class --- */
.fade-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.show-content {
    opacity: 1;
}

/* --- Navigation Buttons --- */
.nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
    flex-shrink: 0;
    /* Prevents button from squishing */
}

.prev-btn {
    border-color: #999;
    color: #555;
}

    .prev-btn:hover,
    .prev-btn:focus,
    .prev-btn:active {
        border-color: Var(--ma-type-primary);
        color: Var(--ma-type-primary);
    }

.next-btn {
    background-color: #333;
    border-color: #333;
    color: var(--ma-white);
}

    .next-btn:hover,
    .next-btn:focus,
    .next-btn:active {
        background-color: Var(--ma-type-primary);
        border-color: Var(--ma-type-primary);
    }

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Grid (Stacking on smaller screens) */
@media (max-width: 991px) {
    .testimonial-section {
        text-align: center;
    }
    .testimonial-wrapper {
        margin-top:20px;
    }
    .testimonial-nav-row {
        margin-bottom:0px;
    }
}
@media (max-width: 768.99px) {
    .testimonial-card-inner {
        margin: 0px;
        padding: 20px;
    }
}



/***************** hall-of-fame-section **********************************************************************************************/
.hall-of-fame-section {
    background-color: var(--ma-bg-light);
    padding: 80px 0px;
}

.hall-of-fame-desc-col {
    text-align: left;
}

@media (min-width: 992px) {
    .hall-of-fame-desc-col {
        text-align: right;
    }
}

.hall-of-fame-title {
    margin-top: 0.5rem;
}

.hall-of-fame-desc {
    margin-bottom: 1rem;
}

.hall-of-fame-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hall-of-fame-btn:hover,
    .hall-of-fame-btn:focus,
    .hall-of-fame-btn:active {
        background-color: var(--ma-type-primaryhoverdark);
        color: var(--ma-white);
    }



.hall-of-fame-col {
    position: relative;
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    flex: 0 0 auto;
}

/* --- Wrapper for positioning --- */
.hanging-card-wrapper {
    position: relative;
    padding-top: 25px;
    /* Space for the clip at the top */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy smooth effect */
    cursor: pointer;
}

/* Rotation Defaults */
.rotate-left {
    transform: rotate(-3deg);
}

.rotate-right {
    transform: rotate(3deg);
}

/* --- Hover Effects: Straighten and Scale --- */
.hanging-card-wrapper:hover,
.hanging-card-wrapper:focus,
.hanging-card-wrapper:active {
    transform: rotate(0deg) scale(1.05);
    /* Straighten up and zoom slightly */
    z-index: 10;
}

/* --- The Photo Card Frame --- */
.photo-card {
    position: relative;
    background: var(--ma-white);
    border-radius: 16px;
    overflow: hidden;
}

    .photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

/* --- The Gradient Overlay & Text (Hidden by default) --- */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    /* Matches inner image radius */
}

.hanging-card-wrapper:hover .card-overlay,
.hanging-card-wrapper:focus .card-overlay,
.hanging-card-wrapper:active .card-overlay {
    opacity: 1;
    /* Show on hover */
}

.card-title {
    color: var(--ma-white);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.card-desc {

    color: var(--ma-white);
    margin-bottom: 0px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.hanging-card-wrapper:hover .card-title,
.hanging-card-wrapper:hover .card-desc,
.hanging-card-wrapper:focus .card-title,
.hanging-card-wrapper:focus .card-desc,
.hanging-card-wrapper:active .card-title,
.hanging-card-wrapper:active .card-desc {
    transform: translateY(0);
    /* Slide text up */
}




/***************** blog-section **********************************************************************************************/
/* -- Blog Semantic Styles -- */
.blog-section {
    background-color: var(--ma-white);
    padding: 80px 0px;
}

.blog-desc-col {
    text-align: left;
}

@media (min-width: 992px) {
    .blog-desc-col {
        text-align: right;
    }
}

.blog-title {
    margin-top: 0.5rem;
}

.blog-desc {
    margin-bottom: 1.5rem;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    font-size: var(--ma-body-text);
    font-family: var(--ma-font-semibold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .blog-btn:hover,
    .blog-btn:focus,
    .blog-btn:active {
        background-color: var(--ma-type-primaryhoverdark);
        color: var(--ma-white);
    }



/* --- Blog Card Wrapper --- */
.blog-card {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
    width: 100%;
}

    .blog-card:hover,
    .blog-card:focus,
    .blog-card:active {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

/* --- Image Styling --- */
.blog-img-wrapper {
    display: block;
    height: 240px;
    overflow: hidden;
    text-decoration: none;
}

    .blog-img-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-card:hover .blog-img-wrapper img,
.blog-card:focus .blog-img-wrapper img,
.blog-card:active .blog-img-wrapper img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* --- Card Body --- */
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* --- Typography --- */


.blog-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    transition: color 0.2s ease;
    margin-bottom: 0;
    padding-right: 20px;
}

.blog-icon-link {
    color: #212529;
    text-decoration: none;
}

    .blog-icon-link:hover,
    .blog-icon-link:focus,
    .blog-icon-link:active {
        color: Var(--ma-type-primary) !important;
    }

    /* Arrow Icon Transition */
    .blog-icon-link i {
        transition: transform 0.3s ease;
        display: inline-block;
        font-size: 1.5rem;
        /* fs-4 appx */
    }

.blog-card:hover .blog-icon-link i,
.blog-card:focus .blog-icon-link i,
.blog-card:active .blog-icon-link i {
    transform: translate(3px, -3px);
    /* Move diagonal up-right on hover */
    color: Var(--ma-type-primary);
}

.blog-card-desc {
    margin-bottom: 1.5rem;
}

/* --- Author Section --- */
.blog-author-row {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
}

.blog-author-name {
    margin-bottom: 0;
}

.blog-date {
    margin-bottom: 0px;
    font-size: var(--ma-body-text);
    color: var(--ma-grey130);
}





@media (max-width: 768.99px) {
    .presence-section {
        padding:40px;
    }
    .who-we-are-section {
        padding: 40px;
    }
    .technologies-section {
        padding: 40px;
    }
    .clients-section {
        padding: 40px;
    }
    .use-case-section {
        padding: 40px;
    }
    .testimonial-section {
        padding: 40px;
    }
    .hall-of-fame-section {
        padding: 40px;
    }
    .blog-section {
        padding: 40px;
    }
}





