/* ============================================================
   PAGE LOADER STYLES - Cross-Browser Compatible
   ============================================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00032c 0%, #001a4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
}

.loader-logo {
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    -webkit-animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* Pulse Animation */
@keyframes pulse {

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

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

@-webkit-keyframes pulse {

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

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }
}

/* Prevent scrolling while loading */
body.loading {
    overflow: hidden;
    height: 100vh;
}

/* Header Styles */
.header-section {
    background: transparent;
    padding: 24px 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header-section.scrolled {
    background: rgba(0, 3, 44, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    height: 58px;
}

.logo-img {
    height: 57.87px;
    width: auto;
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    margin-left: 100px;
}

.nav-link-custom {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary-header {
    background: var(--text-primary);
    color: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.header-solution-btn {
    border: 1px solid var(--blue-600-Brand, #1181D0);
    padding: 7px 19px;
    font-size: 13px;
    line-height: 16px;
}

.btn-primary-header:hover {
    background: hsla(205, 85%, 44%, 1);
    color: var(--text-primary);
}

/* Mega Menu Styles */
.nav-item-dropdown {
    display: inline-block;
}

.mega-menu {
    position: fixed;
    top: 70px;
    /* Header height + gap */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    pointer-events: none;
    padding-top: 34px;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu-wrapper {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 12px;
    pointer-events: all;
}

.mega-menu-container {
    border-radius: 8px;
    padding: 8px;
    min-width: 1024px;
    background: #F4FAFF;
    border: 1px solid #CBE9FF;
    box-shadow: 0px 4px 8px rgba(17, 16, 48, 0.1);
    display: flex;
    gap: 16.5px;
}

.Who_we_are_container {
    min-width: 836px;
}

.mega-menu-featured {
    flex-shrink: 0;
}

.featured-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px 0px rgba(17, 16, 48, 0.1);
    width: 212px;
    height: 100%;
    position: relative;
}

.featured-image {
    width: 100%;
    height: 216px;
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.featured-content {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.Who_we_are_container .featured-content {
    gap: 10px;
}

.Who_we_are_container .featured-description {
    margin-bottom: 0;
}

.featured-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.featured-title {
    font-size: 15px;
    font-weight: 500;
    color: #E8F5FF;
    margin: 0;
    line-height: 18px;
    letter-spacing: -0.16px;
}

.featured-description {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #D1D5DB;
}

.btn-white {
    background: transparent;
    border: 1px solid #1181D0;
    color: #111030;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-see-case:hover {
    background: #1181D0;
    color: #FFFFFF;
}

.mega-menu-solutions {
    flex: 1;
    display: flex;
    gap: 16px;
}


.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.solution-item {
    background: #E8F5FF;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
    width: 184px;
    height: 102px;
    border: 1px solid transparent;
    transition: 0.2s ease all;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .nav-item-dropdown.who-we-are .solutions-grid {
    justify-content: center;
}
 */
.nav-item-dropdown.who-we-are .solution-item {
    height: auto;
    width: calc(33.33% - 8px);
}



.solution-item:hover {
    border: 1px solid var(--blue-600-Brand, #1181D0)
}

.solution-item .solution-link-wrapper {
    height: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-item-dropdown.who-we-are .solution-item .solution-link-wrapper {
    justify-content: center;
}

.solution-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    transition: 0.2s ease all;
}

.Who_we_are_container .solution-icon {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.solution-item:hover .solution-icon {
    color: #112954;
}

.solution-icon svg {
    width: 20px;
    height: 20px;
}

.solution-icon svg.arrow-icon {
    margin-left: auto;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: 0.2s ease all;
}

.solution-item:hover .solution-icon svg.arrow-icon {
    opacity: 1;
}

.solution-info {
    height: fit-content;
}

.solution-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 16px;
    letter-spacing: -0.14px;
}

.solution-desc {
    font-size: 12px;
    line-height: 16PX;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
}

/* Search Mega Menu Styles */
.search-item-dropdown {
    display: inline-block;
    position: relative;
}

.search-mega-menu {
    position: absolute;
    top: calc(100% + 34px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    pointer-events: none;
}

.search-item-dropdown.active .search-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.search-mega-menu-container {
    flex-direction: column;
    gap: 16px;
    min-width: 716px;
    max-width: 716px;
    padding: 16px;
}

.search-mega-menu-searchbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 39px;
    padding: 8px 12px;
    background: #F4FAFF;
    border: 1px solid #CBE9FF;
    border-radius: 6px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.search-input-wrapper svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.search-input {
    border: none !important;
    background: transparent;
    outline: none;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    color: #4B5563 !important;
    font-family: 'Sharp Sans', sans-serif;
    width: 100%;
    letter-spacing: -0.14px;
}

.search-input::placeholder {
    color: #4B5563;
}

.search-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.search-close-btn:hover {
    background: rgba(107, 114, 128, 0.1);
}

.search-close-btn svg {
    width: 16px;
    height: 16px;
}

.search-no-results {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #CBE9FF;
    border-radius: 4px;
    width: 100%;
}

.search-no-results svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.search-no-results span {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #374151;
    font-family: 'Sharp Sans', sans-serif;
}

.search-recommendations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recommendations-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #1181D0;
    margin: 0;
    font-family: 'Sharp Sans', sans-serif;
}

.recommendations-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.recommendation-card {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    overflow: hidden;
    background: #E8F5FF;
}

.recommendation-image {
    width: 118px;
    flex-shrink: 0;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendation-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 16px;
    background: #E8F5FF;
    border-radius: 0 8px 8px 0;
    width: 212px;
}

.recommendation-content .btn {
    width: fit-content;
}

.recommendation-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recommendation-title {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    color: #111030;
    margin: 0;
    letter-spacing: -0.16px;
    font-family: 'Sharp Sans', sans-serif;
}

.recommendation-description {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #4B5563;
    margin: 0;
    font-family: 'Sharp Sans', sans-serif;
}

.btn-secondary-small {
    background: transparent;
    border: 1px solid #1181D0;
    color: #1181D0;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    letter-spacing: -0.14px;
    font-family: 'Sharp Sans', sans-serif;
}

.btn-secondary-small:hover {
    background: #1181D0;
    color: #FFFFFF;
}

/* Search Results Links */
.search-results-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
}

.search-result-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 12px;
    border-top: 1px solid #CBE9FF;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: -1px;
    text-decoration: none;
    color: inherit;
}

.search-result-item:first-child {
    margin-top: 0;
    border-top: 1px solid #CBE9FF;
}

.search-result-item:hover {
    background: rgba(203, 233, 255, 0.3);
}

.search-result-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #374151;
    font-family: 'Sharp Sans', sans-serif;
}

.search-result-type {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #374151;
    font-family: 'Sharp Sans', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    min-height: 1200px;
    padding: 176px 0 0 0;
    background-color: #00032C;
}

.hero-section .row {
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mask: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.24px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 652px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn {
    min-width: 175px;
    text-align: center;
    justify-content: center;
}

.hero-buttons .btn-primary-header {
    padding: 11px 36.5px;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.18px;
    border: 1px solid var(--text-primary);
}


.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
    padding: 11px 15px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-globe {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

/* .hero-globe img {
    height: 680px;
    width: auto;
} */

.hero-globe video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Trusted By Section */
.trusted-section {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 0;
}

.hero-trusted-section {
    margin-top: 0;
}

.trusted-card {
    border-radius: 8px;
    padding: 16px 24px;
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
}

.hero-trusted-section .trusted-card {
    background: #F4FAFF;
    border: 1px solid #25A3FF;
}

.trusted-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: -0.019em;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.trusted-logos-slider {
    overflow: hidden;
    flex: 1;
    position: relative;
    width: 100%;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    will-change: transform;
}

.trusted-logo-item {
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo-item img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Statistics Section */
.stats-section {
    background-color: var(--bg-primary);
    padding: 20px 100px 60px;
    /* margin-top: -90px; */
}

.stats-grid {
    display: flex;
    gap: 25px;
    max-width: 1242px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    width: 20%;
    padding: 16px 20px 16px 20px;
    border-left: 2px solid;
    border-image: linear-gradient(180deg, rgba(17, 16, 48, 1) 0%, rgba(37, 163, 255, 1) 50%, rgba(17, 16, 48, 1) 100%) 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--text-primary);
    margin: 0;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Why Intensity Global Section */
.why-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #00032C;
    padding-bottom: 60px;
}

.why-background {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 64px;
    overflow: hidden;
    z-index: 0;
    width: 1940px;
    height: 754px;
}

.why-ellipse-outer {
    border-radius: 50%;
    pointer-events: none;
    background: var(--bg-primary);
    /* Create gradient border using double-background technique */
    overflow: hidden;
}

.why-ellipse-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(180deg, rgba(105, 223, 202, 1) 0%, rgba(0, 3, 44, 1) 13%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.why-ellipse-inner {
    width: 1940px;
    height: 754px;
    background: linear-gradient(180deg, rgba(105, 223, 202, 0.3) 0%, rgba(0, 3, 44, 0) 25.2%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.why-container {
    padding: 0;
    margin-top: 200px;
    position: relative;
}

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

.why-title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.why-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.64px;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    width: 100%;
}

.features-grid {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}

.feature-card {
    position: relative;
    flex: 1;
    min-height: 128px;
    width: 25%;
    display: flex;
    align-items: flex-start;
}

.feature-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    z-index: 2;
}

.feature-icon {
    width: 100%;
    height: 100%;
}

.feature-content {
    position: absolute;
    left: 13.5px;
    top: 44px;
    width: calc(100% - 13.5px);
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 2px solid;
    border-image: linear-gradient(180deg, rgba(17, 16, 48, 1) 0%, rgba(37, 163, 255, 1) 48%, rgba(17, 16, 48, 1) 100%) 1;
}

.feature-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.24px;
    color: var(--text-primary);
    margin: 0;
}

.why-button-wrapper {
    padding-top: 26px;
    width: 300px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-arrow {
    width: 33px;
    height: 33px;
    flex-shrink: 0;
}

/* Video Flip Component Wrapper */
.hero-clip {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-benner-box {
    height: calc(100vh - 415px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* padding-bottom: 100px; */
}

/* video section */
.hero-button-box {
    /* margin-top: 86px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-origin {
    width: 171px;
    height: 96px;
    display: inline-flex;
    transform: translate(0, 11px);
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1440px) {
    .image-origin {
        height: 96px;
        margin-bottom: 0;
        transform: none;
    }
}

/* hero video section */
/* remove if video hero remove */
.image-origin {
    width: 190px;
    height: 95px;
    /*  margin-left: 30px;
    margin-right: 16px; */
    display: inline-flex;
    transform: translate(0, 11px);
    position: relative;
    z-index: 1;
}

.section_home-hero_showreel {
    background-color: #fff0;
    padding-left: 0%;
    padding-right: 0%;
    position: relative;
}

.showreel_placeholder {
    border: 2px #000;
    max-width: 1400px;
    height: 654.484px;
    margin-left: auto;
    margin-right: auto;
}

.showreel_placeholder._2 {
    width: 100%;
    max-width: none;
    height: 100vh;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
}

.target {
    opacity: 1;
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    width: 100%;
    height: 100%;
}

.target.show-reel-bg {
    cursor: pointer;
}

.background-video {
    will-change: transform;
    width: 100%;
    height: 100%;
}

.div-block {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.w-background-video>video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
    /* Cross-browser compatibility */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent showing controls */
    pointer-events: none;
}

/* Safari-specific video fixes */
@supports (-webkit-appearance: none) {
    .w-background-video>video {
        -webkit-mask-image: -webkit-radial-gradient(white, black);
        mask-image: radial-gradient(white, black);
    }
}

/* Firefox-specific optimizations */
@-moz-document url-prefix() {
    .w-background-video>video {
        transform: translateZ(0);
    }
}

.w-background-video>iframe {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: auto;
    position: absolute;
    inset: -100%;
    aspect-ratio: 16 / 9;
}

.ytp-title {
    display: none !important;
    visibility: hidden;
}

/* Hide all video controls across all browsers */
.w-background-video>video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
}

.w-background-video>video::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

.w-background-video>video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

.w-background-video>video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Firefox */
.w-background-video>video::-moz-media-controls {
    display: none !important;
}

/* IE/Edge */
.w-background-video>video::-ms-media-controls {
    display: none !important;
}

.w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
}

.w-background-video--control>[hidden] {
    display: none !important;
}

@media screen and (min-width: 1440px) {

    .image-origin {
        height: 96px;
        margin-bottom: 0;
        transform: none;
    }

    /*  .showreel_placeholder._2 {
        height: 80vh;
    } */

    .background-video {
        width: 100%;
        height: 100%;
    }

    .div-block {
        z-index: 1;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .target {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media screen and (max-width: 479px) {
    .image-origin {
        width: 110px;
        height: 54px;
        margin: -5px 0 0 20px;
        transform: translate(0, 4px);
    }

    .target {
        will-change: transform, height, width;
        margin-top: -5px;
    }
}

/* Services Section */
.services-section {
    padding: 60px 0 60px 0;
    position: relative;
    /* background-color: #00032C; */
}

.services-section-wrapper {
    padding: 60px 95.93px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    border-radius: 12px;
    position: relative;
    background-color: #0E0A84;
    z-index: 0;
}

.services-bg-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.45;
}

.services-bg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.services-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 36px;
    line-height: 48px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.section-subtitle span {
    color: #69DFCA
}

.section-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -0.64px;
}

.services-container {
    position: relative;
    padding-top: 45px;
    padding-left: 62.14px;
    padding-right: 62.14px;
    padding-bottom: 82px;
}

.services-container-box {
    position: relative;
    background-color: #11295469;
    border-radius: 16px;
    padding: 15px 13px;
    width: 923px;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-container-box .service-inner-img {
    width: 100%;
    height: auto;
}

.services-container-box .service-inner-img.pc {
    display: block;
}

.services-container-box .service-inner-img.tab {
    display: none;
}

.services-container-box .service-inner-img.mobile {
    display: none;
}

.services-container-box .services-box {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-container-box .services-box img {
    outline: 5px solid #FFFFFF29;
    border-radius: 8px;
    width: 98px;
    height: 98px;
    object-fit: cover;
    object-position: center;
}

.services-container-box .services-box p {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.24px;
    color: #FDFEFF;
    margin-bottom: 0;
}

.services-container-box .services-box.first {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 176px), calc(-50% - 178px));
}

.services-container-box .services-box.second {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 176px), calc(-50% - 178px));
}

.services-container-box .services-box.third {
    top: 50%;
    right: 0;
    transform: translate(calc(-50% + 142px), calc(-50% + 20px));
}

.services-container-box .services-box.fourth {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 240px), calc(-50% + 213px));
}

.services-container-box .services-box.fifth {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 5px), calc(-50% + 213px));
}

.services-container-box .services-box.sixth {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 243px), calc(-50% + 213px));
}

.services-container-box .services-box.seventh {
    top: 50%;
    left: 0;
    transform: translate(-45%, calc(-50% + 20px));
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* .services-bg-img {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 100% 100%;
    object-fit: cover;
    opacity: 0.3;
} */

.services-carousel {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.networking-bg {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.infrastructure-bg {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
}

.ai-bg {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
}

.sap-bg {
    background: linear-gradient(135deg, #01579b 0%, #0277bd 100%);
}

.managed-bg {
    background: linear-gradient(135deg, #004d40 0%, #00695c 100%);
}

.cloud-bg {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.security-bg {
    background: linear-gradient(135deg, #b71c1c 0%, #c62828 100%);
}

.service-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 20px;
    margin: 0;
    text-align: center;
}

/* Awards Section */
.awards-section {
    /* background: var(--bg-primary); */
    padding: 60px 0;
    overflow: hidden;
}

.awards-slider {
    position: relative;
    width: 100%;
}

.awards-items {
    display: flex;
    align-items: center;
    gap: 40px;
    will-change: transform;
}

.award-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 25vw;
    width: 25vw;
}

.awards-section .section-header {
    margin-bottom: 60px;
}

.awards-section .section-subtitle {
    /*  font-size: 36px;
    line-height: 48px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 16px; */
    text-align: left;
}

.awards-section .section-title {
    /*    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -0.64px; */
    text-align: left;
}

.awards-carousel {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.awards-carousel .owl-stage-outer {
    overflow: visible;
}

.awards-carousel .owl-item {
    transition: none;
    padding: 0 15px;
}

.awards-carousel .owl-item.center .award-card {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.awards-carousel .owl-item:not(.center) .award-card {
    opacity: 0.6;
    transform: scale(0.85);
}

.awards-carousel .owl-item {
    opacity: 1 !important;
    animation: none !important;
}

.awards-carousel .award-card {
    animation: none !important;
}

.awards-carousel .owl-stage {
    display: flex;
    align-items: flex-start;
}

.awards-carousel .owl-dots {
    display: none !important;
}

.award-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    height: auto;
    opacity: 1 !important;
    transform: none !important;
}

.award-card:hover {
    transform: none;
}

.award-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    outline: 6px solid #FFFFFF1F;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 0.897 / 1;
    object-fit: cover;
    object-position: center;
}

.award-content {
    padding: 0;
}

.award-caption {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.2px;
    margin: 0;
}

.award-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 30px;
    letter-spacing: -0.26px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.award-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
}

.owl-item .item,
.owl-item .item .award-card {
    width: 100%;
}

/* Footer */
.footer-section {
    position: relative;
    padding: 25px;
    /* min-height: 1136px; */
    margin-top: 60px;
    /* background-color: #F4FAFF; */
}

.footer-container {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.footer-featured {
    background: #FFFFFF1F;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.footer-featured-inner {
    background: #F4FAFF;
    padding: 39px;
    border-radius: 10px;
    border: 1px solid var(--blue-200, #CBE9FF)
}

.footer-featured-header {
    margin-bottom: 40px;
}

.footer-featured-header .footer-featured-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.6px;
    color: #112954;
    margin-bottom: 16px;
}

.footer-featured-header .footer-featured-subtitle {
    color: #1F2937;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.18px;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 729px;
}

.contact-form .form-control.border-blue {
    border: 1px solid #6EB5E8;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-label {
    color: #374151;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.14px;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    color: #111030;
    padding: 15px 17px;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .form-control:focus,
.contact-form .form-control:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.15);
    border-color: #1181D0;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #6B7280;
    opacity: 1;
}

.contact-form .btn-tertiary {
    margin-top: 0;
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: -0.16px;
    padding: 10px 20px;
}

.contact-form .btn-tertiary:hover {
    color: #1181D0;
}

.contact-form .form-control:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    opacity: 0.5;
}

.footer-featured-contact-info {
    background: #CBE9FF;
    border: 1px solid #FFFFFF1F;
    padding: 24px;
    border-radius: 12px;
}

.footer-featured-contact-info img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 24px;
    border-radius: 12px;
}

.footer-featured-contact-info-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.24px;
    color: #111030;
    margin-bottom: 12px;
}

.footre-button {
    width: fit-content;
}

/* .footre-button {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: -0.16px;
    padding: 9px 19px;
}

.footre-button:hover {
    box-shadow: none;
    background: var(--primary-color);
} */

.footer-featured-compney-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-right: 70px;
}

.footer-featured-compney-info img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.footer-featured-compney-info-description {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #D1D5DB;
    margin-bottom: 0;
}

.footer-featured-compney-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.footer-featured-compney-info-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #FFFFFF1F;
    padding: 10px;
    transition: all 0.3s ease;
}

.footer-featured-compney-info-list li a:hover {
    background: transparent;
}

.footer-nav-links-title {
    font-size: 12px;
    line-height: 40px;
    font-weight: 500;
    color: #D1D5DB;
    margin-bottom: 8px;
}

.footer-nav-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-links-list li {
    line-height: 16px;
}

.footer-nav-links-list li a {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #FDFEFF;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav-links-list li a:hover {
    color: var(--primary-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.footer-contact-info-item p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #FDFEFF;
    margin-bottom: 0;
}

.footer-contact-info-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FDFEFF;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: -0.12px;
}

.footer-contact-info-item a:hover {
    color: var(--primary-color);
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #1181D0;
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer-bottom-info-bottom {
    padding-top: 20px;
}

.footer-bottom-info-bottom .footer-bottom-info-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-info-bottom-inner-left p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #111030;
    margin-bottom: 0;
    letter-spacing: -0.14px;
}

.footer-bottom-info-bottom-inner-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-bottom-info-bottom-inner-right p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0;
    letter-spacing: -0.14px;
}











.input-with-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-dropdown svg {
    position: absolute;
    right: 12px;
    color: var(--text-primary);
    pointer-events: none;
}

.company-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-top: 16px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.footer-link-title {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.footer-address {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1390px;
    margin: 0 auto;
    padding: 20px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-bottom-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-bottom-link ul li {
    position: relative;
    padding: 0 16px;
}

.footer-bottom-link ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #1181D0;
}

.footer-bottom-link ul li:first-child {
    padding-left: 0;
}

.footer-bottom-link ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-link ul li a:hover {
    color: #1181D0;
}

.footer-bottom-rights p {
    margin: 0;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.footer-designed {
    display: flex;
    align-items: center;
    gap: 8px;
}

.designer-name {
    font-weight: 600;
}

/* Owl Carousel Customization */
.owl-carousel {
    margin-top: 0;
}

.owl-carousel .owl-item {
    padding: 0 33.25px;
}

.owl-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: var(--primary-color) !important;
    color: var(--text-primary) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.5rem !important;
    transition: all 0.3s;
}

.owl-carousel .owl-nav button:hover {
    background: #0d6ba8 !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    margin-top: 2rem;
    text-align: center;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 5px;
    transition: all 0.3s;
}

.owl-carousel .owl-dots button.owl-dot.active {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 6px;
}

/* ============================================================
   FORM VALIDATION STYLES
   ============================================================ */
input.invalid,
textarea.invalid,
select.invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.file-info {
    color: #28a745;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}