/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --FuzionIQ-font: 'Rubik', sans-serif;
  --FuzionIQ-font-two: 'Gabarito', sans-serif;
  --FuzionIQ-gray: #C5C8CD;
  --FuzionIQ-gray-rgb: 197, 200, 205;
  --FuzionIQ-base: #D44A00;
  --FuzionIQ-base-rgb: 255, 210, 93;
  --FuzionIQ-black: #0B192C;
  --FuzionIQ-black-rgb: 11, 25, 44;
  --FuzionIQ-white: #ffffff;
  --FuzionIQ-white-rgb: 255, 255, 255;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-24 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--FuzionIQ-font);
  color: var(--FuzionIQ-gray);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  background-color: var(--FuzionIQ-black);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--FuzionIQ-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FuzionIQ-font);
  color: var(--FuzionIQ-white);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--FuzionIQ-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--FuzionIQ-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--FuzionIQ-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-bottom: 38px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(270deg, #007EC8 100%, #0D4A80 0%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title__tagline-shape-1 {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 2px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.section-title__tagline-shape-2 {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
}

.section-title__title {
  color: var(--FuzionIQ-white);
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 26px;
}

.section-title__title span {
  color: var(--FuzionIQ-base);
  font-weight: 400;
  font-family: var(--FuzionIQ-font-two);
}

.section-title__title .split-line {
  text-transform: none;
}





/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background: linear-gradient(270deg, #e9895c 0%, #ee6728 100%);
  color: var(--FuzionIQ-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  padding: 18px 25px 17px;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}


.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--FuzionIQ-base);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}




.thm-btn::after {
  position: absolute;
  background-color: var(--FuzionIQ-base);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--FuzionIQ-white);
}











/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.1s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--FuzionIQ-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--FuzionIQ-base-rgb), 0.70);
  animation-delay: 0.1s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--FuzionIQ-base-rgb), 0.40);
  animation-delay: 0.2s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}


/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--FuzionIQ-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--FuzionIQ-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--FuzionIQ-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}




/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--FuzionIQ-base);
  border-color: var(--FuzionIQ-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--FuzionIQ-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  color: var(--FuzionIQ-white);
  font-size: 16px;
  padding: 18px 25px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--FuzionIQ-black);
}


.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}






/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: var(--FuzionIQ-black);
  z-index: 1;
}

.main-menu__top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--FuzionIQ-white-rgb), .10);
  z-index: -1;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0 15px;
}

.main-menu__top-social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.main-menu__top-social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--FuzionIQ-white);
  border-radius: 10px;
  font-size: 20px;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--FuzionIQ-white-rgb), .20);
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu__top-social a:hover {
  color: var(--FuzionIQ-black);
  border: 1px solid var(--FuzionIQ-base);
}

.main-menu__top-social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--FuzionIQ-base);
  border-radius: 10px;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.main-menu__top-social a:hover:before {
  transform: scaleX(1.0);
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 30px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -15px;
  width: 1px;
  background-color: rgba(var(--FuzionIQ-white-rgb), .10);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 16px;
  color: var(--FuzionIQ-base);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  line-height: 16px;
  color: var(--FuzionIQ-gray);
  font-weight: 500;
}

.main-menu__contact-list li .text p a {
  color: var(--FuzionIQ-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--FuzionIQ-base);
}

.main-menu__top-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.main-menu__top-menu li {
  position: relative;
  display: block;
}

.main-menu__top-menu li:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 4px;
  left: -14px;
  width: 1px;
  background-color: rgba(var(--FuzionIQ-white-rgb), .10);
}

.main-menu__top-menu li:first-child:before {
  display: none;
}

.main-menu__top-menu li a {
  font-size: 16px;
  color: var(--FuzionIQ-white);
  font-weight: 500;
}

.main-menu__top-menu li a:hover {
  color: var(--FuzionIQ-base);
}




.main-menu {
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(var(--FuzionIQ-white-rgb), .10);
  z-index: -1;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 32px 0 32px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 29.5px 0;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--FuzionIQ-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--FuzionIQ-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}



.stricky-header.main-menu {
  background-color: var(--FuzionIQ-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 47px;
  padding-bottom: 47px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 35px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--FuzionIQ-white);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 16px;
}

/* .main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--FuzionIQ-base);
} */

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--FuzionIQ-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

/* .main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
} */

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 60%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 15px;
  color: var(--FuzionIQ-white);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

/* .main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--FuzionIQ-base);
} */

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #0B192C;
  padding: 31px 20px 31px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.30);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: var(--FuzionIQ-gray);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: #0B192C;
  border-radius: 10px;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: rgba(var(--FuzionIQ-white-rgb), .10);
  color: var(--FuzionIQ-gray);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--FuzionIQ-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: fixed !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--FuzionIQ-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--FuzionIQ-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--FuzionIQ-white);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--FuzionIQ-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--FuzionIQ-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--FuzionIQ-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--FuzionIQ-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--FuzionIQ-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--FuzionIQ-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--FuzionIQ-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--FuzionIQ-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--FuzionIQ-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--FuzionIQ-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--FuzionIQ-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--FuzionIQ-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--FuzionIQ-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--FuzionIQ-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
}

.home-showcase .container {
  max-width: 1120px;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: var(--FuzionIQ-base);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.30);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.home-showcase .row {
  --bs-gutter-x: 25px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.home-showcase__image>img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--FuzionIQ-black-rgb), .70);
}

.home-showcase__buttons__item {
  justify-content: center;
}

.home-showcase__buttons__item::after {
  background-color: var(--FuzionIQ-white);
}

.home-showcase__buttons__item:hover {
  color: var(--FuzionIQ-black);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--FuzionIQ-white);
  margin-top: 2px;
  text-transform: capitalize;
  background-color: var(--FuzionIQ-black);
  padding: 11px 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--FuzionIQ-white, #ffffff);
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 56, 78, .90);
  z-index: -1;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 19px 65px 19px;
}

.main-menu-two__top-text {
  font-size: 16px;
  color: var(--FuzionIQ-white);
  line-height: 26px;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 30px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: -0px;
  bottom: 0px;
  left: -15px;
  width: 1px;
  background-color: rgba(var(--FuzionIQ-white-rgb), .10);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 16px;
  color: var(--FuzionIQ-base);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  line-height: 16px;
  color: var(--FuzionIQ-gray);
  font-weight: 500;
}

