/*--------HEADER--------*/


/* Sticky header — also fix parent containers that break sticky */
/* Sticky blurred header — always blur from this color */
.oom-globle-header,
.oom-globle-header.e-con,
.elementor-location-header,
.elementor-sticky--active .oom-globle-header,
.elementor-sticky--active.elementor-location-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  backdrop-filter: blur(12px) !important;
	
  -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(210, 217, 223, 0.3) !important;
}

/* Blur overlay — below header */
body::after {
  content: '' !important;
	
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 30, 60, 0.15) !important;pr
  backdrop-filter: blur(2px) !important;oom-contact-us-container
	
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 99 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}
body.nav-open::after {
  opacity: 1 !important;
}

/* Submenu smooth drop */
/* .oom-header-menu .sub-menu {
  display: block !important;
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease !important;
  pointer-events: none !important;
  transition-delay: 0s !important;
} */
.oom-header-menu .menu-item:hover > .sub-menu {
  max-height: 500px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  transition-delay: 0s !important;	
}

/* ── Delay on close so user has time to reach submenu ── */
.oom-header-menu .menu-item > .sub-menu {
  transition-delay: 0.3s !important;
}

.oom-header-menu .menu-item:hover > .sub-menu {
  transition-delay: 0s !important;
}

/* Underline 100px */
.oom-header-menu .elementor-item {
  position: relative !important;
}
.oom-header-menu .elementor-item::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 2px !important;
  background: currentColor !important;
  transition: width 0.25s ease !important;
}
.oom-header-menu .elementor-item:hover::after,
.oom-header-menu .elementor-item.elementor-item-active::after {
  width: 100px !important;
}

.oom-header-menu .sub-menu {
  top: 100% !important; /* distance from bottom of nav item */
  margin-top: 30px !important; /* add gap between header bottom and submenu */
}

@media (max-width: 1024px) {
  .oom-header-menu .sub-menu {
    margin-top: 25px !important;
  }
}
/*--------HERO SECTION--------*/

/* Frosted glass effect for the stats container */
.oom-glass-bg {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);

}

/* Style counter title text */
/* Align counter title lines vertically centered */
.oom-countdown-numbers .elementor-counter-title {
  text-align: center;
}

.oom-hero {
background: linear-gradient(180deg, #a1b6c6 0%, #FCFCFC 20%);
}

/* Remove absolute positioning on mobile */
@media (max-width: 767px) {
  .oom-countdown-container {
    position: relative !important;
  }
}

/*--------OUR SERVICES--------*/

/* Wrapper */
.oom-vtabs { position: relative !important; width: 100% !important; }

/* ── Tab navigation ── */
.oom-vtabs__nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 40px !important;
  background: #fff !important;
  border-radius: 16px 16px 0 0 !important;
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
	border-radius: 0px 0px 60px 60px !important;
    margin-bottom: -55px;
}

/* ── Tabs row — spread edge to edge, dots all on same baseline ── */
.oom-vtabs__tabs-row {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  width: 1200px !important;
  flex-wrap: nowrap !important;
}

/* ── Tab button ── */
.oom-vtab {
  background: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 16px !important;
  cursor: pointer !important;
  padding: 0 !important;
  text-align: left !important;
  flex: 1 !important;
  transition: color 0.2s !important;
}

.oom-vtab,
.oom-vtabs__arrow {
  border: none !important;
}

/* ── Last tab aligns to right edge ── */
.oom-vtab:last-child {
  align-items: flex-end !important;
  text-align: right !important;
}

/* ── Tab label ── */
.oom-vtab__label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #bfcdd6 !important;
  display: block !important;
  transition: color 0.2s !important;
}

