﻿/* Updated: 2026-02-15 - Fixed AI section responsive + service tabs mobile */
/* Universal Box Sizing and Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Global responsive images - prevent overflow on all screens */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* Emphasized Text Styles */
em,
strong,
b {
    color: var(--orange-primary);
    font-weight: 700;
}

mark {
    background-color: var(--orange-light);
    color: var(--orange-dark);
    padding: 2px 4px;
    border-radius: 3px;
}


/* Fidelis Homepage Replica Custom Styles */

:root {
    /* Primary Orange Colors */
    --orange-primary: #ea580c;
    /* Main brand orange */
    --orange-hover: #dc2626;
    /* Darker for hover states */
    --orange-light: #fed7aa;
    /* Light backgrounds */
    --orange-dark: #c2410c;
    /* Dark emphasis */

    /* Orange Effects */
    --orange-glow: rgba(234, 88, 12, 0.3);
    /* Soft glow */
    --orange-shadow: rgba(234, 88, 12, 0.2);
    /* Box shadows */

    /* Primary Color (now orange) */
    --primary-color: var(--orange-primary);
    --primary-hover: var(--orange-hover);
    --primary-light: var(--orange-light);

    /* Secondary Blue Colors (controlled usage) */
    --blue-secondary: #2b70fa;
    --blue-light: #dbeafe;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --text-dark: #252525;
    --text-light: #ffffff;
    --bg-dark: #1a1a1a;
}

::selection {
    background: var(--orange-primary);
    color: #fff;
}

::-moz-selection {
    background: var(--orange-primary);
    color: #fff;
}

/* Emphasized Text Styles */
em,
strong,
b {
    color: var(--orange-primary);
    font-weight: 700;
}

mark {
    background-color: var(--orange-light);
    color: var(--orange-dark);
    padding: 2px 4px;
    border-radius: 3px;
}

/* General focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--orange-glow);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 20px;
}

/* Reset Header and Footer to original size */
.fidelis-header,
.custom-footer {
    font-size: 16px;
}

/* Global Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
}

h2 {
    font-size: 44px;
    margin-bottom: 25px;
}

h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

h4 {
    font-size: 26px;
    margin-bottom: 15px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs li a:hover {
    color: #fff;
}

.breadcrumbs .sep {
    opacity: 0.5;
}

/* Layout */
.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 70px;
    box-sizing: border-box;
}

@media (max-width: 1440px) {
    .container-full {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container-full {
        padding: 0 20px;
    }
}

/* Header */
.fidelis-header {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05);
    transition: all 0.3s ease;
}

.fidelis-header.sticky {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 45px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav>ul>li {
    margin: 0 25px;
    padding: 10px 0;
    position: relative;
}

.main-nav>ul>li>a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav ul li a i {
    font-size: 12px;
    color: #888;
}

.main-nav ul li:hover>a {
    color: var(--primary-color);
}

/* Dropdowns */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
    /* No translateY gap so the hover bridge is seamless */
    border-radius: 0 0 5px 5px;
    display: none;
    padding: 10px 0;
    z-index: 1000;
}

/* Ensure vertical stacking for dropdown */
.main-nav .sub-menu {
    display: none;
    /* Overrides flex from ul */
}

.main-nav ul li:hover>.sub-menu {
    /* jQuery handles this via fadeIn */
}

.sub-menu li {
    margin: 0;
    padding: 0;
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    font-weight: 400;
    border-bottom: 1px solid #f5f5f5;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover {
    background: #f9f9f9;
    color: var(--primary-color);
}

/* 3rd Level Dropdown for 'Who we seek' */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    display: none;
}

.sub-menu li.menu-item-has-children {
    position: relative;
}

.sub-menu li.menu-item-has-children>a::after {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mega Menu */
.mega-menu-parent {
    position: static !important;
    /* Allow full width relative to header/container */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
    /* No translateY gap so the hover bridge is seamless */
    padding: 30px;
    padding-top: 15px;
    display: none;
    /* JS will restore to flex */
    justify-content: center;
    gap: 40px;
    z-index: 999;
}

.main-nav li:hover .mega-menu {
    /* jQuery handles this via fadeIn */
}

.mega-column {
    flex: 1;
    max-width: 250px;
}

.mega-column h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid var(--orange-primary);
    padding-bottom: 10px;
}

.mega-group h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin: 15px 0 10px;
    font-weight: 600;
}

.mega-column ul {
    display: block;
    margin-bottom: 20px;
}

.mega-column ul li {
    margin: 0;
    padding: 0;
}

.mega-column ul li a {
    padding: 5px 0;
    font-size: 14px;
    color: #666;
    font-weight: 400;
    display: block;
}

.mega-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    /* Slight nudge effect */
}

.mt-20 {
    margin-top: 20px;
}

.main-nav ul li a i {
    font-size: 12px;
    color: #888;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.main-nav ul li a.active {
    color: var(--primary-color);
}

.header-actions .search-icon {
    color: var(--text-dark);
    font-size: 18px;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 800px;
    /* Approximate height from design */
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

/* Dark Overlay for Hero */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    color: #fff;
    text-align: left;
    /* Design shows left aligned */
}

.hero-title {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ddd;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* Icon Strip */
.icon-strip-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    /* Pull up into hero */
    margin-bottom: 80px;
}

.icon-strip-wrapper {
    display: flex;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    padding: 30px 0;
}

.icon-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--orange-primary);
    transition: transform 0.3s;
}