.main-menu-two__contact-list li .text p a {
  color: var(--FuzionIQ-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--FuzionIQ-base);
}


.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(var(--FuzionIQ-white-rgb), .20);
  z-index: -1;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 65px 0;
}

.main-menu-two__left {
  display: block;
  padding: 32px 0;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--FuzionIQ-extra);
  border-radius: 50%;
  color: var(--FuzionIQ-black);
  font-size: 23px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--FuzionIQ-base);
  color: var(--FuzionIQ-white);
}

.main-menu-two__call-content {
  margin-left: 15px;
  position: relative;
  flex: 1;
}

.main-menu-two__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--FuzionIQ-gray);
  line-height: 16px;
  font-family: var(--FuzionIQ-font-two);
}

.main-menu-two__call-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 6px;
}

.main-menu-two__call-number a {
  color: var(--FuzionIQ-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--FuzionIQ-base);
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 29.5px 0;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 1px solid var(--FuzionIQ-gray);
  border-radius: 14px;
  font-size: 20px;
  color: var(--FuzionIQ-white);
}

.main-menu-two__search:hover {
  color: var(--FuzionIQ-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
}

.main-menu-two__btn-box .thm-btn {
  background: linear-gradient(270deg, #e9895c 0%, #ee6728 100%);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 13px;
  height: 50px;
  width: 50px;
  border-radius: 14px;
  border: 1px solid var(--FuzionIQ-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--FuzionIQ-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 22px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--FuzionIQ-white);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 18px;
  height: 3px;
  background-color: var(--FuzionIQ-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 22px;
}

.stricky-header.main-menu-two {
  background-color: var(--FuzionIQ-black)
}




/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--FuzionIQ-black);
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 9px 0px 9px;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li+li {
  margin-left: 46px;
}

.main-menu-three__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--FuzionIQ-white-rgb), .30);
}

.main-menu-three__contact-list li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--FuzionIQ-extra);
  position: relative;
  display: inline-block;
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  line-height: 16px;
  color: var(--FuzionIQ-white);
  font-weight: 500;
}

.main-menu-three__contact-list li .text p a {
  color: var(--FuzionIQ-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--FuzionIQ-extra);
}

.main-menu-three__top-social-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.main-menu-three__top-social-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--FuzionIQ-white);
  font-family: var(--FuzionIQ-font);
}

.main-menu-three__top-social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.main-menu-three__top-social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--FuzionIQ-white);
  border-radius: 50%;
  font-size: 14px;
  height: 32px;
  width: 32px;
  border: 1px solid rgba(var(--FuzionIQ-white-rgb), .30);
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu-three__top-social a:hover {
  color: var(--FuzionIQ-black);
  border: 1px solid var(--FuzionIQ-white);
}

.main-menu-three__top-social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--FuzionIQ-white);
  border-radius: 50%;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.main-menu-three__top-social a:hover:before {
  transform: scaleX(1.0);
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  background-color: var(--FuzionIQ-white);
}

.main-menu-three__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(var(--FuzionIQ-black-rgb), .10);
  z-index: -1;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__left {
  display: block;
}

.main-menu-three__logo {
  display: block;
  padding: 25px 0 25px;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 0;
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
  margin-left: 26px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--FuzionIQ-base);
  font-size: 18px;
  color: var(--FuzionIQ-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -12px;
  width: 2px;
  background-color: #E7E7E7;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover {
  background-color: var(--FuzionIQ-black);
}











/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--FuzionIQ-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--FuzionIQ-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--FuzionIQ-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--FuzionIQ-black);
  text-align: center;
  font-size: 20px;
  color: var(--FuzionIQ-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--FuzionIQ-black);
}

.search-popup input::placeholder {
  color: var(--FuzionIQ-black);
}



/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 50px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--FuzionIQ-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--FuzionIQ-white);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* My Css */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu.show {
  display: block;
  /* Show when toggled */
}