.oom-vtab.active .oom-vtab__label { color: #0D3F65 !important; }
.oom-vtab:hover .oom-vtab__label { color: #0D3F65 !important; }

/* ── Dot inside each tab ── */
.oom-dot {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #bfcdd6 !important;
  display: block !important;
  flex-shrink: 0 !important;
  margin-top: auto !important;
  transition: background 0.2s !important;
}

.oom-vtab.active .oom-dot { background: #0D3F65 !important; }
.oom-vtab:hover .oom-dot { background: #0D3F65 !important; }

/* ── Slides container ── */
.oom-vtabs__slides {
  position: relative !important;
  height: 560px !important;
  overflow: hidden !important;
  display: flex !important;
}

/* ── Individual slide ── */
.oom-vtabs__slide {
  position: relative !important;
  min-width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transition: none !important;
  flex-shrink: 0 !important;
}

.oom-vtabs__slide.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ── Slide track — moves left/right ── */
.oom-vtabs__track {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform !important;
}

/* ── Video fills slide ── */
.oom-vtabs__slide video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── Dark overlay ── */
.oom-vtabs__overlay {
  position: absolute !important;
  inset: 0 !important;
    background: rgba(13, 63, 101, 0.4) !important;
}

/* ── Text content inside slide ── */
.oom-vtabs__content {
  position: absolute !important;
  top: 100px !important;
  left: calc((100vw - 1200px) / 2 + 0px) !important;
  max-width: 520px !important;
  z-index: 2 !important;
}

@media (max-width: 1024px) {
    .oom-vtabs__content {
        left: 0px !important;
        padding-left: 40px !important;
    }
}

@media (max-width: 767px) {
    .oom-vtabs__content {
        max-width: 90% !important;
    }
}

.oom-vtabs__content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0px !important;
  color: #FCFCFC !important;
  margin: 0 !important;
}

/* ── Arrows ── */
.oom-vtabs__arrow {
  position: absolute !important;
  top: 60% !important;
  transform: translateY(-50%) !important;
  z-index: 3 !important;
  background: #3E6887 !important;
  color: #fff !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
	  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.oom-vtabs__arrow:focus,
.oom-vtabs__arrow:active {
  outline: none !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important; /* keeps it from shifting on tap */
}

.oom-vtabs__arrow:hover { background: rgba(255,255,255,0.3) !important; }
.oom-vtabs__arrow--prev { left: 20px !important; }
.oom-vtabs__arrow--next { right: 20px !important; }

/* ── Replace arrow icon with PNG ── */
.oom-vtabs__arrow--prev {
  background-image: url('https://nkrcontinental.com/my/wp-content/uploads/2026/06/Vector-4.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  color: transparent !important;
  font-size: 0 !important;
}

.oom-vtabs__arrow--next {
  background-image: url('https://nkrcontinental.com/my/wp-content/uploads/2026/06/Vector-3.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  color: transparent !important;
  font-size: 0 !important;
}

.oom-vtabs__arrow--prev,
.oom-vtabs__arrow--next {
  width: 60px !important;
  height: 60px !important;
	  background-size: 15px !important;

}

.oom-vtabs__arrow--prev:hover,
.oom-vtabs__arrow--next:hover {
  background-color: #6F90A9 !important;
}

/* ── Prevent arrow moving on hover ── */
/* ── Prevent arrow moving on hover, keep image visible ── */
.oom-vtabs__arrow--prev:hover {
  background-image: url('https://nkrcontinental.com/my/wp-content/uploads/2026/06/Vector-4.png') !important;
  background-color: #6F90A9 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px !important;
  transform: translateY(-50%) !important;
}

.oom-vtabs__arrow--next:hover {
  background-image: url('https://nkrcontinental.com/my/wp-content/uploads/2026/06/Vector-3.png') !important;
  background-color: #6F90A9 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px !important;
  transform: translateY(-50%) !important;
}

/* ── Last tab dot aligns to left, not right ── */
.oom-vtab:last-child {
  align-items: flex-start !important;
  text-align: left !important;
}



/* ── Ensure track fills and slides are fixed width ── */
.oom-vtabs__slides {
  overflow: hidden !important;
  width: 100% !important;
}

.oom-vtabs__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform !important;
}

.oom-vtabs__slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .oom-vtab__label {
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  .oom-vtab[data-index="item-2"] .oom-vtab__label {
    padding-bottom: 12px !important;
  }
}
.oom-contact-form ::placeholder {
  color: #DFDFDF !important;
  opacity: 1 !important;
}

.oom-contact-form input:not([type='submit']):focus,
.oom-contact-form textarea:focus,
.oom-contact-form select:focus {
  color: #656565 !important;
}

.oom-contact-form input:not([type='submit']),
.oom-contact-form textarea,
.oom-contact-form select {
  color: #656565 !important;
}
/*--------INDUSTRY SPECIALIZATION--------*/
/* Hover state texts */
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer p,
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer h2,
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer .elementor-heading-title,
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer .elementor-widget-text-editor p,
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer .elementor-icon-list-text,
.oom-industry-carousal-slides:hover .oom-industry-carousal-texts-cnotainer .elementor-icon-list-icon svg {
    color: #FCFCFC !important;
    fill: #FCFCFC !important;
    transition: color 0.3s ease !important;
}

/* Normal state */
.oom-industry-carousal-texts-cnotainer {
    background: #FCFCFC !important;
    transition: background 0.3s ease !important;
    cursor: pointer !important;
}

.oom-industry-carousal-texts-cnotainer p,
.oom-industry-carousal-texts-cnotainer h2,
.oom-industry-carousal-texts-cnotainer .elementor-heading-title,
.oom-industry-carousal-texts-cnotainer .elementor-icon-list-text,
.oom-industry-carousal-texts-cnotainer .elementor-icon-list-icon svg {
    color: #3E6887 !important;
    fill: #3E6887 !important;
    transition: color 0.3s ease, fill 0.3s ease !important;
}

/* Hover state (non-active cards) */
.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover {
    background: #3E6887 !important;
}

.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover p,
.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover h2,
.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover .elementor-heading-title,
.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover .elementor-icon-list-text,
.oom-industry-carousal-texts-cnotainer:not(.oom-is-active):hover .elementor-icon-list-icon svg {
    color: #FCFCFC !important;
    fill: #FCFCFC !important;
}

/* Active state */
.oom-industry-carousal-slides .oom-is-active {
    background: #3E6887 !important;
}

.oom-industry-carousal-texts-cnotainer.oom-is-active p,
.oom-industry-carousal-texts-cnotainer.oom-is-active h2,
.oom-industry-carousal-texts-cnotainer.oom-is-active .elementor-heading-title,
.oom-industry-carousal-texts-cnotainer.oom-is-active .elementor-icon-list-text,
.oom-industry-carousal-texts-cnotainer.oom-is-active .elementor-icon-list-icon svg {
    color: #FCFCFC !important;
    fill: #FCFCFC !important;
}

.oom-industry-carousal-texts-cnotainer {
    height: 100% !important;
}
.oom-industry-carousal .swiper-pagination-fraction {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 36px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #9FB9CC !important;
    text-align: left !important;
    position: relative !important;
    inset: unset !important;
    margin-top: 40px !important;
	margin-left:50px !important;
}

.oom-industry-carousal .swiper-pagination-current {
    color: #9FB9CC !important;
}

.oom-industry-carousal .swiper-pagination-total {
    color: #9FB9CC !important;
}

.oom-industry-carousal-texts-cnotainer{
	
  /* Semi-transparent white background to tint the surface */
  background: rgba(255, 255, 255, 0.15) !important; 
  
  /* The core frosted effect: blurs whatever is behind the element */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px) !important; /* Safari support */
  
  /* A sharp, semi-transparent border to simulate the glass edge */
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  
  /* Smooth corners to complement modern UI design */
  
  /* Soft outer shadow to give the card physical depth and lift */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15) !important;
}



.oom-industry-carousal .e-n-carousel {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
/* 	padding-left:20px !important; */
}

.oom-industry-carousal-slides {
    box-shadow: 0px 4px 40px 0px rgba(43, 43, 43, 0.08) !important;
}






/*--------OUR LOCATIONS--------*/
/* Tooltip box — glassmorphism */
.oom-hotspot-map .e-hotspot__tooltip {
    background: rgba(220, 228, 235, 0.75) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 20px !important;
    padding: 20px !important;
    min-width: 300px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Title */
.oom-hotspot-card h3 {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 28px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #0D3F65 !important;
    margin: 0 0 16px 0 !important;
}

/* List */
.oom-hotspot-card ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.oom-hotspot-card li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

/* Icons */
.oom-hc-icon {
    width: 20px !important;
    flex-shrink: 0 !important;
    padding-top: 2px !important;
}

.oom-hc-icon i {
    font-size: 16px !important;
    color: #0D3F65 !important;
}

/* Text */
.oom-hotspot-card li span:last-child {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: 0px !important;
    color: #0D3F65 !important;
}

/* ── Hide tooltip mask line ── */
.oom-hotspot-map .e-hotspot__direction-mask {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Hide tooltip by default, show on hover ── */
.oom-hotspot-map .e-hotspot__direction-mask {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}

.oom-hotspot-map .e-hotspot:hover .e-hotspot__direction-mask {
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .oom-hotspot-map .e-hotspot__tooltip {
        padding: 12px !important;
        width: 350px !important;
        min-width: 350px !important;
        max-width: 80vw !important;
        box-sizing: border-box !important;
    }
    .oom-hotspot-map .oom-hotspot-card {
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }
    .oom-hotspot-map .oom-hotspot-card h3,
    .oom-hotspot-map .oom-hotspot-card li {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
	
	.elementor-repeater-item-09efab8 .e-hotspot__direction-mask {
    margin-left: 100px !important;
}
}
@media (max-width: 768px) {
  .elementor-repeater-item-09efab8 .e-hotspot__direction-mask {
    margin-left: 100px !important;
  }
	
	.oom-hotspot-map .e-hotspot__tooltip {
        padding: 12px !important;
        width: 200px !important;
        min-width: unset !important;
        max-width: 80vw !important;
        box-sizing: border-box !important;
    }
    .oom-hotspot-map .oom-hotspot-card {
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }
    .oom-hotspot-map .oom-hotspot-card h3,
    .oom-hotspot-map .oom-hotspot-card li {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}
/*--------CONTACT US--------*/

.oom-contact-us-container{
	background: linear-gradient(180deg, #DFDFDF 0%, #FCFCFC 100%);
}

.oom-contact-form-container{
	    padding: 30px;
    box-shadow: 0px 0px 60px 0px #2B2B2B33;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.oom-contact-form .icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* ── Center choose file button and text ── */
#field_c_upload {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  padding: 32px !important;
  border: 2px dashed #d0d0d0 !important;
  border-radius: 12px !important;
  background: #f9f9f9 !important;
  cursor: pointer !important;
}



/*--------ABOUT US--------*/

.oom-inner-pages-header{
	background: linear-gradient(0deg, #D9D9D9, #D9D9D9) !important;
linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)) !important;
linear-gradient(180deg, rgba(13, 63, 101, 0.9) 0%, rgba(252, 252, 252, 0) 100%) !important;
    max-height: 465px !important;
	min-height:465px !important;
    height: 465px !important;


}

/*--------MISSION AND VISION--------*/
/* Normal state */
.oom-mission-texts-container {
    background: #FCFCFC !important;
    transition: background 0.3s ease !important;
    cursor: pointer !important;
}
.oom-mission-texts-container h2,
.oom-mission-texts-container .elementor-heading-title,
.oom-mission-texts-container p {
    color: #0D3F65 !important;
    transition: color 0.3s ease !important;
}

/* Hover state */
.oom-mission-texts-container:hover {
    background: #3E6887 !important;
}
.oom-mission-texts-container:hover h2,
.oom-mission-texts-container:hover .elementor-heading-title,
.oom-mission-texts-container:hover p {
    color: #FCFCFC !important;
}

@media (min-width: 1441px) {

  .oom-mission-text,
  .oom-vision-text {
    max-width: 560px !important;
  }
	
	  .elementor-element-bd76ae3 {
    align-items: flex-start !important;
  }
  .elementor-element-11e13d0,
  .elementor-element-6878c20 {
    align-self: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }
  .elementor-element-11e13d0 .elementor-heading-title {
    text-align: right !important;
	  max-width: 560px !important;
  }
}



/* ── Brown (#DFDFDF) ── */
.oom-our-client-carousal-bg-brown::before {
    left: 0 !important;
    background: linear-gradient(to right, #DFDFDF, transparent) !important;
}

.oom-our-client-carousal-bg-brown::after {
    right: 0 !important;
    background: linear-gradient(to left, #DFDFDF, transparent) !important;
}

.oom-our-client-carousal-bg-brown .swiper-wrapper {
    transition-timing-function: linear !important;
}
.oom-our-client-carousal-bg-brown::before {
    left: 0 !important;
    background: linear-gradient(to right, #dedede, transparent) !important;
}
.oom-our-client-carousal-bg-brown::after {
    right: 0 !important;
    background: linear-gradient(to left, #dedede, transparent) !important;
}


/*--------SOLUTION--------*/

.oom-solution-image-carousal .swiper-slide-image {
    max-height: 260px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Solution carousel counter */
.oom-solution-counter {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 32px !important;
    font-weight: 300 !important;
    line-height: 36px !important;
    letter-spacing: 0.5px !important;
    color: #9FB9CC !important;
    text-align: left !important;

}

.oom-sol-current {
    color: #3E6887 !important;
}

.oom-sol-total {
    color: #9FB9CC !important;
}

.oom-solution-image-carousal-container {
    position: relative !important;
}

.oom-solution-image-carousal-container .elementor-swiper-button {
    position: absolute !important;
    bottom: -50px !important;
    top: unset !important;
    transform: none !important;
    z-index: 10 !important;
}

.oom-solution-image-carousal-container .elementor-swiper-button-prev {
    right: 50px !important;
    left: unset !important;
}

.oom-solution-image-carousal-container .elementor-swiper-button-next {
    right: 0 !important;
    left: unset !important;
}

/* carousel */
.oom-solution-tags .swiper-wrapper {
  flex-wrap: nowrap !important;
}

.oom-solution-tags .swiper-slide {
  width: fit-content !important;
  flex-shrink: 0 !important;
}

.oom-solution-tags .e-con-boxed {
  width: fit-content !important;
  min-width: unset !important;
}

.oom-solution-tags .e-con-inner,
.oom-solution-tags .e-con {
  width: fit-content !important;
  min-width: unset !important;
}

.oom-solution-tags .elementor-heading-title {
  white-space: nowrap !important;
}

@media (max-width: 767px) {
    .oom-solution-counter {
        font-size: 20px !important;
    }
	
	.oom-solution-tags-mobile .swiper-wrapper {
  transition-timing-function: linear !important;
}
}



/*--------PRODUCT ARCHIVE--------*/

.jet-smart-filters-search .jet-search-filter__submit {
    margin-top: 10px;
    display: none;
}

/* Hide active filter tags — show clear button only */
.oom-clear-button .jet-active-filter__val {
    display: none !important;
}

.jet-active-filters__title {
    margin: 0px !important;
}



/* ============================================================
   RESPONSIVE — DESKTOPS
============================================================ */

@media (min-width: 1441px) {
    .oom-industry-carousal-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .oom-industry-carousal-container > .e-con-inner,
    .oom-industry-carousal-container .elementor-element-2f87a38 {
        width: 78.5% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .oom-industry-carousal {
        width: 100% !important;
        max-width: 100% !important;
    }

    .oom-industry-carousal .e-n-carousel {
        width: 100% !important;
    }
/* 
    .oom-industry-carousal .swiper-slide {
        width: calc(25% - 15px) !important;
    } */
}

/*--------PRODUCT SINGLE PAGE--------*/
/* Gallery wrapper */
.oom-product-gallery-wrapper {
    width: 100% !important;
}

/* Main swiper */
.oom-gallery-main-swiper {
    width: 100% !important;
    height: 508px !important;
}

.oom-gallery-main-swiper .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* .swiper-slide.swiper-slide-active {
    background: white !important;
} */

.oom-gallery-main-swiper .swiper-slide img {
    width: 100% !important;
    height: 508px !important;
    max-height: 508px !important;
    object-fit: contain !important;
}

/* Thumbs swiper */
.oom-gallery-thumbs-swiper {
    width: 100% !important;
    height: 90px !important;
    margin-top: 40px !important;
    overflow: hidden !important;
}

.oom-gallery-thumbs-swiper .swiper-wrapper {
    display: flex !important;
    gap: 13px !important;
}

.oom-gallery-thumbs-swiper .swiper-slide {
    width: 90px !important;
    height: 90px !important;
    flex-shrink: 0 !important;
    opacity: 0.4 !important;
    cursor: pointer !important;
    border: 1px solid #EFEFEF !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    box-sizing: border-box !important;
}

.oom-gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1 !important;
    border-color: #3E6887 !important;
}

.oom-gallery-thumbs-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Arrow buttons */
.oom-gallery-main-swiper .swiper-button-next,
.oom-gallery-main-swiper .swiper-button-prev {
    color: #3E6887 !important;
}


/* Tablet */
@media (max-width: 1024px) {
    .oom-gallery-thumbs-swiper {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        height: 90px !important;
        margin-top: 24px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
	
	.oom-gallery-main-swiper {
    width: 100% !important;
    height: 408px !important;
}
	
		.oom-gallery-main-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

    .oom-gallery-thumbs-swiper::-webkit-scrollbar {
        display: none !important;
    }

    .oom-gallery-thumbs-swiper .swiper-wrapper {
        width: max-content !important;
        flex-wrap: nowrap !important;
    }

    .oom-gallery-thumbs-swiper .swiper-slide {
        width: 80px !important;
        height: 80px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 767px) {
	
	.oom-gallery-main-swiper {
    width: 100% !important;
    height: 308px !important;
}
	
		.oom-gallery-main-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

    .oom-gallery-thumbs-swiper {
        height: 70px !important;
        margin-top: 16px !important;
    }

    .oom-gallery-thumbs-swiper .swiper-slide {
        width: 70px !important;
        height: 70px !important;
    }
	

}

/*--------INSIGHTS PAGE--------*/
/* Filter bar */
.oom-insights-filter {
    background: #FFFFFF !important;
}

.oom-insights-filter__tabs-row {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.oom-insights-filter__label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #0D3F65 !important;
    white-space: nowrap !important;
    align-self: center !important;
}

.oom-insights-tab {
    flex: 1 !important;
    background: none !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
}

.oom-insights-tab__label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    line-height: 24px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    vertical-align: bottom !important;
    color: #9FB9CC !important;
    transition: color 0.2s ease !important;
}

.oom-insights-tab.active .oom-insights-tab__label {
    color: #0D3F65 !important;
}

.oom-insights-dot {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: #9FB9CC !important;
    display: block !important;
    transition: background 0.2s ease !important;
}

.oom-insights-tab.active .oom-insights-dot {
    background: #0D3F65 !important;
}

/* Hide native Elementor tabs bar */
.oom-insights-tabs .e-n-tabs-heading {
    display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
    .oom-insights-tab__label,
	.oom-insights-filter__label{
        font-size: 16px !important;
    }

    .oom-insights-dot {
        width: 16px !important;
        height: 16px !important;
    }

    .oom-insights-filter__tabs-row {
        gap: 20px !important;
    }


}
/*--------CAREERS--------*/
/* ── Accordion container ── */
.oom_accordion {
  margin-bottom: 16px !important;
}

/* ── Heading ── */
.oom_accordion-heading-container {
  cursor: pointer !important;
  border-radius: 20px !important;
  user-select: none !important;
}

/* ── Heading open — fast transition ── */
.oom_accordion-heading-container.is-open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  transition: border-radius 0.5s ease !important;
}

/* ── Heading close — slow transition ── */
.oom_accordion-heading-container.is-closing {
  transition: border-radius 2s ease !important;
}

/* ── Description smooth slide ── */
.oom_accordion-description-container {
  min-height: 0 !important;
  border-radius: 0 0 20px 20px !important;
  transition: max-height 0.4s ease, padding 0.4s ease !important;
}

.oom_accordion-description-container.e-con {
  min-height: 0 !important;
}

/* ── Arrow icon rotation ── */
.oom-accordion-icon {
  transition: transform 0.4s ease !important;
}

.oom_accordion-heading-container.is-open .oom-accordion-icon {
  transform: rotate(180deg) !important;
}

#field_c_upload {
  display: none !important;
}

.elementor-field-type-upload {
  margin: 0 !important;
  padding: 0 !important;
}

.oom-upload-label {
  border: none !important;
	  background: #fcfcfc !important;
  border: 1px solid #DFDFDF !important;

}
/*--------PRIVACY AND TERMS CONDITIONS--------*/
.oom-privacy-term-bg{
	background: linear-gradient(180deg, #DFDFDF 0%, #FCFCFC 72.12%) !important;

}


/* ============================================================
   RESPONSIVE — TABLETS
============================================================ */
@media (max-width: 1024px) {
.oom-inner-pages-header{
    max-height: 465px !important;
	min-height:265px !important;
    height: 365px !important;
}
	

}
/* 
@media (max-width: 1024px) and (min-width: 768px) {
    .oom-solution-image-carousal .elementor-swiper-button-prev,
    .oom-solution-image-carousal .elementor-swiper-button-next {
        position: absolute !important;
        bottom: -60px !important;
        top: unset !important;
        transform: none !important;
        z-index: 10 !important;
    }

    .oom-solution-image-carousal .elementor-swiper-button-prev {
        right: 50px !important;
        left: unset !important;
    }

    .oom-solution-image-carousal .elementor-swiper-button-next {
        right: 0 !important;
        left: unset !important;
    }
}
 */
/* ============================================================
   RESPONSIVE — MOBILES
============================================================ */
@media (max-width: 767px) {
	
  .oom-vtabs__nav {
    padding: 16px 12px !important;
    border-radius: 12px 12px 0 0 !important;
	display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .oom-vtabs__tabs-row {
	      width: 100% !important;

    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .oom-vtab {
    flex: 1 !important;
	      min-width: 0 !important;

    align-items: flex-start !important;
    text-align: left !important;
  }

  .oom-vtab:last-child {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .oom-vtab__label {
    font-size: 11px !important;
    line-height: 12px !important;
    letter-spacing: 0.3px !important;
  }

  .oom-dot {
    width: 12px !important;
    height: 12px !important;
  }

  .oom-vtabs__slides { height: 360px !important; }

/* ── Text content inside slide ── */
.oom-vtabs__content {
  position: absolute !important;
  top: 100px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  width: 1200px !important;
  transform: none !important;
  z-index: 2 !important;
  padding: 0 !important;
}

.oom-vtabs__content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  font-style: normal !important;
  line-height: 24px !important;
  letter-spacing: 0px !important;
  color: #FCFCFC !important;
  margin: 0 !important;
  max-width: 520px !important; /* keeps text from going full 1200px wide */
}

  .oom-vtabs__arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
  }
	
/* ── Force video to never overflow its container ── */
.oom-vtabs__slide video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}

.oom-vtabs__slide {
  position: relative !important;
  overflow: hidden !important;
}

.oom-vtabs__arrow--prev,
.oom-vtabs__arrow--next {
  width: 30px !important;
  height: 30px !important;
	  background-size: 15px !important;

}
	
	.oom-vtabs__arrow {
  top: 90% !important;
 
}
	


    .oom-hotspot-card h3 {
        font-size: 14px !important;
        line-height: 18px !important;
        margin: 0 0 8px 0 !important;
    }

    .oom-hotspot-card ul {
        gap: 6px !important;
    }

    .oom-hotspot-card li {
        gap: 6px !important;
    }

    .oom-hotspot-card li span:last-child {
        font-size: 11px !important;
        line-height: 15px !important;
    }

    .oom-hc-icon {
        width: 14px !important;
    }

    .oom-hc-icon img {
        width: 14px !important;
        height: 14px !important;
    }
	
	.oom-contact-form-container{
		padding:10px !important;
	}
	
	    .oom-industry-carousal .swiper-pagination-fraction {
        font-size: 20px !important;
    }
	
	@media (max-width: 1024px) {
.oom-inner-pages-header{
    max-height: 465px !important;
	min-height:200px !important;
    height: 200px !important;
}
		

		
		
}

}


/*--------FOOTER--------*/

/*copy right border*/
.oom-copy-right {
    border-top: 0.5px solid rgba(255, 255, 255, 0.3) !important;
}



.oom-about-us-video .elementor-background-video-container::before {
    backdrop-filter: blur(5px)!important;
}

@media (hover: hover) and (pointer: fine) {
  .oom-vtab:hover {
    transform: scale(1.05);
  }
}
.oom-vtab:active {
  transform: none; /* or scale(1) */
}

.oom-vtabs__arrow,
.oom-vtab {
  touch-action: manipulation !important;
}

/*--------CLIENTS LIST--------*/
/* ── Shared base for all client carousels ── */
.oom-our-client-carousal-bg-brown,
.oom-our-client-carousal-bg-white,
.oom-our-client-carousal-bg-white-healthcare {
    position: relative !important;
    width: 100% !important;
}

.oom-our-client-carousal-bg-brown::before,
.oom-our-client-carousal-bg-brown::after,
.oom-our-client-carousal-bg-white::before,
.oom-our-client-carousal-bg-white::after,
.oom-our-client-carousal-bg-white-healthcare::before,
.oom-our-client-carousal-bg-white-healthcare::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 160px !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.oom-our-client-carousal-bg-brown .swiper-slide,
.oom-our-client-carousal-bg-white .swiper-slide,
.oom-our-client-carousal-bg-white-healthcare .swiper-slide {
    margin-right: 32px !important;
}

.oom-our-client-carousal-bg-brown .swiper-slide-image,
.oom-our-client-carousal-bg-white .swiper-slide-image {
    max-height: 100px !important;
    width: 75% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
}

/* ── White (#FFFFFF) ── */
.oom-our-client-carousal-bg-white::before,
.oom-our-client-carousal-bg-white-healthcare::before {
    left: 0 !important;
    background: linear-gradient(to right, #FFFFFF, transparent) !important;
}

.oom-our-client-carousal-bg-white::after,
.oom-our-client-carousal-bg-white-healthcare::after {
    right: 0 !important;
    background: linear-gradient(to left, #FFFFFF, transparent) !important;
}

.oom-our-client-carousal-bg-white .swiper-wrapper,
.oom-our-client-carousal-bg-white-healthcare .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ── Healthcare (width 100%) ── */
.oom-our-client-carousal-bg-white-healthcare .swiper-slide-image {
    max-height: 180px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .oom-our-client-carousal-bg-brown::before,
    .oom-our-client-carousal-bg-brown::after,
    .oom-our-client-carousal-bg-white::before,
    .oom-our-client-carousal-bg-white::after,
    .oom-our-client-carousal-bg-white-healthcare::before,
    .oom-our-client-carousal-bg-white-healthcare::after {
        width: 60px !important;
    }
}

/*--------AGENCY BRANDS--------*/
/* Fade wrapper */
.oom-brands-carousal {
    position: relative !important;
}

.oom-brands-carousal::before,
.oom-brands-carousal::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 160px !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Left fade */
.oom-brands-carousal::before {
    left: 0 !important;
    background: linear-gradient(to right, #dedede, transparent) !important;
}

/* Right fade */
.oom-brands-carousal::after {
    right: 0 !important;
    background: linear-gradient(to left, #dedede, transparent) !important;
}

/* Logos */
.oom-brands-carousal .swiper-slide-image,
.oom-brands-carousal-about-us .swiper-slide-image {
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto !important;
}

.oom-brands-carousal .swiper-wrapper,
.oom-brands-carousal-about-us .swiper-wrapper,
.oom-us-company .swiper-wrapper {
    top: 70% !important;
    transition-timing-function: linear !important;
}

@media (max-width: 768px) {
    .oom-brands-carousal::before,
    .oom-brands-carousal::after {
        width: 60px !important;
    }
}