.icon-box:last-child {
    border-right: none;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box .icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.icon-box:hover .icon,
.icon-box:active .icon,
.icon-box.active .icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.icon-box h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Services Grid */
.services-grid-section {
    padding: 200px 0 100px 0px;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    height: 300px;
    /* Adjust height matches design */
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #333;
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.service-card:hover .overlay {
    background: rgba(0, 0, 0, 0.2);
}

.service-card .content {
    position: relative;
    z-index: 2;
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon,
.service-card:active .icon,
.service-card.active .icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    text-transform: uppercase;
}

.why-choose-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.why-item {
    flex: 1;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.why-item .image-wrapper {
    position: relative;
    height: 250px;
}

.why-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-item .overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.why-item .overlay-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Stats Counter */
.stats-counter-wrapper {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.05);
}

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

.stat-item .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-item .number sup {
    font-size: 24px;
    color: var(--primary-color);
    top: -1em;
}

/* Services Tabs */
.services-tabs-section {
    padding: 80px 0;
    background: #fff;
}

.sub-title {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.services-tabs-nav {
    margin-bottom: 50px;
    text-align: center;
}

.services-tabs-nav ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-tabs-nav li {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    color: #888;
    border: 1px solid var(--orange-primary);
    border-radius: 30px;
    transition: all 0.3s;
}

.services-tabs-nav li.active,
.services-tabs-nav li:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.services-tab-content .row {
    display: flex;
    align-items: center;
}

.align-items-center {
    align-items: center;
}

.col-half {
    flex: 1;
    padding: 0 15px;
}

.services-tab-content h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-tab-content p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-dark {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
}

.btn-dark:hover {
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-dark:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* Zoom Modern Features Section */
.zoom-modern-section {
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
    padding: 40px 40px;
    color: white;
    overflow: hidden;
}

.zoom-modern-section .container-full {
    max-width: 100%;
}

.zoom-modern-header {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.zoom-modern-header.active {
    opacity: 1;
    transform: translateY(0);
}

.zoom-modern-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.zoom-modern-header p {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
}

.zoom-features-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1200px) {
    .zoom-features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .zoom-features-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zoom-features-col {
        grid-template-columns: 1fr;
    }
}

.zoom-features-col {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.zoom-feature-item {
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 15px;
}

.zoom-feature-item:hover {
    transform: scale(1.05);
    background: #f8f9fa;
}

.zoom-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zoom-feature-item:hover .zoom-feature-icon {
    transform: scale(1.1);
}

.zoom-feature-item:hover h3 {
    color: var(--orange-primary);
}

.zoom-feature-icon.blue {
    background: var(--blue-light);
    color: var(--blue-secondary);
}

.zoom-feature-icon.blue:hover,
.zoom-feature-icon.blue:active,
.zoom-feature-icon.blue.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-icon.green {
    background: #f0fdf4;
    color: var(--orange-primary);
}

.zoom-feature-icon.green:hover,
.zoom-feature-icon.green:active,
.zoom-feature-icon.green.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-icon.purple {
    background: #faf5ff;
    color: #9333ea;
}

.zoom-feature-icon.purple:hover,
.zoom-feature-icon.purple:active,
.zoom-feature-icon.purple.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-icon.orange {
    background: #fff7ed;
    color: var(--orange-primary);
}

.zoom-feature-icon.orange:hover,
.zoom-feature-icon.orange:active,
.zoom-feature-icon.orange.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.zoom-feature-icon.red:hover,
.zoom-feature-icon.red:active,
.zoom-feature-icon.red.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-icon.indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.zoom-feature-icon.indigo:hover,
.zoom-feature-icon.indigo:active,
.zoom-feature-icon.indigo.active {
    background: var(--orange-light);
    color: var(--orange-primary);
}

.zoom-feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.zoom-feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Central Video styling */
.zoom-video-center {
    position: relative;
    perspective: 1000px;
}

.zoom-video-device {
    background: #ea580c;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(255, 102, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.zoom-video-inner {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.zoom-video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-badge-live {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: live-indicator 2s infinite;
}

.zoom-badge-live .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

@keyframes live-indicator {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.zoom-device-stand-1 {
    width: 120px;
    height: 15px;
    background: #db4437;
    margin: 0 auto;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.zoom-device-stand-2 {
    width: 180px;
    height: 8px;
    background: #bd081c;
    margin: -4px auto 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.step-1 {
    top: 10%;
}

.step-2 {
    top: 60%;
}

.step-3 {
    top: 10%;
}

.step-4 {
    top: 60%;
}

/* Client Logos */
.client-logos-grid {
    padding: 60px 0;
    border-top: 1px solid var(--orange-primary);
    margin-top: 80px;
}

/* Case Studies */
.case-studies-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.case-study-item .case-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.case-study-item:hover .case-img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-image: url('../integrio/img/page_title_bg.jpg');
    /* Parallax bg potentially */
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials-section .section-header h2 {
    color: #fff;
}

.testimonials-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin: 0;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: var(--primary-color);
}

/* Insights */
.insights-section {
    padding: 80px 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.05);
}

.insight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.insight-content {
    padding: 25px;
}

.insight-meta {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.insight-content h3 {
    font-size: 18px;
    margin: 0 0 15px;
    line-height: 1.4;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Custom Footer */
.custom-footer {
    background: #fff;
    /* Design seems white/light background from top part, but user said header/footer. Footer image has white bg top part. */
    color: var(--text-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--orange-primary);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand-col {
    flex: 0 0 35%;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.subscribe-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.footer-subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-subscribe-form input {
    padding: 10px 15px;
    border: 1px solid var(--orange-primary);
    border-radius: 20px;
    flex: 1;
    font-size: 14px;
}

.footer-subscribe-form input:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
    border-color: var(--orange-primary);
}

.btn-subscribe {
    background: var(--blue-secondary);
    /* Using blue for secondary informational action (newsletter subscription) */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.privacy-note {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-links a:active,
.social-links a.active {
    background: var(--orange-primary) !important;
    color: #fff;
    transform: scale(1.1);
}

/* Colors for socials roughly matching design or generic brand colors */
.social-links a:nth-child(1) {
    background: #1877f2;
}

/* FB */
.social-links a:nth-child(2) {
    background: #c32aa3;
}

/* Insta */
.social-links a:nth-child(3) {
    background: #ff0000;
}

/* YT */
.social-links a:nth-child(4) {
    background: #007bb5;
}

/* Linked */
.social-links a:nth-child(5) {
    background: #000000;
}

/* X */

.footer-links-col {
    flex: 1;
}

.footer-links-col h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--primary-color);
}

.solutions-grid {
    display: flex;
    gap: 40px;
}

/* Footer Bottom with Skyline */
.footer-cityscape {
    height: 150px;
    /* Increased height for better visibility */
    width: 100%;
    background-image: url('../integrio/img/skyline-original.webp');
    background-size: cover;
    background-position: bottom;
    opacity: 1;
    /* Reset opacity as it's the real image */
    filter: none;
    /* Remove grayscale if original is colored */
}

.custom-bottom {
    background: #fff;
    /* Or dark blue if the design bar implies it */
    border-top: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
}



/* --- About Us Page Styles --- */

/* Intro Section */
.about-intro-section {
    background-color: #fff;
    /* White background */
    color: #252525;
    /* Dark text */
    padding: 100px 0;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-intro-content .intro-text {
    flex: 1;
}

.about-intro-content .intro-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #0d1e50;
    /* Keep header blue or dark */
}

.about-intro-content .intro-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-intro-content .intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-intro-content .intro-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* Why Choose Us (Light) */
.about-why-us-section {
    background-color: #f9f9f9;
    /* Light gray */
    color: #252525;
    padding: 100px 0;
}

.why-us-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-title h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.why-title span {
    color: var(--orange-primary);
    /* Orange accent */
}

.why-desc {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

.why-desc p {
    margin-bottom: 20px;
}

.btn-text {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* Common Section Titles */
.section-title.white {
    color: #0d1e50;
    /* Dark blue title */
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

/* Our Journey Horizontal Slider */
/* Our Journey Premium Redesign */
.about-journey-section-v2 {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-journey-section-v2 .header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-hover));
    margin: 20px auto 0;
    border-radius: 2px;
}

.journey-carousel-wrapper {
    position: relative;
    margin-top: 80px;
    padding-bottom: 20px;
}

.journey-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px;
    padding: 40px 20px;
    scrollbar-width: none;
}

.journey-track::-webkit-scrollbar {
    display: none;
}

.journey-slide {
    flex: 0 0 420px;
    max-width: 85vw;
    transition: all 0.4s ease;
}

.slide-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.year-marker {
    font-size: 100px;
    font-weight: 950;
    color: #ea580c;
    line-height: 1;
    margin-bottom: -50px;
    margin-left: -5px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: -4px;
    pointer-events: none;
}

.journey-slide:hover .year-marker {
    color: rgba(234, 88, 12, 0.15);
    transform: translateY(-10px) scale(1.05);
}

.milestone-box {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.journey-slide:hover .milestone-box {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--orange-glow);
    border-color: rgba(234, 88, 12, 0.2);
}

.milestone-icon {
    width: 50px;
    height: 50px;
    background: #fdf2f2;
    color: var(--orange-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.journey-slide:hover .milestone-icon {
    background: var(--orange-primary);
    color: #ffffff;
    transform: rotateY(360deg);
}

.milestone-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #050724;
    margin-bottom: 12px;
    line-height: 1.3;
}

.milestone-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.milestone-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.milestone-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.journey-slide:hover .milestone-box img {
    transform: scale(1.1);
}

.journey-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(234, 88, 12, 0.2);
    background: #ffffff;
    color: var(--orange-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.05);
}

.nav-btn:hover {
    background: var(--orange-primary);
    color: #ffffff;
    transform: scale(1.1);
    border-color: var(--orange-primary);
}

.timeline-trail {
    width: 350px;
    height: 6px;
    background: #f5f5f5;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.trail-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-hover));
    border-radius: 10px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .journey-slide {
        flex: 0 0 320px;
    }

    .year-marker {
        font-size: 70px;
        margin-bottom: -35px;
    }

    .timeline-trail {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .journey-slide {
        flex: 0 0 320px;
    }

    .year-marker {
        font-size: 56px;
    }
}

/* Leadership */
.about-leadership-section {
    background-color: #f9f9f9;
    /* Light gray */
    padding: 100px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.05);
    /* Added shadow for white card on light bg */
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
    filter: none;
    /* Removed grayscale */
}

.team-info h4 {
    color: #000;
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 700;
}

.team-info span {
    color: #666;
    font-size: 13px;
}

/* Values */
.about-values-section {
    background-color: #fff;
    /* White */
    padding: 100px 0;
    text-align: center;
}

.values-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.soul-text {
    font-size: 200px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Light gray for background text */
    line-height: 1;
    position: absolute;
    z-index: 1;
}

.values-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.value-item {
    font-size: 24px;
    color: #252525;
    font-weight: 700;
    text-transform: uppercase;
}

.value-item span {
    font-size: 36px;
    color: var(--orange-primary);
}

/* Global Presence */
.about-global-section {
    background-color: #f9f9f9;
    /* Light gray */
    padding: 100px 0;
}

.global-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--orange-primary);
    padding-bottom: 20px;
}

.global-tabs a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    position: relative;
}

.global-tabs a.active {
    opacity: 1;
    font-weight: 700;
    color: var(--orange-primary);
}

.global-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange-primary);
}

.global-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.global-card img {
    height: 300px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
}

/* Group Companies */
.about-group-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
    color: #252525;
}

.subsection-title {
    color: var(--orange-primary);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.group-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.group-logo-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border: 1px solid var(--orange-primary);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.05);
}

.group-logo-card.white-bg {
    background: #fff;
}

.group-logo-card img {
    max-height: 50px;
    margin-bottom: 15px;
}

.group-logo-card p {
    font-size: 12px;
    opacity: 0.8;
    color: #666;
}

.mt-60 {
    margin-top: 60px;
}

/* Grow CTA */
.about-grow-section {
    position: relative;
    padding: 120px 0;
    background: url('../integrio/img/page_title_bg.jpg') center/cover;
    /* Placeholder layout */
    text-align: center;
    color: #fff;
}

.about-grow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-grow-section .container-full {
    position: relative;
    z-index: 2;
}

.about-grow-section h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.btn-cta {

    font-weight: 700;
    display: inline-block;
    margin-top: 30px;
}

/* --- People @ Fidelis Styles --- */

/* Team Hero */
.team-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.team-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.team-hero-section .container-full {
    position: relative;
    z-index: 2;
}

.team-hero-title {
    font-size: 80px;
    font-weight: 700;
}

/* Team Intro */
.team-intro-section {
    padding: 100px 0;
}

.team-intro-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-intro-text {
    flex: 1;
}

.intro-tag {
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.team-intro-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #252525;
}

.team-intro-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #252525;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.btn-play i {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    transition: 0.3s;
}

.btn-play:hover i {
    background: var(--orange-hover);
    color: #fff;
}

.team-intro-image-wrapper {
    flex: 1;
    position: relative;
}

.team-intro-image-wrapper img {
    width: 100%;
    border-radius: 10px;
}

.specialists-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--orange-primary);
    color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.specialists-badge .count {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.specialists-badge .count sup {
    font-size: 24px;
}

.specialists-badge .label {
    font-size: 14px;
    opacity: 0.9;
}

/* Team Leadership */
.team-leadership-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

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

.leadership-header .sub-title {
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 12px;
}

.leadership-tabs-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leadership-tab {
    background: #f9f9f9;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #666;
}

.leadership-tab:hover,
.leadership-tab.active {
    background: var(--orange-primary);
    color: #fff;
}

.leadership-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#board-tab {
    justify-content: center;
}

#advisors-tab {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#advisors-tab .leader-card-modern {
    width: 300px;
    max-width: 100%;
    flex: 0 0 auto;
}

/* Legacy leader styles removed */

/* Latest Events */
.events-section {
    padding: 100px 0;
    background: #fff;
}

.section-header-left {
    margin-bottom: 40px;
}

.section-header-left h2 {
    font-size: 36px;
    color: #252525;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* --- Life @ Fidelis Styles --- */

/* Life Hero */
.life-hero-section {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.life-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.life-hero-section .container-full {
    position: relative;
    z-index: 2;
}

.life-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.life-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* Life Intro */
.life-intro-section {
    padding: 80px 0;
}

.life-intro-heading {
    font-size: 36px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 30px;
}

.life-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
}

.life-gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #252525;
    margin: 60px 0 30px;
    border-bottom: 3px solid #252525;
    display: inline-block;
    padding-bottom: 5px;
}

/* Life Gallery Grid */
.life-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    /* border-radius: 10px; REMOVED border radius to match screenshot which looks like sharp grid */
}

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


/* --- Media & Press Styles --- */

/* Media Hero - Simple & Clean */
.media-hero-section {
    padding: 120px 0 60px;
    background: #fff;
    text-align: center;
}

.media-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 20px;
}

.media-hero-title span {
    color: var(--orange-primary);
    /* Orange accent from screenshot */
}

.media-hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.media-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-media {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-primary-orange {
    background: var(--orange-primary);
    color: #fff;
}

.btn-primary-orange:hover {
    background: var(--orange-hover);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-primary-orange:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* Latest Coverage */
.media-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
    border-left: 3px solid var(--orange-primary);
    padding-left: 10px;
}

.media-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.coverage-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #ff6600;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.coverage-logo-area {
    background: #f9f9f9;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid var(--orange-primary);
}

.coverage-logo-area h3 {
    font-family: serif;
    font-size: 32px;
    color: #333;
    letter-spacing: 1px;
}

.coverage-content {
    padding: 25px;
}