.shadow-box {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.icon-right-arrow-2 {
  margin-left: 5px;
  font-size: 12px;
}





@media (max-width: 1199px) {

  .nav-item.active>a,
  .dropdown.active>a {
    background: linear-gradient(45deg, #00b894, #0984e3);
    color: #fff !important;
    font-weight: 600;
    border-radius: 5px;
    padding-left: 15px;
  }
}

.active1 {
  color: #7DB828 !important;
}



/* why chooseeee ussss */
.whychoose-section {
  /* background: linear-gradient(135deg, #010d24, #000000); */
  /* color: #fff; */
  display: flex;
  flex-wrap: wrap;
  padding: 60px 8%;
  gap: 60px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.whychoose-left {
  flex: 1 1 45%;
}

.whychoose-left h2 {
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.whychoose-left h2 span {
  color: #D44A00;
  font-weight: 600;
}

.whychoose-left p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.whychoose-left a {
  display: inline-block;
  padding: 14px 30px;
  background: #D44A00;
  color: #001b4e;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 8px 18px rgba(255, 177, 0, 0.3);
}

.whychoose-left a:hover {
  background: #D44A00;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 177, 0, 0.45);
}

.whychoose-right {
  flex: 1 1 48%;
  display: grid;
  grid-template-areas:
    "whyidentify ."
    "whydefine whyconclusion";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.whychoose-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeIn 0.8s forwards;
}

.whychoose-card:nth-child(1) {
  animation-delay: 0.2s;
}

.whychoose-card:nth-child(2) {
  animation-delay: 0.4s;
}

.whychoose-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whychoose-card:hover {
  transform: rotate(-8deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.tilt-right {
  transform: rotate(90deg);
  transition: transform 0.8s ease-in-out, background-image 0.8s ease-in-out, color 0.8s ease-in-out;
}

.tilt-right:hover {
  transform: rotate(-12deg) !important;
  background-image: linear-gradient(to right, #ff5900, #D44A00);
  color: white;
}


/* Optional: Avoid tilting inner elements */
.tilt-right h3,
.tilt-right a,
.tilt-right p {
  transform: none !important;
  color: white;
}

.whychoose-icon {
  font-size: 38px;
  margin-bottom: 20px;
  background: #ffffff;
  color: #D44A00;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 177, 0, 0.4);
}

.whychoose-card:hover .whychoose-icon {
  transform: scale(1.15) rotate(8deg);
}

.whychoose-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 800;
}

.whychoose-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #C5C8CD;
}

.whychoose-card:hover p {
  color: white !important;
}

.whychoose-card a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.whychoose-card a:hover {
  color: #D44A00;
}

.whyidentify {
  grid-area: whyidentify;
}

.whydefine {
  grid-area: whydefine;
}

.whyconclusion {
  grid-area: whyconclusion;
}

@media (min-width: 993px) {
  .whyconclusion {
    margin: -150px 10px;
  }
}

@media (max-width: 992px) {
  .whychoose-section {
    flex-direction: column;
  }

  .whychoose-right {
    grid-template-areas:
      "whyidentify"
      "whyconclusion"
      "whydefine";
    grid-template-columns: 1fr;
  }

  .whyconclusion {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .whychoose-section {
    flex-direction: column;
  }

  .whychoose-right {
    grid-template-areas:
      "whyidentify whyconclusion"
      "whydefine whydefine";
    grid-template-columns: 1fr 1fr;
  }

  .whyconclusion {
    margin: 0;
  }
}

.whyidentify:hover {
  transform: rotate(-6deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.whyconclusion:hover {
  transform: rotate(6deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.whydefine:hover {
  transform: rotate(-4deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}






.awards-section {
  padding: 40px 20px;
  /* background: #fff; */
  text-align: center;
}

.awards-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.awards-section p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.awards-slider {
  overflow: hidden;
  position: relative;
}

.awards-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.award-card {
  flex: 0 0 auto;
  width: 220px;
  /* background: #f9f9f9; */
  border-radius: 25px;
  padding: 10px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
}

.award-card img {
  width: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.award-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #ffffff;
}

/* Infinite horizontal scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .award-card {
    width: 140px;
  }
}

.award-card {

  /* background: linear-gradient(145deg, #f0f0f0, #e0e0e0); */
  /* border-radius: 8px; */
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;

}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

















.partners-section {
  padding: 50px 20px;
  /* background: #f9f9f9; */
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;

}

.partners-content {
  flex: 1 1 300px;
  /* padding-top: 120px; */
}

.partners-content h2 {
  font-size: 2rem;

}

.partners-content p {
  padding-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}

.partners-logos {
  flex: 1 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-slider {
  flex: 1 1 45%;
  max-height: 450px;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  flex-direction: column;
}

.logo-track img {
  border-radius: 25px;
  background: transparent !important;
  max-width: 160px;
  margin: 10px auto;
  object-fit: contain;
}

.upwards .logo-track {
  animation: scroll-up 34s linear infinite;
}

.downwards .logo-track {
  animation: scroll-down 34s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo-track img {
    max-width: 70px;
    /* smaller logos on mobile */
  }


}



.whatsapp-button {
  position: fixed;
  bottom: 25px;
  /* distance from bottom */
  left: 20px;
  /* distance from left */
  background-color: #25D366;
  color: white;
  font-size: 25px;
  padding: 10px 13px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: opacity 0.2s ease;
}

.whatsapp-button:hover {
  opacity: 0.8;
}


/* Mega menu structure */
.megamenu {
  position: relative;
}

.megamenu-box {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  display: flex;
  background: #010d18;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(214, 219, 231, 0.6);
  border-radius: 10px;
  z-index: 999;
  display: none;
  border-top: 1px solid white;
  border-left: 1px solid #007EC8;
  border-right: 1px solid #007EC8;
  border-bottom: 1px solid #007EC8;
}

.megamenu:hover .megamenu-box {
  display: flex;
}

/* Column structure */
.megamenu-left,
.megamenu-center,
.megamenu-extra {
  flex: 1;
  padding: 0 20px;
  min-width: 200px;
}

.megamenu-right {
  width: 300px;
  padding-left: 20px;
  border-left: 1px solid #eee;
}

/* Service item styling */
.service-item {
  background: #f5f5f5;
  margin-bottom: 12px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 550;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-item a {
  color: #000;
  text-decoration: none;
  width: 100%;
}

.service-item:hover {
  background: #D44A00;
}

.service-item:hover a {
  color: #fff;
}

.item1 {
  color: #000;
}

.item1:hover {
  color: white;
}

.icon2 {
  margin-right: 10px;
  color: rgb(0, 0, 0);
  padding: 5px 6px;
  background-color: rgb(240, 217, 217);
  border-radius: 7px;
}

/* Profile card */
.profile-card {
  background: #121829;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border: 2px solid #fff;
}

.profile-card h4 {
  font-size: 16px;
  margin: 5px 0 2px;
}

.designation {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.quote {
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

/* Mobile styles */
@media (max-width: 991px) {
  .megamenu-box {
    flex-direction: column;
    width: 100%;
    padding: 20px 15px;
    display: none;
    /* Hidden by default */
    border-radius: 0;
    box-shadow: none;
  }

  .megamenu.active .megamenu-box {
    display: flex;
  }

  .megamenu-left,
  .megamenu-center,
  .megamenu-right {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .profile-card {
    text-align: left;
  }

  .service-item {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 8px;
  }


}



.megamenu-box {
  width: 100%;
  max-width: 1200px;
  flex-wrap: nowrap;
  justify-content: space-between;
}












/* MegaMenu2 Box */
@media (max-width: 991px) {
  .megamenu2-box {
    position: static;
    flex-direction: column !important;
    width: 100%;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .megamenu2:hover .megamenu2-box {
    display: none;
    /* Disable hover on mobile */
  }

  .megamenu2.active .megamenu2-box {
    display: flex;
  }

  .megamenu2-content {
    width: 100%;
    flex-direction: column;
  }

  .partner-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .partner-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
  }

  .megamenu2-image {
    width: 100%;
    border-left: none;
    margin-top: 20px;
  }

  /* .main-menu__list > li > a::after {
    content: '\25BC';
    float: right;
    margin-left: 8px;
    font-size: 12px;
  } */
}

.megamenu2 {
  position: relative;
}

.megamenu2-box {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  background: #010d18;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 10px;
  z-index: 999;
  display: none;
}

/* Tablet Devices */
@media (max-width: 991px) {
  .megamenu2-box {
    width: 90%;
    left: 5%;
    transform: none;
    padding: 20px;
    box-shadow: none;
    position: static;
    display: block;
  }

  .megamenu2-image {
    display: none;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .megamenu2-box {
    width: 100%;
    padding: 10px;
    box-shadow: none;
    border-radius: 0;
    position: static;
    transform: none;
    display: block;
  }

  .megamenu2-content {
    display: flex;
    flex-wrap: wrap;
    width: 100% !important;
    padding-left: 20px;
  }

  .megamenu2-image {
    display: none;
  }
}


@media (max-width: 991px) {

  /* Hide by default */
  .megamenu-box,
  .megamenu2-box {
    display: none !important;
    width: 100%;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    transform: none;
  }

  .megamenu-content,
  .megamenu2-content {
    display: block;
    width: 100%;
    flex-direction: column;
  }

  /* Show only when active */
  .megamenu.active .megamenu-box,
  .megamenu2.active .megamenu2-box {
    display: block !important;
  }

  .megamenu-left,
  .megamenu-center,
  .megamenu-extra {
    padding: 0px !important;
  }
}



/* For Desktop / Laptop Screens */
@media (min-width: 992px) {

  .megamenu-box,
  .megamenu3-box {
    max-height: 550px;
    /* Adjust height as needed */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(136, 136, 136, 0.5) transparent;
    /* Firefox */
  }

  /* For Chrome, Edge, Safari */
  .megamenu-box::-webkit-scrollbar,
  .megamenu3-box::-webkit-scrollbar {
    width: 6px;
  }

  .megamenu-box::-webkit-scrollbar-track,
  .megamenu3-box::-webkit-scrollbar-track {
    background: transparent;
  }

  .megamenu-box::-webkit-scrollbar-thumb,
  .megamenu3-box::-webkit-scrollbar-thumb {
    background-color: rgba(136, 136, 136, 0.5);
    border-radius: 4px;
  }
}





.megamenu2:hover .megamenu2-box {
  display: flex;
}

/* Content Area */
.megamenu2-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.partner-col {
  width: 50%;
  padding-right: 20px;
}

.partner-col ul {
  list-style: none;
  padding: 0;
}

.partner-col ul li a {
  display: block;
  font-weight: 600;
  padding: 8px 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-col ul li a:hover {
  color: #D44A00;
}

/* Footer Section */
.partner-footer {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.partner-footer p {
  margin-bottom: 8px;
  font-weight: 500;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #ffffff;
  font-size: 16px;
}

.social-icons a:hover {
  color: #D44A00;
}

/* Image Section */
.megamenu2-image {
  width: 30%;
  background: #0c1c36;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.megamenu2-image h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.megamenu2-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}




/* button-styles.css */
.btn-get-started {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background-color: #D44A00;
  color: #fff;
}

.btn-get-started span {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-arrow {
  order: 2;
  background-color: #D44A00;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-left: 12px;
  transition: all 0.3s ease;
  display: inline-flex;
}

.btn-arrow::before {
  content: "↗";
  transition: all 0.3s ease;
}

.btn-text {
  order: 1;
  transition: all 0.3s ease;
}

.btn-get-started:hover .btn-arrow {
  background-color: #fff;
  color: #D44A00;
  margin-right: 12px;
  margin-left: 0;
  order: 1;
}

.btn-get-started:hover .btn-text {
  order: 2;
}

.btn-get-started:hover .btn-arrow::before {
  content: "➔";
}



/* Custom partners mega menu */
.custom-partners-menu {
  position: relative;
}

.custom-partners-menu:hover .partners-megamenu {
  display: block;
}

.partners-megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 800px;
  background-color: #0a0a0a;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 99;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.partner-logo img {
  border-radius: 15px;
  width: 100%;
  max-width: 100px;
  
}



/* Responsive */
@media (max-width: 1024px) {
  .partners-megamenu {
    position: static;
    width: 100%;
    padding: 15px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    text-align: center;
  }
}


@media (min-width: 1025px) {
  .partners-megamenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background-color: #0a0a0a;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

  .custom-partners-menu:hover .partners-megamenu {
    display: block;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  .partner-logo img {
    width: 100%;
    max-width: 100px;
    /* filter: grayscale(100%);
    transition: 0.3s ease; */
  }


}














.ngfw-solution {
  position: relative;
  overflow: hidden;
}

.ngfw-img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: auto;
}

.ngfw-img:hover {
  transform: scale(1.05);
}

.ngfw-section {
  padding: 70px 0px;
  /* background: #0f1116; */
  color: #e0e0e0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.ngfw-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ngfw-solution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.ngfw-solution img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.ngfw-solution-content {
  flex: 1;
  min-width: 320px;
}

.ngfw-solution-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  /* color: #3aa0ff; */
}

.ngfw-solution-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #9ea4b0;
}

@media (max-width: 768px) {
  .ngfw-solution {
    flex-direction: column;
    text-align: center;
  }
}















.ngfw-benefits-section {
  padding: 70px 20px;
  /* background: #0f1116; */
  /* font-family: "Segoe UI", Arial, sans-serif; */
}

.ngfw-benefits-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.ngfw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.ngfw-benefit-card {
  background: #1a1d24;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.ngfw-benefit-card:hover {
  background: #252932;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.ngfw-benefit-card img {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
}

.ngfw-benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #fff;
}

.ngfw-benefit-card p {
  font-size: 0.95rem;
  color: #9ea4b0;
}



@media (max-width: 768px) {
  .ngfw-benefit-card {
    margin: 15px 15px;
    /* Adjust as needed */
  }
}











.trace-partner-sec {
  padding: 70px 30px;
  /* background: #0f1116;
  font-family: "Segoe UI", Arial, sans-serif; */
  color: #fff;
}

.trace-partner-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.trace-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trace-partner-item {
  background: #1a1d24;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.trace-partner-imgwrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.trace-partner-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trace-partner-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trace-partner-item:hover .trace-partner-hover {
  opacity: 1;
}

.trace-partner-item:hover img {
  transform: scale(1.1);
}

.trace-partner-static {
  display: none;
  padding: 15px;
  text-align: center;
}

.trace-partner-static h3 {
  font-size: 1rem !important;
  margin-bottom: 8px;
}

.trace-partner-static p {
  color: #9ea4b0;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .trace-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trace-partner-grid {
    grid-template-columns: 1fr;
  }

  .trace-partner-hover {
    display: none;
  }

  .trace-partner-static {
    display: block;
  }

  .trace-partner-imgwrap {
    height: auto;
  }
}


.trace-partner-item:hover .trace-partner-hover h3 {
  font-size: 1.6rem;
  /* adjust size as needed */
  color: #D44A00;
  /* set your desired color */
  font-weight: 700;
}

.trace-partner-item:hover .trace-partner-hover p {
  font-size: 1.1rem;
  /* adjust size as needed */
  color: #ffffff;
  /* set your desired color */
  font-weight: 300;
}



.cta-section {
  position: relative;
  background: url("https://imageio.forbes.com/specials-images/imageserve/62430df06c5f114b9e401fcb/shield-with-key-inside-on-blue-background-The-concept-of-cybersecurity-the-Internet/0x0.jpg?crop=6474,3640,x1261,y0,safe&height=399&width=711&fit=bounds") center center / cover no-repeat;
  padding: 160px 20px;
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
  background-position: center !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 1rem;
  color: #f2f2f2;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  /* color: #3aa0ff; */
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e0e0e0;
}

@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}





.trace-partner-sec {
  padding: 70px 30px;
  color: #fff;
}

.trace-partner-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.trace-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trace-partner-item {
  background: #1a1d24;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.trace-partner-item:hover {
  transform: translateY(-5px);
}

.trace-partner-imgwrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.trace-partner-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s ease;
  animation: zoomIn 8s ease-in-out infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.trace-partner-content {
  padding: 20px;
  text-align: center;
}

.trace-partner-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.trace-partner-content p {
  font-size: 0.9rem;
  color: #9ea4b0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .trace-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trace-partner-grid {
    grid-template-columns: 1fr;
  }
}







.culture-section {
  /* background-color: #1e2a38; */
  padding: 10px 20px;
}

.culture-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.culture-title {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.culture-underline {
  height: 3px;
  width: 60px;
  background-color: #D44A00;
  margin: 0 auto 40px;
}

.culture-slider {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.culture-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.culture-slide.active {
  opacity: 1;
  z-index: 1;
}

.culture-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.culture-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  padding: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

/* Dots */
.culture-dots {
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active-dot {
  background-color: #d44a00;
}

/* Responsive */
@media (max-width: 768px) {
  .culture-title {
    font-size: 2rem;
  }

  .culture-caption {
    font-size: 1rem;
    padding: 15px;
  }

  .culture-slider {
    height: 280px;
  }
}



















.wtp-section {
  /* background-color: #0d0d0d; */
  color: #fff;
}

.wtp-section h2 {
  color: #f8f8f8;
}

.wtp-card {
  position: relative;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 30px;
  clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0% 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

.wtp-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, #D44A00, #e64a4a, #D44A00);
  z-index: -2;
  opacity: 0;
  clip-path: inherit;
  transition: opacity 0.4s ease;
  animation: wtp-spin 4s linear infinite;
}

.wtp-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #131212;
  border-radius: 28px;
  clip-path: inherit;
  z-index: -1;
}

.wtp-card:hover::before {
  opacity: 1;
}

.wtp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.08);
}

@keyframes wtp-spin {
  to {
    transform: rotate(360deg);
  }
}

.wtp-card h5 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #D44A00, #e64a4a, #f99a5c, #D44A00);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hueShift 3s linear infinite;
}

@keyframes hueShift {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}



.wtp-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

.wtp-card:hover h5 {
  color: white !important;
}
















.job-tabs-section {
  padding: 50px 20px;
  /* background-color: #0a101d; */
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 25px;
  margin: 0 10px;
  font-size: 16px;
  background-color: #1e293b;
  color: #e2e8f0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.tab-btn.active {
  background-color: #D44A00;
  color: white;
}

.tab-btn:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.tab-content {
  display: none;
}

.tab-content.active-tab {
  display: block;
}

.job-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background-color: #1e293b;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.job-image {
  flex: 1 1 250px;
  text-align: center;
}

.job-image img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
  border: 2px solid #334155;
}

.job-details {
  flex: 2 1 600px;
}

.job-details h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.job-details h3 {
  font-size: 18px;
  color: #D44A00;
  margin-top: 20px;
}

.job-details ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
  color: #fcfcfc;
  line-height: 1.6;
}

.note {
  margin-top: 20px;
  /* font-style: italic; */
  color: #ffffff;
  text-align: center;
  font-size: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .job-layout {
    flex-direction: column;
    text-align: center;
  }

  .job-image,
  .job-details {
    flex: 1 1 100%;
  }

  .job-details {
    text-align: left;
  }
}












.career-cta-section {
  padding: 60px 20px;
  background-color: #1e293b;
  color: #e2e8f0;
  text-align: center;
}

.career-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.career-cta-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f1f5f9;
}

.career-cta-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #cbd5e1;
}


/* Responsive for small screens */
@media screen and (max-width: 600px) {
  .career-cta-title {
    font-size: 22px;
  }

  .career-cta-text {
    font-size: 15px;
  }
}









.section-head-custom {
  text-align: center;
  color: #D44A00;
  /* font-family: 'Orbitron', sans-serif; */
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 70px;
  letter-spacing: 1px;
  position: relative;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.section-head-custom::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #D44A00, transparent);
  margin: 20px auto;
  border-radius: 2px;
}

.benefit-timeline-wrapper {
  position: relative;
  padding: 10px 0 40px;
  perspective: 1000px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  /* background: linear-gradient(90deg, transparent, #D44A00, transparent); */
  z-index: 1;
  transform: translateY(-50%);
  /* box-shadow: 0 0 15px rgba(255, 140, 0, 0.3); */
}

.timeline-item-custom {
  position: relative;
  z-index: 2;
  /* background: #1a1a1a; */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2a2a2a;
  transition: all 0.5s ease;
  transform: rotateY(5deg);
  overflow: hidden;
}

.timeline-item-custom:nth-child(even) {
  transform: rotateY(-5deg);
}

.timeline-item-custom:hover {
  transform: rotateY(0deg) translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #D44A00, #e4a838);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.5s ease;
}

.timeline-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid #D44A00;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.timeline-item-custom:hover .timeline-icon {
  transform: scale(1.1) rotate(10deg);
}

.timeline-text h5 {
  color: #D44A00;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.timeline-text p {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transform: rotate(-2deg);
}

.bg-glass:nth-child(even) {
  transform: rotate(2deg);
}

.bg-glass:hover {
  transform: rotate(0deg) translateY(-12px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.bg-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 140, 0, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bg-glass:hover::before {
  opacity: 1;
}

.bg-glass:hover .text-info,
.bg-glass:hover .custom-icon {
  color: #D44A00 !important;
  /* text-shadow: 0 0 10px rgba(255, 140, 0, 0.7); */
}

.text-info {
  color: #D44A00 !important;
  transition: all 0.4s ease;
}

.border-info {
  border-color: #bb4100 !important;
}

.who-thrives-item {
  transition: all 0.5s ease;
  position: relative;
}

.who-thrives-item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 50px;
  height: 3px;
  background: #D44A00;
  opacity: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
}

.who-thrives-item:hover::after {
  opacity: 1;
  width: 80px;
}

.custom-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  color: #D44A00;
}

.custom-icon.learners::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #D44A00;
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

.custom-icon.learners::after {
  content: '★';
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 20px;
}

.custom-icon.ownership::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 30px;
  border: 2px solid #D44A00;
  border-radius: 5px;
  top: 5px;
  left: 8px;
}

.custom-icon.ownership::after {
  content: '✔';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 18px;
}

.custom-icon.communicators::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 20px;
  border: 2px solid #D44A00;
  border-radius: 10px;
  top: 10px;
  left: 5px;
}

.custom-icon.communicators::after {
  content: '…';
  position: absolute;
  top: 0px;
  left: 12px;
  font-size: 20px;
}

.custom-icon.solvers::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border: 2px solid #D44A00;
  transform: rotate(45deg);
  top: 8px;
  left: 8px;
}

.custom-icon.solvers::after {
  content: '⚡';
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 18px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) rotateY(10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
  }
}

.timeline-item-custom,
.who-thrives-item {
  animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item-custom:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-item-custom:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-item-custom:nth-child(3) {
  animation-delay: 0.6s;
}

.timeline-item-custom:nth-child(4) {
  animation-delay: 0.8s;
}

.who-thrives-item:nth-child(1) {
  animation-delay: 0.3s;
}

.who-thrives-item:nth-child(2) {
  animation-delay: 0.5s;
}

.who-thrives-item:nth-child(3) {
  animation-delay: 0.7s;
}

.who-thrives-item:nth-child(4) {
  animation-delay: 0.9s;
}
























.thrive-section {
  background-color: #0f172a;
  color: #f1f5f9;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.thrive-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.thrive-text {
  flex: 1 1 500px;
}

.thrive-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #ffffff;
}

.thrive-text ul {
  list-style: none;
  padding: 0;
}

.thrive-text ul li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  color: #cbd5e1;
}

.thrive-text ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: #D44A00;
  font-size: 20px;
}

.thrive-text strong {
  color: #D44A00;
}

.thrive-image {
  flex: 1 1 400px;
  text-align: center;
}

.thrive-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .thrive-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .thrive-text ul li {
    text-align: left;
  }
}














.imgtab-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px 30px 50px;
  justify-content: center;
  align-items: flex-start;

  color: #f1f1f1;
}

.imgtab-leftbox {
  /* flex: 1 1 300px; */
  max-width: 450px;
}

.imgtab-leftbox img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
}

.imgtab-rightbox {
  flex: 1 1 320px;
  max-width: 650px;
  /* background: #1e1e1e; */
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.imgtab-tablist {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.imgtab-tabbtn {
  padding: 12px 22px;
  background: #2a2a2a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #ccc;
  transition: all 0.3s ease;
}

.imgtab-tabbtn:hover {
  background: #3a3a3a;
}

.imgtab-tabbtn.active {
  background: #d44a00;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 74, 0, 0.4);
}

.imgtab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.imgtab-panel.active {
  display: block;
}

.imgtab-panel ul {
  padding-left: 0;
  list-style: none;
}

.imgtab-panel li {
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
}

.imgtab-panel li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d44a00;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .imgtab-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }

  .imgtab-tablist {
    flex-direction: column;
  }

  .imgtab-tabbtn {
    width: 100%;
    text-align: left;
  }
}