.tag-news {
    background: var(--orange-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 10px;
}

.news-date {
    font-size: 12px;
    color: #999;
}

.coverage-content h4 {
    font-size: 18px;
    margin: 15px 0;
    color: #252525;
    line-height: 1.4;
}

.coverage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--orange-primary);
    color: #666;
    font-size: 13px;
}

/* Featured Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--blue-light);
    /* Using light blue for secondary informational media elements */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.video-thumb {
    width: 200px;
    /* Split layout like screenshot */
    height: 120px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-info h5 {
    color: var(--orange-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.video-info h4 {
    color: #252525;
    font-size: 18px;
}

.video-info p {
    font-size: 14px;
    color: #666;
}

/* --- Careers Page Styles --- */

/* Careers Intro */
.careers-intro-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.careers-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 20px;
}

.careers-intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--blue-light);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.benefit-icon {
    font-size: 36px;
    color: var(--orange-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon,
.benefit-card:active .benefit-icon,
.benefit-card.active .benefit-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #252525;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Open Positions */
.open-positions-section {
    padding: 80px 0;
    background: var(--blue-light);
}

.position-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.05);
    transition: 0.3s;
    border-left: 5px solid var(--orange-primary);
}

.position-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.position-info h3 {
    font-size: 20px;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.position-meta {
    font-size: 14px;
    color: #999;
}

.position-meta span {
    margin-right: 15px;
}

.position-meta i {
    margin-right: 5px;
}

.btn-apply {
    padding: 10px 25px;
    background: #fff;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-apply:hover {
    background: var(--orange-hover);
    color: #fff;
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-apply:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* CV CTA */
.careers-cta-section {
    padding: 80px 0;
    text-align: center;
    background: #252525;
    color: #fff;
}

.careers-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-cta-text {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-submit-cv {
    padding: 15px 40px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-submit-cv:hover {
    background: #e55b00;
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-submit-cv:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

@media (max-width: 768px) {
    .careers-benefits-grid {
        grid-template-columns: 1fr;
    }

    .position-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-apply {
        width: 100%;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 900px) {


    .media-coverage-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* --- EAM Solutions Page Styles --- */

/* Tech Stack Section */
.eam-tech-stack-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.eam-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #252525;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.eam-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange-primary);
    margin: 10px auto 0;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    /* Fixed height for consistency */
}

.tech-card:hover {
    box-shadow: 0 15px 30px var(--orange-shadow);
    border-color: var(--orange-primary);
}

.tech-card img {
    max-width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Process Section (How Fidelis Works With You) */
.eam-process-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    border-top: 4px solid var(--orange-primary);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.05);
    height: 100%;
}

.process-step-num {
    font-size: 40px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
    display: block;
}

.process-card h4 {
    font-size: 18px;
    color: #252525;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Differentiators */
.eam-diff-section {
    padding: 80px 0;
    background: #fff;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.diff-list {
    list-style: none;
    padding: 0;
}

.diff-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.diff-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.diff-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #252525;
}

.diff-text p {
    color: #666;
    font-size: 14px;
}

.diff-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
    width: 100%;
}

/* Implementation Roadmap */
.eam-roadmap-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.roadmap-step {
    position: relative;
    z-index: 1;
    width: 20%;
    background: #f9f9f9;
    /* Hide line behind text if needed, or make transparent */
}

.step-dot {
    width: 44px;
    height: 44px;
    background: var(--orange-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 4px #e0e0e0;
}

.roadmap-step h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #252525;
}

.roadmap-step p {
    font-size: 13px;
    color: #666;
}

/* Success Stories */
.eam-success-section {
    padding: 80px 0;
    background: #fff;
}

.eam-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.success-card {
    background: #fff;
    border: 1px solid var(--orange-primary);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.success-card:hover {
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.success-img-top {
    height: 200px;
    background: #eee;
}

.success-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-body {
    padding: 25px;
}

.success-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #252525;
}

.success-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--orange-primary);
    font-weight: 600;
    text-decoration: none;
}

/* Testimonials & CTA */
.client-quote-section {
    padding: 60px 0;
    text-align: center;
    background: var(--blue-light);
    /* Light blue accent background for secondary informational content */
}

.client-quote-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    font-style: italic;
    color: #555;
}

.cta-banner-orange {
    background: var(--orange-primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-banner-orange h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-white {
    background: #fff;
    color: var(--orange-primary);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background: #f0f0f0;
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-white:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* Enterprise Data Management - Dark Theme and Components */
.dark-data-theme {
    background-color: #0b1120;
    color: #cbd5e1;
}

.dark-data-theme header.white-header {
    background: rgba(11, 17, 32, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dark-data-theme .main-nav>ul>li>a {
    color: #fff;
}

.dark-data-theme .section-header-centered h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.dark-data-theme .section-header-centered h2 span {
    color: var(--orange-primary);
}

.sub-title-orange {
    color: var(--orange-primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

/* Data Hero */
.data-mgmt-hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1e293b, #0b1120);
}

.data-mgmt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    /* Subtle texture */
    opacity: 0.1;
    z-index: 1;
}

.data-mgmt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.data-mgmt-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.data-mgmt-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Data Tabs */
.data-mgmt-categories {
    padding: 100px 0;
    background: #0f172a;
}

.data-tabs-nav {
    margin: 60px 0;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.tab-item {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
    max-width: 300px;
    color: #94a3b8;
}

.tab-item i {
    font-size: 24px;
}

.tab-item .tab-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: inherit;
}

.tab-item .tab-text span {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

.tab-item:hover,
.tab-item.active {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-hover));
    color: #fff;
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.data-tab-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    display: none;
}

.data-tab-content.active {
    display: block;
}

.data-tab-content .content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 28px;
}

.header-text h3 {
    font-size: 32px;
    margin: 0;
    color: #fff;
}

.header-text .tag {
    color: var(--orange-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.content-desc {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 50px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.capability-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    transition: 0.3s;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.capability-item i {
    color: var(--orange-primary);
    font-size: 24px;
}

.capability-item h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #fff;
}

.capability-item p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

.content-footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stats-icons {
    display: flex;
    gap: 10px;
    color: var(--orange-primary);
}

.consult-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.consult-link:hover {
    color: var(--orange-primary);
}

/* Industry Solutions */
.industry-solutions {
    padding: 100px 0;
}

.industry-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 18px;
}

.card-content {
    padding: 30px;
}

.industry-tag {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-card .read-more {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.carousel-nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #1e293b;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--orange-primary);
    width: 30px;
    border-radius: 5px;
}

.carousel-nav .arrows i {
    margin: 0 10px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 24px;
}

/* Intelligence in Motion */
.intelligence-motion {
    padding: 100px 0;
    background: #0f172a;
}

.case-study-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.case-study-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.case-image img {
    width: 100%;
    transition: 0.5s;
}

.case-study-col:hover .case-image img {
    transform: scale(1.1);
}

.tag-case {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.case-text h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.case-text p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.more-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-link span {
    color: #94a3b8;
    font-weight: 400;
    font-size: 14px;
}

/* Why Choose Data */
.why-choose-data {
    padding: 100px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar-item {
    text-align: center;
    padding: 40px 20px;
    background: #1e293b;
    border-radius: 20px;
}

.pillar-icon {
    font-size: 40px;
    color: var(--orange-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon,
.pillar-item:active .pillar-icon,
.pillar-item.active .pillar-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.pillar-item h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.pillar-item p {
    font-size: 14px;
    color: #94a3b8;
}

/* Bottom CTA */
.data-mgmt-cta {
    padding: 120px 0;
    background: var(--orange-primary);
    color: #fff;
}

.data-mgmt-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.data-mgmt-cta p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.btn-cta-white {
    background: #fff;
    color: var(--orange-primary);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

.btn-cta-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.btn-cta-white:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

/* Sticky Header on dark theme */
.dark-data-theme.sticky-header header.white-header {
    background: rgba(11, 17, 32, 0.95);
}

@media (max-width: 900px) {
    .data-mgmt-hero-content h1 {
        font-size: 40px;
    }

    .tabs-list {
        flex-direction: column;
        align-items: center;
    }

    .tab-item {
        width: 100%;
        max-width: 100%;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .industry-carousel {
        grid-template-columns: 1fr;
    }

    .case-study-row {
        flex-direction: column;
    }

    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .data-tab-content {
        padding: 30px;
    }

    .header-text h3 {
        font-size: 24px;
    }
}

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

    .data-mgmt-cta h2 {
        font-size: 32px;
    }
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s linear;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    /* Critical overflow prevention - MOBILE ONLY */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    /* Prevent all elements from causing horizontal scroll */
    * {
        max-width: 100% !important;
    }

    /* Specific element fixes */
    .fidelis-header,
    .header-inner,
    section,
    .container-full,
    div,
    main,
    article {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Fix gap property for all flex and grid layouts */
    [style*="gap"],
    [style*="display: flex"],
    [style*="display:flex"],
    [style*="display: grid"],
    [style*="display:grid"] {
        gap: 0 !important;
    }

    /* Specific gap overrides */
    [style*="gap: 80px"],
    [style*="gap: 60px"],
    [style*="gap: 50px"],
    [style*="gap: 40px"],
    [style*="gap: 30px"],
    [style*="gap: 20px"] {
        gap: 0 !important;
    }

    /* Add margin-bottom instead of gap for spacing */
    [style*="display: flex"] > *,
    [style*="display:flex"] > *,
    [style*="display: grid"] > *,
    [style*="display:grid"] > * {
        margin-bottom: 20px !important;
    }

    [style*="display: flex"] > *:last-child,
    [style*="display:flex"] > *:last-child,
    [style*="display: grid"] > *:last-child,
    [style*="display:grid"] > *:last-child {
        margin-bottom: 0 !important;
    }

    /* Fix for modern-intro-grid and similar layouts */
    .modern-intro-grid,
    .value-flex,
    .biz-flex-container,
    .edu-flex-container {
        gap: 0 !important;
    }

    .modern-intro-grid > *,
    .value-flex > *,
    .biz-flex-container > *,
    .edu-flex-container > * {
        margin-bottom: 30px !important;
    }

    .modern-intro-grid > *:last-child,
    .value-flex > *:last-child,
    .biz-flex-container > *:last-child,
    .edu-flex-container > *:last-child {
        margin-bottom: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(255, 102, 0, 0.1);
        transition: right 0.3s ease-in-out !important;
        z-index: 100;
        padding: 80px 20px 40px;
        overflow-y: auto;
    }

    .main-nav.mobile-active {
        right: 0 !important;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav>ul>li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .main-nav>ul>li>a {
        padding: 15px 0;
        justify-content: space-between;
    }

    .sub-menu,
    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        /* Hidden by default, shown via jQuery slideToggle */
        width: 100%;
        box-shadow: none !important;
        padding: 10px 0 10px 20px;
        transform: none !important;
    }

    .mega-menu {
        flex-direction: column;
        gap: 20px;
        display: none;
    }

    /* Footer adjustments */
    .footer-top-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-links-col {
        width: 100%;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 40px;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    /* Global layout stacks */
    .icon-strip-wrapper,
    .services-grid-wrapper,
    .why-choose-grid,
    .stats-counter-wrapper,
    .testimonials-grid,
    .insights-grid {
        flex-direction: column;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .icon-strip-wrapper > *,
    .services-grid-wrapper > *,
    .why-choose-grid > *,
    .stats-counter-wrapper > *,
    .testimonials-grid > *,
    .insights-grid > * {
        margin-bottom: 20px !important;
    }

    .icon-strip-wrapper > *:last-child,
    .services-grid-wrapper > *:last-child,
    .why-choose-grid > *:last-child,
    .stats-counter-wrapper > *:last-child,
    .testimonials-grid > *:last-child,
    .insights-grid > *:last-child {
        margin-bottom: 0 !important;
    }

    .icon-box {
        border-right: none;
        border-bottom: 1px solid var(--orange-primary);
    }

    .icon-box:last-child {
        border-bottom: none;
    }

    .col-half {
        width: 100%;
        flex: none;
        margin-bottom: 30px;
    }

    .services-tab-content .row {
        flex-direction: column;
    }

    .services-tab-content .image-content {
        order: -1;
        margin-bottom: 30px;
    }

    .zoom-wrapper {
        padding: 0 20px;
    }

    .process-step {
        position: static;
        max-width: 100%;
        margin-bottom: 20px;
        right: auto;
        left: auto;
        top: auto;
    }

    .monitor-img {
        width: 100%;
        margin-bottom: 40px;
    }

    /* Container and padding fixes */
    .container-full {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Section padding adjustments */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Typography responsive */
    h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 22px !important;
        line-height: 1.4 !important;
    }

    h4 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Grid layouts - force single column */
    [style*="display: grid"],
    [style*="display:grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Flex layouts - force column direction and remove gap */
    [style*="display: flex"][style*="gap"],
    [style*="display:flex"][style*="gap"] {
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Width overrides */
    [style*="width: 50%"],
    [style*="width:50%"],
    [style*="flex: 1"],
    [style*="flex:1"] {
        width: 100% !important;
        flex: none !important;
    }

    /* Max-width adjustments */
    [style*="max-width"] {
        max-width: 100% !important;
    }

    /* Image responsiveness */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Card and box padding */
    [class*="card"],
    [class*="box"],
    [style*="padding: 40px"],
    [style*="padding: 50px"],
    [style*="padding: 60px"] {
        padding: 20px !important;
    }

    /* Page title section */
    .page-title-section {
        padding: 100px 20px 40px !important;
        text-align: center !important;
    }

    .page-title-section .container-full {
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .page-title-section h1 {
        font-size: 32px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    .breadcrumbs {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* About intro modern */
    .about-intro-modern {
        padding: 40px 20px !important;
    }

    .modern-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .modern-intro-grid > * {
        margin-bottom: 30px !important;
    }

    .modern-intro-grid > *:last-child {
        margin-bottom: 0 !important;
    }

    /* Stats and counters */
    .stats-row,
    .stats-grid {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    /* Benefits and features grids */
    .benefits-grid,
    .features-grid,
    .capabilities-grid {
        grid-template-columns: 1fr !important;
    }

    /* Partnership cards */
    .partner-card,
    .partnership-card {
        margin-bottom: 20px !important;
    }

    /* Product features */
    .product-features {
        grid-template-columns: 1fr !important;
    }

    /* Service cards */
    .service-card {
        margin-bottom: 20px !important;
    }

    /* Timeline adjustments */
    .timeline-item {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 13px !important;
    }

    /* Button adjustments */
    a[style*="padding"],
    button[style*="padding"] {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }

    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }

    /* Overflow fixes */
    html {
        overflow-x: hidden !important;
        width: 100%;
    }

    body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }

    * {
        box-sizing: border-box !important;
    }

    /* Prevent specific elements from causing overflow */
    .container-full,
    section,
    header,
    footer {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Contain vertical overflow in sections and cards */
    section,
    [class*="hero"],
    [class*="card"],
    [class*="section"] {
        overflow: hidden !important;
    }

    /* Fix for rows and columns */
    .row,
    [class*="col-"] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    /* Fix for absolute positioned elements */
    [style*="position: absolute"] {
        max-width: 100% !important;
    }

    /* Fix for negative margins */
    * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Allow only specific margins */
    p, h1, h2, h3, h4, h5, h6 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Fix for elements with viewport units */
    [style*="100vw"],
    [style*="width: 100%"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix for mega menu and dropdowns */
    .mega-menu,
    .sub-menu {
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Fix for images and media */
    img,
    video,
    iframe {
        max-width: 100% !important;
    }

    /* Images with inline height + object-fit: scale down on mobile */
    img[style*="height"] {
        height: auto !important;
        max-height: 250px !important;
        object-fit: cover !important;
        width: 100% !important;
    }

    /* Decorative pseudo-elements: contain within parent */
    *::before,
    *::after {
        max-width: 100% !important;
    }

    /* Fix for tables */
    table {
        width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
    }

    /* Fix for pre and code blocks */
    pre,
    code {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-wrap: break-word !important;
    }

    /* Fix for SVG elements */
    svg {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Fix for background images */
    [style*="background-image"] {
        background-size: cover !important;
        background-position: center !important;
    }

    /* Specific section fixes */
    [style*="display: flex; gap: 80px"],
    [style*="display: flex; gap: 60px"],
    [style*="display:flex;gap:80px"],
    [style*="display:flex;gap:60px"] {
        flex-direction: column !important;
        gap: 0 !important;
    }

    [style*="display: flex; gap: 80px"] > *,
    [style*="display: flex; gap: 60px"] > *,
    [style*="display:flex;gap:80px"] > *,
    [style*="display:flex;gap:60px"] > * {
        margin-bottom: 20px !important;
    }

    [style*="display: flex; gap: 80px"] > *:last-child,
    [style*="display: flex; gap: 60px"] > *:last-child,
    [style*="display:flex;gap:80px"] > *:last-child,
    [style*="display:flex;gap:60px"] > *:last-child {
        margin-bottom: 0 !important;
    }

    /* Logo grid */
    [style*="grid-template-columns: repeat(auto-fit"],
    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: repeat(4"],
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    /* Margin adjustments */
    [style*="margin-bottom: 80px"],
    [style*="margin-bottom: 100px"] {
        margin-bottom: 40px !important;
    }

    /* Font size overrides for large text */
    [style*="font-size: 42px"],
    [style*="font-size: 48px"],
    [style*="font-size: 56px"] {
        font-size: 28px !important;
    }

    [style*="font-size: 24px"],
    [style*="font-size: 32px"] {
        font-size: 20px !important;
    }

    /* Padding overrides for sections */
    [style*="padding: 120px 0"],
    [style*="padding: 100px 0"],
    [style*="padding: 80px 0"] {
        padding: 40px 20px !important;
    }

    /* ====== VERTICAL SCROLL PREVENTION ====== */

    /* Remove large fixed/min heights on mobile */
    .values-soul-section {
        min-height: auto !important;
        padding: 60px 0 !important;
    }

    .soul-grid {
        min-height: auto !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .soul-card {
        padding: 40px 15px !important;
        overflow: hidden !important;
    }

    .glow-effect {
        width: 200px !important;
        height: 200px !important;
    }

    /* Cap inline heights on images & containers */
    [style*="height: 400px"],
    [style*="height: 500px"],
    [style*="height: 600px"],
    [style*="height: 700px"],
    [style*="height: 800px"] {
        height: auto !important;
        max-height: 300px !important;
    }

    [style*="min-height: 400px"],
    [style*="min-height: 500px"],
    [style*="min-height: 600px"],
    [style*="min-height: 700px"],
    [style*="min-height: 800px"],
    [style*="min-height: 850px"] {
        min-height: auto !important;
    }

    /* Service cards, team cards, etc. - auto height */
    .service-card {
        height: auto !important;
        min-height: 200px !important;
    }

    .team-card,
    .insight-card,
    .benefit-card,
    .position-card,
    .tech-card,
    .process-card,
    .success-card,
    .coverage-card,
    .video-card,
    .industry-card,
    .partner-card,
    .partnership-card {
        height: auto !important;
    }

    /* Presence / flip cards */
    .presence-card {
        height: 350px !important;
    }

    /* Ensure all section containers clip overflow */
    .about-journey-section-v2,
    .ai-animated-strip,
    .recognition-section,
    .grow-with-us-section {
        overflow: hidden !important;
    }

    /* Journal / blog hero */
    .journal-hero {
        padding: 120px 20px 60px !important;
    }

    /* Decorative glows & absolute elements - prevent overflow */
    .recognition-glow-1,
    .recognition-glow-2,
    .absolute-glow::before {
        display: none !important;
    }

    /* Large decorative pseudo-elements that may overflow parent */
    [class*="hero"]::before,
    [class*="hero"]::after {
        max-width: 100vw !important;
        max-height: 100% !important;
    }
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* Blogs & Case Studies Styles */
.journal-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at center, #1e293b, #0b1120);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.journal-hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin: 20px 0;
}

.journal-hero-content h1 span {
    color: var(--orange-primary);
}

.journal-hero-content p {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
}

.filter-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange-primary);
    color: #fff;
    border-color: var(--orange-primary);
}

/* Blog Grid */
.blog-insights-section {
    padding: 100px 0;
    background: #0f172a;
}

.insights-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.blog-card-image {
    height: 200px;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.3s;
}

.blog-card:hover .blog-card-image img {
    filter: grayscale(0);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange-primary);
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.blog-card-body {
    padding: 30px;
}

.blog-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-card-body h4 {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 25px;
}

.read-article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1e293b;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.3s;
}

.page-num.active {
    background: var(--orange-primary);
    color: #fff;
}

/* Case Study Section specific */
.measurable-outcomes {
    padding: 100px 0;
    background: #0f172a;
}

.outcomes-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.outcomes-text {
    flex: 1;
}

.outcomes-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box-large {
    background: #1e293b;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.stat-box-large span {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-box-large p {
    color: #94a3b8;
    margin: 10px 0 0;
}

.stat-box-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Testimonials Dark */
.what-they-say {
    padding: 100px 0;
}

.testimonials-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-dark-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
}

.stars {
    color: #ffb400;
    margin-bottom: 20px;
}

.testimonial-dark-card p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.author-dark {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-meta h5 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.author-meta span {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 900px) {

    .insights-grid-3,
    .testimonials-dark-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-row {
        flex-direction: column;
    }
}

/* Cloud Infrastructure Specific Styles */
.cloud-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top left, #0f172a, #020617);
    position: relative;
    overflow: hidden;
}

.cloud-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 112, 250, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.cloud-diff-section {
    padding: 100px 0;
    background: #0f172a;
}

.cloud-diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.cloud-diff-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.cloud-diff-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.cloud-diff-item i {
    font-size: 32px;
    color: var(--orange-primary);
    margin-bottom: 25px;
}

.cloud-diff-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.cloud-diff-item p {
    color: #94a3b8;
    line-height: 1.7;
}

.ecosystem-section {
    padding: 100px 0;
    background: #0b1120;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ecosystem-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ecosystem-text {
    flex: 1;
}

.ecosystem-viz {
    flex: 1;
    position: relative;
    padding: 100px 0;
}

.orb-center {
    width: 100px;
    height: 100px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.4);
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ring-1 {
    width: 200px;
    height: 200px;
}

.ring-2 {
    width: 350px;
    height: 350px;
}

/* Network & Security Specific Styles */
.security-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #0f172a, #020617);
    position: relative;
    overflow: hidden;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.soc-section {
    padding: 100px 0;
    background: #0b1120;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.soc-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.soc-viz {
    flex: 1;
    position: relative;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-orb {
    width: 120px;
    height: 120px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.4);
    position: relative;
    z-index: 3;
    animation: soc-pulse 2s infinite;
}

@keyframes soc-pulse {
    0% {
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 60px rgba(255, 102, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
    }
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 50%;
}

.radar-1 {
    width: 220px;
    height: 220px;
}

.radar-2 {
    width: 340px;
    height: 340px;
}

.security-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.security-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange-primary);
}

@media (max-width: 900px) {
    .soc-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Platform Operations Specific Styles */
.platform-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #075985, #020617);
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.ops-viz-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.ops-node {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.ops-node:hover {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-5px);
}

.ops-node i {
    font-size: 24px;
    color: #38bdf8;
}

.ops-node span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.data-card.ops-card {
    border-left: 4px solid #0ea5e9;
}

.platform-ecosystem {
    background: #0f172a;
    padding: 100px 0;
}

.platform-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1000px) {
    .platform-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .platform-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Data Center Services Specific Styles */
.dc-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #064e3b, #020617);
    position: relative;
    overflow: hidden;
}

.dc-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.dc-viz {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.dc-rack {
    width: 60px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}

.dc-rack span {
    height: 4px;
    background: rgba(234, 88, 12, 0.3);
    border-radius: 2px;
}

.dc-rack span.active {
    background: var(--orange-primary);
    box-shadow: 0 0 10px var(--orange-primary);
    animation: dc-blink 2s infinite;
}

@keyframes dc-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.reliability-card {
    border-bottom: 4px solid var(--orange-primary);
}

/* IntelliRecruit Product Specific Styles */
.IntelliRecruit-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #312e81, #020617);
    position: relative;
    overflow: hidden;
}

.IntelliRecruit-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.career-node {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.career-node:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.1);
}

.career-node i {
    font-size: 32px;
    color: #818cf8;
}

.career-node span {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.impact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-10px);
}

.impact-card h3 {
    color: #818cf8;
    margin-bottom: 20px;
}

.impact-card ul {
    list-style: none;
    padding: 0;
}

.impact-card ul li {
    color: #94a3b8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.impact-card ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #6366f1;
}

.quote-section {
    padding: 100px 0;
    background: #0f172a;
    text-align: center;
}

.razor-quote {
    font-size: 48px;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.razor-quote::before,
.razor-quote::after {
    content: '"';
    font-size: 80px;
    color: #6366f1;
    opacity: 0.3;
    position: absolute;
}

.razor-quote::before {
    top: -40px;
    left: -20px;
}

.razor-quote::after {
    bottom: -60px;
    right: -20px;
}

/* Herbie AI Product Specific Styles */
.herbie-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #0e7490, #020617);
    position: relative;
    overflow: hidden;
}

.herbie-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.herbie-viz {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.voice-wave span {
    width: 3px;
    background: #22d3ee;
    border-radius: 2px;
    animation: herbie-wave 1.2s ease-in-out infinite;
}

@keyframes herbie-wave {

    0%,
    100% {
        height: 10px;
    }

    50% {
        height: 40px;
    }
}

.voice-wave span:nth-child(2) {
    animation-delay: 0.1s;
}

.voice-wave span:nth-child(3) {
    animation-delay: 0.2s;
}

.voice-wave span:nth-child(4) {
    animation-delay: 0.3s;
}

.voice-wave span:nth-child(5) {
    animation-delay: 0.4s;
}

.capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #22d3ee;
    transform: translateY(-5px);
}

.capability-card h3 {
    color: #22d3ee;
    margin-bottom: 15px;
    font-size: 20px;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.industry-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.industry-item:hover {
    border-color: rgba(34, 211, 238, 0.3);
    color: #fff;
}

.herbie-quote {
    font-size: 36px;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Manual Testing Specific Styles */
.qa-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #78350f, #020617);
    position: relative;
    overflow: hidden;
}

.qa-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.qa-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #f59e0b;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.qa-card i {
    font-size: 40px;
    color: #f59e0b;
    margin-bottom: 25px;
}

.qa-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.qa-card p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 20px;
}

.qa-card ul {
    list-style: none;
    padding: 0;
}

.qa-card ul li {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.qa-card ul li::before {
    content: '•';
    color: #f59e0b;
    position: absolute;
    left: 0;
}

.qa-approach-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.qa-step-num {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.qa-quote {
    font-size: 42px;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.qa-quote::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #f59e0b;
    margin: 30px auto 0;
}

/* Automated Testing Specific Styles */
.auto-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #312e81, #020617);
    position: relative;
    overflow: hidden;
}

.auto-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #818cf8;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

.ai-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ai-cap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.ai-cap-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #818cf8;
    transform: translateY(-5px);
}

.ai-cap-card i {
    font-size: 32px;
    color: #6366f1;
    margin-bottom: 20px;
}

.ai-cap-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.auto-quote {
    font-size: 32px;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #6366f1;
    padding-left: 30px;
}


.sub-menu li.menu-item-has-children:hover>.sub-menu {
    transform: translateX(0);
}

/* Global Presence Grid Styles */
.global-presence-container {
    padding: 100px 0;
    padding-left: 50px;
    /* Added left space */
    background: #050510;
}

.global-presence-container h2 {
    text-align: center;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
    justify-content: center;
}

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

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

    .presence-card {
        height: 350px;
    }

    .global-presence-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

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

    .presence-card {
        height: 300px;
    }

    .global-presence-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .presence-card-back {
        padding: 20px;
    }

    .presence-card-back h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .presence-card-back p {
        font-size: 13px;
        line-height: 1.5;
    }
}

.presence-card {
    height: 500px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    cursor: pointer;
}

.presence-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Desktop: flip on hover using 3D */
@media (hover: hover) and (pointer: fine) {
    .presence-card:hover .presence-card-inner {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
}

.presence-card-front,
.presence-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.presence-card-front {
    background-color: #1a1a2e;
    z-index: 2;
}

.presence-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presence-card-front .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.presence-card-back {
    background: #FF6B35;
    background: linear-gradient(90deg, rgba(255, 107, 53, 1) 0%, rgba(255, 97, 61, 1) 100%);
    color: white;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 1;
}

/* Click/tap to flip via JS-toggled .flipped class (3D flip) */
.presence-card.flipped .presence-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.presence-card-back h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.presence-card-back p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-line;
}

/* Leadership Team Section Styles */
.team-leadership-section {
    padding: 100px 0;
    background: #fff;
}

.leadership-header {
    margin-bottom: 50px;
}

.sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.leadership-header .sub-title {
    color: var(--orange-primary);
}

.leadership-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.leadership-tab {
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: #f5f5f5;
    color: #333;
}

.leadership-tab.active {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-shadow);
}

.leadership-tab:hover:not(.active) {
    background: #eee;
}

.leadership-grid-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leadership-grid-layout.active {
    opacity: 1;
}

.leadership-grid-layout:not(.active) {
    display: none;
}

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

@media (max-width: 991px) {
    .leadership-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .leadership-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Legacy leader styles removed */

/* New Events Section Styles */
.fidelis-events-section {
    padding: 100px 0;
    background: #050724;
    /* Deeper navy blue from screenshot 2 */
    color: #fff;
}

.fidelis-events-section .container-full {
    max-width: 100%;
    margin: 0 auto;
}

.events-header {
    margin-bottom: 50px;
}

.events-header .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 12px;
}

.events-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
}

.events-header .desc {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-size: 16px;
}

.events-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1200px) {
    .events-layout {
        grid-template-columns: 1fr;
    }
}

/* Featured Event Card */
.featured-event-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    color: #000;
    display: block;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--orange-shadow);
}

.featured-img-wrapper {
    position: relative;
    height: 320px;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-event-card .featured-p-6 {
    padding: 30px;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    align-items: center;
}

.side-event-item .event-meta {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.event-meta i {
    color: #4b85ff;
    margin-right: 2px;
}

.featured-event-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.view-event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #4b85ff;
    transition: gap 0.3s;
}

.side-event-item:hover .view-event-link,
.featured-event-card:hover .view-event-link {
    gap: 12px;
}

/* Side Event Item */
.side-events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .side-events-list {
        grid-template-columns: 1fr;
    }
}

.side-event-item {
    background: rgba(255, 255, 255, 0.05);
    /* Matching card bg from screenshot 2 */
    border-radius: 20px;
    overflow: hidden;
    padding: 16px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
}

.side-event-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.side-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 100px;
}

.side-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-event-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.side-event-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 12px;
}

.latest-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #ff4d00;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

/* WHY Choose US Modern Section */
.why-choose-us-modern {
    position: relative;
    padding: 112px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.why-choose-us-modern .container-full {
    max-width: 100%;
}

.why-choose-us-modern .modern-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
    align-items: start;
}

.why-choose-us-modern .header-col {
    grid-column: span 6;
    position: sticky;
    top: 112px;
}

.why-choose-us-modern .title-group {
    display: flex;
    flex-direction: column;
    letter-spacing: -0.05em;
    line-height: 1;
}

@media (min-width: 1024px) {
    .why-choose-us-modern .title-group {
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
    }
}

.why-choose-us-modern .title-top-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (min-width: 1024px) {
    .why-choose-us-modern .title-top-box {
        height: 160px;
        justify-content: space-between;
    }
}

.why-choose-us-modern .why-txt {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
}

.why-choose-us-modern .choose-txt {
    font-weight: 700;
    font-size: 26px;
}

@media (min-width: 640px) {
    .why-choose-us-modern .why-txt {
        font-size: 72px;
    }

    .why-choose-us-modern .choose-txt {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .why-choose-us-modern .why-txt {
        font-size: 120px;
    }

    .why-choose-us-modern .choose-txt {
        font-size: 83px;
    }
}

.why-choose-us-modern .us-txt {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange-primary);
    font-size: 64px;
    line-height: 1;
}

@media (min-width: 640px) {
    .why-choose-us-modern .us-txt {
        font-size: 100px;
    }
}

@media (min-width: 1024px) {
    .why-choose-us-modern .us-txt {
        font-size: 220px;
    }
}

.why-choose-us-modern .tags-line {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.why-choose-us-modern .tags {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--orange-primary);
}

@media (min-width: 640px) {
    .why-choose-us-modern .tags {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .why-choose-us-modern .tags {
        font-size: 20px;
    }
}

.why-choose-us-modern .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.why-choose-us-modern .dash-line {
    display: none;
    height: 1px;
    width: 40%;
    background: var(--orange-primary);
}

@media (min-width: 1024px) {
    .why-choose-us-modern .dash-line {
        display: block;
    }
}

.why-choose-us-modern .content-col {
    grid-column: span 6;
    position: relative;
}

/* About Intro Modern Section */
.about-intro-modern {
    padding: 80px 0;
    background: #020617;
    /* Deep Navy/Black */
    color: #fff;
    overflow: hidden;
}

.about-intro-modern .container-full {
    max-width: 100%;
}

.modern-intro-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
}

.intro-content-col {
    grid-column: span 7;
}

@media (min-width: 1024px) {
    .intro-content-col {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

@media (min-width: 640px) {
    .intro-title {
        font-size: 48px;
    }
}

.intro-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

@media (min-width: 640px) {
    .intro-desc {
        font-size: 18px;
    }
}

.intro-video-col {
    grid-column: span 5;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .intro-video-col {
        margin-top: 0;
    }
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .video-container {
        aspect-ratio: 1/1;
    }
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.video-overlay {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@media (max-width: 1023px) {

    .intro-content-col,
    .intro-video-col {
        grid-column: span 12;
    }
}

/* Values SOUL Section */
.values-soul-section {
    padding: 96px 0;
    background: #050B17;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

@media (min-width: 640px) {
    .values-header h2 {
        font-size: 48px;
    }
}

.soul-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 550px;
}

@media (min-width: 640px) {
    .soul-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: 550px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .soul-grid {
        min-height: 750px;
    }
}

.soul-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 20px;
    cursor: pointer;
    height: 100%;
    overflow: visible;
}

@media (min-width: 640px) {
    .soul-card {
        padding: 80px 20px;
    }
}

@media (min-width: 768px) {
    .soul-card {
        padding: 100px 20px;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0);
    filter: blur(100px);
    transition: all 1s;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

@media (min-width: 768px) {
    .glow-effect {
        width: 600px;
        height: 600px;
        filter: blur(150px);
    }
}

.soul-card.active .glow-effect,
.soul-card:hover .glow-effect {
    background: rgba(234, 88, 12, 0.2);
    opacity: 1;
}

.bg-letter {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    overflow: visible;
}

.bg-letter span {
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: rgb(149 145 145 / 20%);
    font-family: 'Inter', sans-serif;
    transition: all 0.7s ease-in-out;
    transform: translateY(-5%) scale(1);
}

@media (min-width: 768px) {
    .bg-letter span {
        font-size: 600px;
    }
}

.soul-card.active .bg-letter span,
.soul-card:hover .bg-letter span {
    color: rgba(234, 88, 12, 0.25);
    transform: translateY(-5%) scale(1.05);
}

.card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: auto;
    padding-top: 48px;
}

@media (min-width: 768px) {
    .card-content {
        padding-top: 80px;
    }
}

.milestone-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .milestone-header {
        margin-bottom: 20px;
        margin-left: 0;
    }
}

.accent-bar {
    width: 48px;
    height: 6px;
    border-radius: 3px;
    background: var(--orange-primary);
    margin-bottom: 16px;
    transition: all 0.5s;
    transform: scaleX(0);
    opacity: 0;
}

@media (min-width: 768px) {
    .accent-bar {
        width: 64px;
    }
}

.soul-card.active .accent-bar,
.soul-card:hover .accent-bar {
    transform: scaleX(1);
    opacity: 1;
}

.milestone-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

@media (min-width: 768px) {
    .milestone-header h3 {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .milestone-header h3 {
        font-size: 48px;
    }
}

.card-desc-box {
    min-height: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 640px) {
    .card-desc-box {
        margin-left: 0;
    }
}

.card-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s;
}

@media (min-width: 768px) {
    .card-desc {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .card-desc {
        font-size: 18px;
    }
}

.soul-card.active .card-desc,
.soul-card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}



@media (min-width: 1024px) {
    .why-choose-us-modern .content-col {
        padding-left: 64px;
    }
}

.why-choose-us-modern .vertical-accent {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--orange-primary);
}

@media (min-width: 1024px) {
    .why-choose-us-modern .vertical-accent {
        display: block;
    }
}

.why-choose-us-modern .mobile-accent {
    height: 4px;
    background: var(--orange-primary);
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .why-choose-us-modern .mobile-accent {
        display: none;
    }
}

.why-choose-us-modern .text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

@media (min-width: 640px) {
    .why-choose-us-modern .text-content {
        gap: 32px;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .why-choose-us-modern .text-content {
        font-size: 20px;
    }
}

.why-choose-us-modern .closing-quote {
    padding-top: 24px;
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: #fff;
}

@media (min-width: 640px) {
    .why-choose-us-modern .closing-quote {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .why-choose-us-modern .closing-quote {
        font-size: 28px;
    }
}

@media (max-width: 1023px) {

    .why-choose-us-modern .header-col,
    .why-choose-us-modern .content-col {
        grid-column: span 12;
    }

    .why-choose-us-modern .header-col {
        position: relative;
        top: 0;
    }
}

/* Group Companies Modern Section */
.group-companies-modern {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    background: #000;
}

@media (min-width: 640px) {
    .group-companies-modern {
        padding: 96px 0;
    }
}

.absolute-glow {
    position: absolute;
    inset: 0;
}

.absolute-glow::before {
    content: '';
    position: absolute;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    height: 520px;
    width: 900px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
}

.group-section-wrapper {
    margin-bottom: 80px;
}

.group-section-wrapper:last-child {
    margin-bottom: 0;
}

.group-section-title {
    color: var(--orange-primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .group-section-title {
        font-size: 28px;
    }
}

.companies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.company-card {
    position: relative;
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.company-card:hover {
    border-color: rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.logo-box {
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
    margin-bottom: 24px;
}

.logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.company-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* AI Glass Overlay - Positioned on Hero */
.ai-glass-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 0 40px 0;
    transform: translateY(50%);
}

.ai-glass-overlay .ai-animation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 140px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .ai-glass-overlay .ai-animation-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        min-height: 120px;
    }

    .ai-glass-overlay {
        padding: 0 0 20px 0;
    }
}

/* Remove old AI animated strip styles */
.ai-animated-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    position: relative;
}

.ai-animated-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.ai-animation-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.3);
}

.ai-first-intro {
    font-size: 22px;
    font-weight: 300;
    color: orange;
    text-align: center;
    margin: 0 0 0 0;
    max-width: 800px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.ai-animation-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .ai-animation-wrapper {
        padding: 40px 20px;
        gap: 20px;
    }

    .ai-first-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .ai-animation-row {
        flex-direction: column;
        gap: 30px;
    }
}

.ai-main-word {
    font-size: 120px;
    font-weight: 900;
    color: var(--orange-primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    animation: none;
    transform: scale(0);
    opacity: 0;
}

.ai-animation-wrapper.in-view .ai-main-word {
    animation: growAI 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 768px) {
    .ai-main-word {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .ai-main-word {
        font-size: 60px;
    }
}

@keyframes growAI {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.1) rotate(2deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.ai-sub-words {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ai-sub-words {
        gap: 15px;
    }
}

.ai-word {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateX(-100px);
    animation: none;
    text-align: center;
}

.ai-animation-wrapper.in-view .ai-word {
    animation: slideInWord 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 768px) {
    .ai-word {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ai-word {
        font-size: 18px;
    }
}

@keyframes slideInWord {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.ai-separator {
    font-size: 32px;
    font-weight: 300;
    color: orange;
    opacity: 0;
    animation: none;
}

.ai-animation-wrapper.in-view .ai-separator {
    animation: fadeInSeparator 0.5s ease forwards;
    animation-delay: 1.1s;
}

@media (max-width: 768px) {
    .ai-separator {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .ai-separator {
        font-size: 18px;
    }
}

@keyframes fadeInSeparator {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Add hover effect to AI word */
.ai-main-word:hover {
    color: #ff6b35;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.ai-word:hover {
    color: var(--orange-primary);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Flip Cards for Services */
.flipbox-card {
    perspective: 1000px;
    height: auto;
}

.flipbox-inner {
    position: relative;
    width: 100%;
    height: 270px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flipbox-card:hover .flipbox-inner {
    transform: rotateY(180deg);
}

.flipbox-front,
.flipbox-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flipbox-front {
    background-size: cover;
    background-position: center;
    color: #fff;
    border: 2px solid #FF6B35;
    box-shadow: 4px 4px 5px 1px rgba(255, 102, 0, 0.75);
    -webkit-box-shadow: 4px 4px 5px 1px rgba(255, 102, 0, 0.75);
    -moz-box-shadow: 4px 4px 5px 1px rgba(255, 102, 0, 0.75);
}

.flipbox-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.flipbox-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #de5210;
    margin: 0;
    text-align: center;
}

.flipbox-back {
    background: #FF6B35;
    background: linear-gradient(90deg, rgba(255, 107, 53, 1) 0%, rgba(255, 97, 61, 1) 100%);
    color: #fff;
    transform: rotateY(180deg);
    padding: 40px 30px;
    text-align: center;
}

.flipbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flipbox-content p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.flipbox-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 20px;
}

.flipbox-button:hover {
    background: #fff;
    color: #0C1BAE;
}

@media (max-width: 991px) {
    .flipbox-card {
        height: auto;
    }

    .flipbox-title {
        font-size: 24px;
    }

    .flipbox-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .flipbox-card {
        height: auto;
    }
}

/* Enhanced Services Section */
.services-grid-section {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}



.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

}


/* Logo Carousel Section */
.logo-carousel-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.logo-carousel-section .section-header {
    margin-bottom: 50px;
}

.logo-carousel-section .section-header .sub-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.logo-carousel-section .section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logo-carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-fade.left {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-carousel-fade.right {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.logo-carousel-track {
    display: flex;
    width: max-content;
}

.logo-carousel-track.scroll-left {
    animation: scrollLeft 30s linear infinite;
}

.logo-carousel-track.scroll-right {
    animation: scrollRight 30s linear infinite;
}

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

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

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-carousel-slide {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo-carousel-slide img {
    height: 60px;
    width: 140px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-carousel-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo-carousel-slide {
        gap: 40px;
    }

    .logo-carousel-slide img {
        height: 50px;
        width: 120px;
    }

    .logo-carousel-fade {
        width: 60px;
    }
}



/* Recognition Carousel Section */
.recognition-carousel-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.recognition-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.recognition-glow-1 {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.recognition-glow-2 {
    position: absolute;
    bottom: -100px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.recognition-carousel-container {
    position: relative;
}

.recognition-carousel-viewport {
    position: relative;
    overflow: hidden;
    /* border-radius: 16px; */
}

.recognition-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease-in-out;
}

.recognition-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.recognition-content-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
    text-align: center;
}

.recognition-text-col {
    color: #fff;
}

.recognition-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.recognition-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.recognition-badges-col {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.badge-card {
    background: #F0F0F0;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    width: 160px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.badge-card img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease;
}

.badge-card span {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
}

.recognition-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.recognition-nav .nav-dot {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recognition-nav .nav-dot.active {
    background: var(--orange-primary);
}

.recognition-nav .nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .recognition-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .recognition-title {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .badge-card {
        width: 110px;
        height: 130px;
        padding: 10px;
    }

    .badge-card img {
        max-height: 70px;
    }

    .badge-card span {
        font-size: 10px;
    }
}

@keyframes fadeInSeparator {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Page Title & Breadcrumbs */
.page-title-section {
    position: relative;
    z-index: 1;
}

.page-title-section .container-full {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    color: #fff;
    margin-bottom: 20px;
    background-color: #ea580c;
    width: fit-content;
    padding: 10px;
    margin: 0 auto;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs .sep {
    margin: 0 10px;
    opacity: 0.5;
}


/* Typography Utilities */
.text-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-center {
    text-align: center;
}

.section-label {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}


/* Header & Navigation */
.fidelis-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05);
}

.fidelis-header.sticky {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
}


/* Life @ Fidelis Page */
.life-intro-section {
    padding: 100px 0;
    background: #fff;
}

.life-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.life-intro-heading {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.life-intro-heading .divider {
    color: var(--primary-color);
    margin: 0 15px;
    opacity: 0.5;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 30px auto;
}

.life-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.life-feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.life-feature-item:hover {
    transform: translateY(-10px);
}

.life-feature-item .feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.life-feature-item:hover .feature-icon,
.life-feature-item:active .feature-icon,
.life-feature-item.active .feature-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.life-quote-section {
    background: #f8fafc;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.life-quote-section blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.life-quote-section cite {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

.life-gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.life-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.mosaic-item {
    overflow: hidden;
    border-radius: 12px;
}

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

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 991px) {
    .life-features-row {
        grid-template-columns: 1fr;
    }

    .life-gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Careers Page */
.careers-intro-section {
    padding: 100px 0;
    background: #fff;
}

.careers-intro-title {
    text-align: center;
    margin-bottom: 20px;
}

.careers-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.05);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon,
.benefit-card:active .benefit-icon,
.benefit-card.active .benefit-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.open-positions-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.position-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.02);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.position-card:hover {
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.08);
    transform: scale(1.01);
}

.position-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.position-meta {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.position-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.btn-apply {
    padding: 12px 30px;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--primary-color);
    color: #fff;
}

.careers-cta-section {
    padding: 100px 0;
    background: #1e293b;
    text-align: center;
    color: #fff;
}

.careers-cta-title {
    color: #fff;
    margin-bottom: 20px;
}

.careers-cta-text {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 18px;
}

.btn-submit-cv {
    display: inline-block;
    padding: 18px 45px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit-cv:hover {
    background: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}


/* Mega Menu Header Links */
.mega-menu h3 a,
.mega-menu h4 a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.mega-menu h3 a:hover,
.mega-menu h4 a:hover {
    color: var(--primary-color);
}


/* Landing Page Cards */
.fidelis-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.fidelis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--orange-shadow);
    border-color: var(--primary-color) !important;
}


/* Modernize CTA Section */
.modernize-cta-section {
    background: #0d1e50;
    /* Deep Fidelis Blue */
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.modernize-cta-title {
    color: #fff !important;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.modernize-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-start-journey {
    display: inline-block;
    background: #fff;
    color: #0d1e50;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.btn-start-journey:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
    background: var(--primary-color);
    color: #fff;
}

/* =========================================
   FIDELIS FULL BOTTOM SECTION STYLES
   ========================================= */

/* Section Containers */
.fidelis-dark-section {
    background-color: #0d1e50;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.fidelis-white-section {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
}

.fidelis-orange-section {
    background-color: var(--orange-primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* Common Headings */
.fidelis-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.fidelis-section-subtitle {
    text-align: center;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.8;
}

.text-highlight {
    color: var(--orange-primary);
}

/* 1. How Fidelis Works (Cards) */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.work-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--orange-shadow);
}

.work-card-icon {
    width: 10px;
    height: 10px;
    background: var(--orange-primary);
    border-radius: 50%;
    margin-bottom: 20px;
}

.work-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.work-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

/* 2. Our Approach */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 700;
    opacity: 0.1;
}

.approach-icon {
    color: var(--orange-primary);
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon,
.approach-card:active .approach-icon,
.approach-card.active .approach-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

/* 3. What Makes Us Different */
.diff-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.diff-content {
    flex: 1;
}

.diff-image {
    flex: 1;
    position: relative;
}

.diff-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.diff-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.diff-img-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--orange-primary);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
}

/* 4. Implementation Roadmap (White) */
.roadmap-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.roadmap-step {
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.step-marker {
    width: 30px;
    height: 30px;
    background: var(--orange-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 12px;
}

/* 5. Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.story-card {
    background: #112255;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-tag {
    background: var(--orange-primary);
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

/* 6. Testimonials */
.testimonials-box {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    border-left: 4px solid var(--orange-primary);
}

/* 7. Final Orange CTA */
.btn-cta-white {
    background: #fff;
    color: var(--orange-primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 991px) {

    .works-grid,
    .approach-grid,
    .stories-grid,
    .testimonials-box {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .diff-container {
        flex-direction: column;
    }

    .roadmap-steps {
        flex-direction: column;
        gap: 40px;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    background-color: #0d1e50;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.newsletter-form {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 150px 15px 25px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px var(--orange-glow);
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--orange-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 30px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e65c00;
}

/* Case Studies Specific Styles */
.outcomes-text h4 {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.stat-box-large span {
    font-size: 64px;
    font-weight: 800;
    color: var(--orange-primary);
    line-height: 1;
    display: block;
}

.stat-box-large p {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

.filter-buttons {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* Grow With Us Section */
.grow-with-us-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
}

.grow-with-us-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grow-with-us-section .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grow-with-us-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.grow-with-us-section .container-full {
    position: relative;
    z-index: 2;
}

.grow-with-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.grow-with-us-text h2 {
    font-size: 80px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-transform: none;
}

.grow-with-us-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    font-weight: 500;
    padding-left: 5px;
}

.grow-with-us-action .btn-explore {
    display: inline-flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #FF5722;
    padding: 0 48px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.grow-with-us-action .btn-explore:hover {
    background: #F4511E;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px) {
    .grow-with-us-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .grow-with-us-text h2 {
        font-size: 60px;
    }
}

/* Leader Modal Styles */
/* ==========================================================================
   Leadership & Team Section - Premium Design
   ========================================================================== */

.team-leadership-section {
    padding: 120px 0;
    background: #fdfdfd;
}

.leadership-header {
    margin-bottom: 70px;
}

.leadership-header .sub-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.leadership-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #050724;
    margin-bottom: 40px;
}

/* Tab Navigation */
.leadership-tabs-wrapper {
    display: inline-flex;
    background: #eee;
    padding: 6px;
    border-radius: 50px;
    gap: 5px;
    margin-bottom: 20px;
}

.leadership-tab {
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #555;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leadership-tab:hover {
    color: var(--orange-primary);
}

.leadership-tab.active {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-shadow);
}

/* Grid & Cards */
.leadership-grid-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease;
}

.leadership-grid-layout.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
}

.leader-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--orange-shadow);
}

.leader-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.leader-card:hover .leader-img img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Social Overlay Indicator */
.leader-card::after {
    content: '\f08c';
    font-family: FontAwesome;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 5;
}

.leader-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.leader-details {
    padding: 24px;
    text-align: left;
    position: relative;
    background: #fff;
    flex-grow: 1;
}

.leader-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 30px;
    height: 3px;
    background: var(--orange-primary);
    transform: translateY(-50%);
}

.leader-details h4 {
    font-size: 18px;
    font-weight: 800;
    color: #050724;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.leader-details span {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Modal Design */
.leader-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.leader-modal.active {
    display: flex;
    opacity: 1;
}

.leader-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 36, 0.9);
    backdrop-filter: blur(10px);
}

.leader-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(255, 102, 0, 0.5);
    z-index: 10001;
}

.leader-modal.active .leader-modal-content {
    transform: translateY(0);
}

.leader-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: #050724;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-modal-close:hover {
    color: var(--orange-primary);
}

.leader-modal-body {
    display: flex;
    flex-wrap: wrap;
}

.leader-modal-img {
    flex: 0 0 40%;
    background: #f5f5f5;
}

.leader-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-modal-info {
    flex: 1;
    padding: 60px;
}

.leader-modal-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #050724;
}

.modal-leader-title {
    color: var(--orange-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    display: block;
}

.modal-leader-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .leader-modal-body {
        flex-direction: column;
        padding: 30px 20px;
    }

    .leader-modal-img {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .leader-modal-info h3 {
        font-size: 24px;
    }

    .modal-leader-bio {
        font-size: 15px;
    }

    .leader-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Zoom Modern Features - Additional Styles */
.zoom-tagline {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.zoom-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.zoom-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    margin-top: 0;
}

/* Zoom CTA Buttons */
.zoom-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.zoom-cta-primary,
.zoom-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoom-cta-primary {
    background: var(--orange-primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--orange-shadow);
}

.zoom-cta-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.zoom-cta-secondary {
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.zoom-cta-secondary:hover {
    background: var(--orange-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .zoom-tagline {
        font-size: 20px;
    }

    .zoom-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .zoom-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .zoom-cta-primary,
    .zoom-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ==========================================================================
   Service Detail Page Styles (Advisory & Consulting)
   ========================================================================== */

.service-detail-section {
    padding: 100px 0;
    background: #fff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.service-hero-wrapper {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
}

.service-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.service-heading {
    font-size: 36px;
    font-weight: 700;
    color: #050724;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.service-subheading {
    font-size: 24px;
    font-weight: 700;
    color: #050724;
    margin-bottom: 20px;
    margin-top: 40px;
}

/* Key Benefits Grid in Service Detail */
.key-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .key-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.05);
    border-color: var(--orange-primary);
}

.benefit-icon {
    font-size: 32px;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #050724;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Sidebar Styles */
.service-sidebar {
    position: static;
}

@media (min-width: 992px) {
    .service-sidebar {
        position: sticky;
        top: 120px;
        /* Adjust based on header height */
    }
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-primary);
}

.services-list-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-widget ul li {
    margin-bottom: 10px;
}

.services-list-widget ul li a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    color: #555;
    font-weight: 600;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-list-widget ul li a:hover,
.services-list-widget ul li a.active {
    background: var(--orange-primary);
    color: #fff;
    border-color: var(--orange-primary);
    transform: translateX(5px);
}

.services-list-widget ul li a::after {
    content: '\f105';
    font-family: FontAwesome;
}

.contact-widget {
    background: #050724;
    color: #fff;
    text-align: center;
}

.contact-widget h3 {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.btn-contact-sidebar {
    display: inline-block;
    padding: 12px 30px;
    background: var(--orange-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-sidebar:hover {
    background: #fff;
    color: var(--orange-primary);
}

/* Sticky Footer Implementation */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto !important;
}

/* Leadership Team Modern - Based on user request */
.leadership-section-modern {
    position: relative;
    padding: 5rem 0;
    background-color: #111827;
    /* Dark background implied by text-white */
    overflow: hidden;
    color: #fff;
}

.leadership-bg-glow {
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 520px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(64px);
    z-index: 0;
}

.leadership-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.leadership-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Tabs */
.leadership-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    width: fit-content;
    margin: 0 auto;
}

.leadership-tab {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    background: transparent;
    color: #000;
}

.leadership-tab:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.leadership-tab.active {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.2);
}

/* Grid */
.leadership-grid-layout {
    display: none;
    /* Hidden by default */
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.leadership-grid-layout.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

@media (min-width: 640px) {
    .leadership-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .leadership-grid-layout {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Modern Card */
.leader-card-modern {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.leader-card-modern:hover {
    box-shadow: 0 25px 50px -12px rgba(255, 102, 0, 0.25);
    transform: translateY(-5px);
}

.leader-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #e5e7eb;
}

.leader-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: grayscale(100%);
}

.leader-card-modern:hover .leader-img-modern {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.leader-info-modern {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-name-modern {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
}

.leader-role-modern {
    font-size: 0.875rem;
    /* text-sm */
    color: #374151;
    /* text-gray-700 */
    line-height: 1.6;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-linkedin {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: var(--orange-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.2);
}

.leader-card-modern:hover .leader-linkedin {
    opacity: 1;
    transform: translateY(0);
}

.leader-linkedin:hover {
    background-color: #fff;
    color: var(--orange-primary);
    transform: translateY(-2px);
}


/* Modal Styles */
.leader-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-modal.active {
    display: flex;
    opacity: 1;
}

.leader-modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(255, 102, 0, 0.1), 0 10px 10px -5px rgba(255, 102, 0, 0.04);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.leader-modal.active .leader-modal-content {
    transform: scale(1);
}

.leader-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    color: #9ca3af;
    transition: color 0.3s;
}

.leader-modal-close:hover {
    color: #111827;
}

.leader-modal-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.1);
}

.leader-modal h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.leader-modal h4 {
    font-size: 1rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.leader-modal p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

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

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

/* AI Approach Section */
.ai-approach-section {
    position: relative;
    padding: 2rem 0;
    margin-top: -70px;
    /* Pull up to overlap hero slightly */
    z-index: 10;
}

.ai-approach-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.ai-intro-text {
    font-size: 25px;
    color: #333;
    font-weight: 500;
}

.ai-flex-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8.5rem;
    flex-wrap: wrap;
}

.ai-branding {
    font-size: 20rem;
    font-weight: 800;
    color: #ea580c;
    /* Orange */
    line-height: 1;
    letter-spacing: -2px;
    margin-top: -150px;
}

.ai-steps-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.ai-step {
    text-align: center;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-step h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ai-step p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    max-width: 210px;
}

.ai-step-separator {
    width: 2px;
    height: 80px;
    background-color: #ea580c;
    /* Orange */
    margin-top: 10px;
    opacity: 0.6;
}

/* =========================
   Solution Categories – Flip Cards
   Responsive | No HTML change
========================= */
.solution-categories-section {
    padding: 60px 20px;
    background: #fff;
}

/* Grid */
.solution-categories-section .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Category wrapper */
.category-item {
    text-align: center;
}

/* Title */
.category-title {
    font-size: 28px;
    font-weight: 700;
    color: #f26522;
    margin-bottom: 20px;
}

/* Card outer box */
.category-card-box {
    perspective: 1200px;
}

/* Card inner (flip container) */
.category-card-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s ease;
    -webkit-transition: transform 0.8s ease;
}

/* Flip on hover */
.category-card-box:hover .category-card-inner {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

/* Front & Back common */
.category-card-front,
.category-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-radius: 16px;
    border: 2px solid #f26522;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Soft shadow */
.category-card-front {
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
    z-index: 2;
}

/* Icon */
.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 90px;
    height: auto;
}

/* Back side */
.category-card-back {
    transform: rotateY(180deg);
    box-shadow: 0 12px 40px rgba(242, 101, 34, 0.25);
    background: #333;
    color: #fff;
    z-index: 1;
}

/* Back content */
.category-back-content {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.category-back-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
}

/* Button */
.category-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #f26522;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #d9541b;
    transform: translateY(-2px);
}

/* =========================
   Responsive
========================= */

/* Tablets */
@media (max-width: 1024px) {
    .solution-categories-section .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card-inner {
        height: 300px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    /* AI Section Tablet */
    .ai-flex-row {
        gap: 2rem;
        justify-content: flex-start;
    }

    .ai-steps-wrapper {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ai-step-separator {
        display: none;
    }

    .ai-branding {
        font-size: 8rem;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        text-align: left;
        margin-left: 0;
        overflow: visible !important;
        line-height: 1;
        margin-top: 0 !important;
    }

    .ai-approach-card {
        padding: 2rem 1.5rem;
    }
    
    .ai-step {
        max-width: 180px;
    }
    
    .ai-step h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* AI Section Mobile */
    .ai-branding {
        font-size: 6rem;
        margin-top: 0 !important;
        overflow: visible !important;
        line-height: 1;
    }
    
    .ai-intro-text {
        font-size: 18px;
    }
    
    .ai-step {
        max-width: 150px;
    }
    
    .ai-step h3 {
        font-size: 1.6rem;
    }
    
    .ai-step p {
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .solution-categories-section .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-categories-section {
        padding: 40px 15px;
    }
    
    .category-card-inner {
        height: 280px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .category-back-content p {
        font-size: 15px;
    }
    
    /* AI Section Small Mobile */
    .ai-branding {
        font-size: 4rem;
        text-align: center;
        margin-left: 0;
        margin-top: 0 !important;
        overflow: visible !important;
        line-height: 1;
    }
    
    .ai-intro-text {
        font-size: 16px;
        margin-left: 0;
        padding: 0 10px;
        text-align: center;
    }
    
    .ai-approach-card {
        padding: 1.5rem 1rem;
    }
    
    .ai-steps-wrapper {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .ai-step {
        max-width: 100%;
        width: 100%;
    }
    
    .ai-step h3 {
        font-size: 1.3rem;
    }
    
    .ai-step p {
        font-size: 0.8rem;
        max-width: 100%;
    }
}

@media (max-width: 425px) {
    .ai-branding {
        margin-top: 0 !important;
        font-size: 3.5rem;
        overflow: visible !important;
        line-height: 1;
    }
    
    .ai-intro-text {
        font-size: 15px;
    }
    
    .ai-step h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .ai-branding {
        font-size: 3rem;
        margin-top: 0 !important;
        overflow: visible !important;
        line-height: 1;
    }
    
    .ai-intro-text {
        font-size: 14px;
    }
    
    .ai-step h3 {
        font-size: 1.1rem;
    }
    
    .ai-step p {
        font-size: 0.75rem;
    }
}

/* Implementation Roadmap Section */
.implementation-roadmap-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.roadmap-header {
    margin-bottom: 80px;
}

.roadmap-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d1e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.roadmap-header h2 span {
    color: #ea580c;
}

.roadmap-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 4px;
}

/* Add a gradient progress bar look to the line */
.roadmap-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ea580c 0%, #0d1e50 100%);
    opacity: 0.3;
    border-radius: 4px;
}

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

.roadmap-step {
    padding: 0 10px;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 5px solid transparent;
    height: 100%;
    margin-top: 50px;
    /* Space for icon */
}

.roadmap-step:hover .step-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
    border-top-color: #ea580c;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.1);
    border: 4px solid #f8fafc;
    z-index: 3;
}

.step-icon-box i {
    font-size: 32px;
    color: #ea580c;
    transition: color 0.3s, transform 0.3s;
}

.roadmap-step:hover .step-icon-box i {
    color: #0d1e50;
    transform: scale(1.1);
}

.roadmap-step:hover .step-icon-box {
    border-color: #ea580c;
}

.step-phase {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-top: 10px;
    margin-bottom: 10px;
}

.roadmap-step:hover .step-phase {
    color: #ea580c;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0d1e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .roadmap-line {
        display: none;
        /* Hide horizontal line on tablet/mobile */
    }

    .step-card {
        margin-top: 40px;
    }
}

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

    .implementation-roadmap-section {
        padding: 60px 0;
    }
}

.m-tab-head-icon{
    width:60px !important; height:60px !important;
}