.mobile-nav__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  /* margin-right: 12px; */
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  /* Icon color */
  font-size: 18px;
  margin-left: 10px !important;
}

/* Brand-specific background colors */
.mobile-nav__social .facebook {
  background-color: #1877f2;
}

.mobile-nav__social .linkedin {
  background-color: #0077b5;
}

.mobile-nav__social .youtube {
  background-color: #ff0000;
}





.main-slider-two__social-box-inner a {
  display: inline-block;
  width: 40px;
  height: 40px;
  /* margin-right: 10px; */
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}

/* Brand-specific circle backgrounds */
.main-slider-two__social-box-inner .fa-facebook {
  background-color: #1877f2;
}

.main-slider-two__social-box-inner .fa-youtube {
  background-color: #ff0000;
}

.main-slider-two__social-box-inner .fa-linkedin {
  background-color: #0077b5;
}

/* Ensure icons are properly centered */
.main-slider-two__social-box-inner a span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

/* ❌ Remove any hover styles */
.main-slider-two__social-box-inner a:hover,
.main-slider-two__social-box-inner a span:hover {
  color: #fff !important;
  /* background: inherit !important; */
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
}


@media (max-width: 1199px) {
  .custom-partners-menu .partners-megamenu {
    display: none !important;
  }

  /* Optional: remove dropdown arrow if it exists */
  .custom-partners-menu>a::after {
    content: none !important;
  }
}

@media (max-width: 1199px) {

  /* Hide any right-arrow dropdown icon on mobile for the Partners item */
  .partners-menu>a::after,
  .partners-menu>a i,
  .partners-menu>a span,
  .partners-menu .dropdown-toggle {
    display: none !important;
  }

}

@media (max-width: 1199px) {

  .partners-menu>a,
  button {
    background-color: transparent !important;
  }
}



.career-cta-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/bggg.jpg') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}



























.contact-one__arrow-list li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.contact-one__arrow-list li::before {
  content: "\2192";
  /* Unicode arrow → */
  position: absolute;
  left: 0;
  color: #ff6600;
  /* Arrow color */
  font-weight: bold;
}


/* Dark Theme Section */
.conversation-section-dark {
  padding: 60px 20px;
  /* background: #0e0e0e; */
  text-align: center;
  /* font-family: 'Segoe UI', sans-serif; */
  color: #f1f1f1;
}

.conversation-section-dark .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #fff;
}

.conversation-section-dark .section-title span {
  color: #d44a00;
}

.conversation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.conversation-card {
  background: linear-gradient(145deg, #173863, #101010);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(212, 74, 0, 0.15);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
  text-align: left;
}

.conversation-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #d44a00;
}

.conversation-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover Gradient Glow Effect */
.conversation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 74, 0, 0.4);
  box-shadow: 0 8px 25px rgba(212, 74, 0, 0.3),
    0 0 40px rgba(212, 74, 0, 0.2);
  /* background: linear-gradient(145deg, #1a1a1a 0%, #202020 100%); */
}

/* Responsive */
@media (max-width: 768px) {
  .conversation-section-dark .section-title {
    font-size: 1.6rem;
  }

  .conversation-card h3 {
    font-size: 1.1rem;
  }
}





.branch-section {
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.branch-card {
  background: #0d273b;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-5px);
}

.branch-map {
  width: 100%;
  height: 220px;
  border: none;
}

.branch-details {
  padding: 20px;
}

.branch-details h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #d44a00;
}

.branch-details p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .branch-map {
    height: 180px;
  }

  .branch-details h4 {
    font-size: 16px;
  }
}



.map-section {
  width: 100%;
  padding: 20px 60px;
  margin: 0;

}

.map-frame {
  border-radius: 15px;
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-frame {
    height: 300px;
  }
}



.form-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ebdada;
  text-align: center;
}


.cert-awards-section-dark {
  padding: 60px 20px;
  /* background: #121212; */
  color: #ffffff;
}

.cert-awards-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ff6600;
}

.cert-tabs-nav-dark {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-tabs-nav-dark .cert-tab-dark {
  padding: 12px 25px;
  /* background: #1e1e1e; */
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  border: 1px solid #333;
}

.cert-tabs-nav-dark .cert-tab-dark:hover {
  background: #333333;
}

.cert-tabs-nav-dark .cert-tab-dark.active {
  background: #ff6600;
  color: #fff;
  border-color: #ff6600;
}

.cert-tab-pane-dark {
  display: none;
  animation: fadeIn 0.4s;
}

.cert-tab-pane-dark.active {
  display: block;
}

.cert-sub-title-dark {
  font-size: 20px;
  margin: 20px 0 10px;
  font-weight: 600;
  color: #ff6600;
}

.cert-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.cert-grid-dark img {
  width: 100%;
  border-radius: 25px;
  /* background: #1e1e1e; */
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cert-list-dark,
.award-list-dark {
  list-style: none;
  padding-left: 0;
}

.cert-list-dark li,
.award-list-dark li {
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}

.cert-list-dark li::before,
.award-list-dark li::before {
  content: "✔";
  color: #ff6600;
  position: absolute;
  left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

input,
textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.btn {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin: 5px 0;
}

.btn-danger {
  background: #dc3545;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}




/* Hide the star icons */
.testimonial-two__star {
  display: none;
}

/* Center-align the testimonial content */
.testimonial-two__single-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-two__text {
  text-align: center;
  margin: 0 auto;
  /* Ensures text stays centered */
  max-width: 80%;
  /* Optional: Limits text width for better readability */
}

.testimonial-two__client-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-two__client-img {
  margin: 0 auto;
  /* Centers the image */
  display: none !important;
}

.testimonial-two__client-content {
  text-align: center;
}

.testimonial-two__quote {
  text-align: center;
  margin-top: 10px;
  /* Adjust spacing as needed */
}

.testimonial-two__client-name a {
  color: #d44a00 !important;
}








#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  /* dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* Outer spinning ring */
.loader-ring {
  width: 120px;
  height: 120px;
  border: 4px solid transparent;
  border-top: 4px solid #2a86dd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
}

/* Inner spinning ring */
.loader-ring-inner {
  width: 90px;
  height: 90px;
  border: 3px solid transparent;
  border-top: 3px solid #d44a00;
  border-radius: 50%;
  animation: spinReverse 1.5s linear infinite;
  position: absolute;
}

/* Data packet dots */
.packet {
  width: 10px;
  height: 10px;
  background: #2a86dd;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 8px #2a86dd;
  animation: movePacket 2s linear infinite;
}

.packet.inner {
  width: 8px;
  height: 8px;
  background: #d44a00;
  box-shadow: 0 0 8px #d44a00;
  animation: movePacketReverse 3s linear infinite;
}

/* Shield icon with glow & gradient */
.shield {
  width: 60px;
  height: 60px;
  fill: url(#shieldGradient);
  animation: pulse 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 6px #2a86dd) drop-shadow(0 0 12px #2a86dd);
  z-index: 10;
}

/* Checkmark animation */
.checkmark {
  stroke: #d44a00;
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.6s forwards;
  animation-delay: 0.2s;
  display: none;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1) drop-shadow(0 0 6px #2a86dd) drop-shadow(0 0 12px #2a86dd);
  }

  50% {
    transform: scale(1.15) drop-shadow(0 0 10px #2a86dd) drop-shadow(0 0 20px #2a86dd);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* Move packet along circle */
@keyframes movePacket {
  0% {
    transform: rotate(0deg) translateX(60px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes movePacketReverse {
  0% {
    transform: rotate(0deg) translateX(45px) rotate(0deg);
  }

  100% {
    transform: rotate(-360deg) translateX(45px) rotate(360deg);
  }
}




/* why choose us */
.premium-cards-section {
  /* Local CSS Variables */
  --primary-color: #d44a00;
  --card-bg: rgba(30, 30, 30, 0.1);
  --icon-bg: linear-gradient(145deg, #da6d32, #ff5900);
  --text-color: #f3f3f3;
  --subtext-color: #aaa;
  /* --bg-gradient: linear-gradient(135deg, #121212 0%, #1f1f1f 100%); */

  padding: 30px 20px;
  background: var(--bg-gradient);
}

.premium-container {
  max-width: 1280px;
  margin: 0 auto;
}

.premium-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.premium-service-card {
  position: relative;
  flex: 1 1 calc(100% - 40px);
  max-width: 100%;
  padding: 80px 25px 30px;
  border-radius: 20px;
  background: var(--card-bg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  text-align: center;
}

.premium-service-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6); */
}

.premium-icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.6s ease;
  box-shadow: 0 8px 20px rgba(232, 112, 48, 0.4);
  /* border: 4px solid #121212; */
  z-index: 10;
}

.premium-service-card:hover .premium-icon-wrapper {
  transform: translateX(-50%) rotate(1turn);
}

.premium-service-card strong {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
}

.premium-service-card p {
  font-size: 15px;
  color: var(--subtext-color);
}

@media (min-width: 576px) {
  .premium-service-card {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (min-width: 992px) {
  .premium-service-card {
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .premium-service-card {
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
  }
}



/* Container */
.branch-tabs-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Tab Buttons */
.branch-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.branch-tab-button {
  background: #100e1d;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 15px;
  transition: background 0.3s;
}

.branch-tab-button.active {
  background: #ff6600;
}

/* Tab Content */
.branch-tab-content {
  display: none;
}

.branch-tab-content.active {
  display: block;
}

/* Slider */
.branch-slider {
  position: relative;
  overflow: hidden;
}

.branch-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.branch-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  /* background: #333333; */
  color: white;
}

.branch-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border-radius: 15px;
}

/* Laptop screen adjustments */
@media (min-width: 991px) and (max-width: 1366px) {
  .branch-slide img {
    max-width: 50%;
    /* shrink image width */
    height: auto;
    border-radius: 10px;
  }
}

/* Dots */
.branch-slider-dots {
  text-align: center;
  margin-top: 10px;
}

.branch-slider-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.branch-slider-dot.active {
  background-color: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
  .branch-slide {
    font-size: 14px;
  }
}

/* Media query for laptop screens (1024px to 2000px wide) */
@media screen and (min-width: 1024px) and (max-width: 2000px) {
  .branch-slide p {
    font-size: 45px !important;
    line-height: 1.5;
    margin: 5px 0;
    animation: textGlow 1.5s ease-in-out infinite alternate;
  }

}

/* Media query for mobile screens (max-width: 768px) */
@media screen and (max-width: 768px) {
  .branch-slide p {
    font-size: 20px !important;
    line-height: 1.4;
    margin: 5px 0;
    text-align: center;
    animation: textGlow 1.5s ease-in-out infinite alternate;
  }


}










/* Make image left + text right on desktop */
.branch-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  /* Text aligned left when side-by-side */
}

/* Image adjustments */
.branch-slide img {
  max-width: 55%;
  height: auto;
  border-radius: 15px;
}

/* Text area */
.branch-slide p {
  flex: 1;
  font-size: 24px;
}

/* Responsive: stack image over text for tablets & mobiles */
@media (max-width: 768px) {
  .branch-slide {
    flex-direction: column;
    text-align: center;
  }

  .branch-slide img {
    max-width: 100%;
  }
}








/* Slider container */
.unique-branch-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Slider track */
.unique-branch-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Individual card */
.unique-branch-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  /* background-color: #1a1a1a; */
  border-radius: 10px;
}

.unique-branch-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.unique-branch-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
  color: #d44a00;
}

.unique-branch-address {
  font-size: 0.9rem;
  color: #ccc;
}

/* Dots navigation */
.unique-branch-dots {
  text-align: center;
  margin-top: 15px;
}

.unique-branch-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.unique-branch-dot.active {
  background-color: #d44a00;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .unique-branch-card {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 600px) {
  .unique-branch-card {
    flex: 0 0 100%;
  }
}
















/* Active nav link with gradient + shimmer effect */
.main-menu-two__main-menu-box > ul > li.activity > a {
    color: #fff !important;
    background: linear-gradient(90deg, #d44a00, #ff7f32);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(212, 74, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: scale(1.05);
    animation: glowPulse 1.5s infinite alternate;
}

/* Shimmer effect */
.main-menu-two__main-menu-box > ul > li.activity > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

/* Glow animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 8px rgba(212, 74, 0, 0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 20px rgba(212, 74, 0, 0.9);
        transform: scale(1.08);
    }
}

/* Shimmer animation */
@keyframes shimmer {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* Hover effect on all menu links */

/* .main-menu-two__main-menu-box ul li > a:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #d44a00, #ff7f32);
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(212, 74, 0, 0.7);
    transform: scale(1.05);
     padding: 8px 16px;
} */

/* Mobile nav active link with shimmer */
.mobile-nav__container > ul > li.activity > a {
    color: #fff !important;
    background: linear-gradient(90deg, #d44a00, #ff7f32);
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 0 15px rgba(212, 74, 0, 0.7);
    position: relative;
    overflow: hidden;
    animation: glowPulse 1.5s infinite alternate;
}

.mobile-nav__container > ul > li.activity > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}



/* Add extra padding for dropdown items */
.main-menu-two__main-menu-box > ul > li.dropdown.activity > a {
    padding-right: 28px; /* more space on right for arrow */
}

/* Move the arrow further right */
.main-menu-two__main-menu-box > ul > li.dropdown > a::after {
    margin-left: 8px; /* space between text and arrow */
}

/* Optional: match arrow color for active link */
.main-menu-two__main-menu-box > ul > li.dropdown.activity > a::after {
    color: #fff; /* or #ffce9d for contrast */
}


/* Hover & Active arrow adjustments */
.main-menu .main-menu__list > li.activity.dropdown > a:after {
    padding-right: 12px; /* extra space on the right */
    padding-bottom: 6px; /* extra space on the bottom */
    right: 0; /* keep arrow inside button */
}




.services-details__img-1 img {
  transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services-details__img-1 img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




.sophos-cert-img {
    max-width: 180px;   /* adjust size */
    display: block;     /* make it behave like a block */
    margin: 0 0 20px 0; /* spacing below */
}








 .career-cta-btn {
    cursor: pointer;
  }
  .modal-content {
    border-radius: 12px;
  }
  .form-control {
    border-radius: 8px;
  }
  @media (max-width: 576px) {
    .modal-dialog {
      margin: 1rem;
    }
  }
  .form-label {
    color: #000000 !important;
    font-weight: 400;
  }
  





.team-two__title-box {
  background-color: #d44a00;   /* brand orange background */
  padding: 12px 15px;
  text-align: center;
  border-radius: 6px;
  margin-top: 10px;
}

.team-two__title-box h3 a {
  color: #ffffff !important;              /* white text */
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.team-two__title-box h3 a:hover {
  color: #000000;              /* black on hover */
}

.team-two__title-box p {
  color: #f5f5f5;              /* light gray for designation */
  margin: 5px 0 0;
  font-size: 14px;
}
