html, body {
  overflow-x: hidden;
}
body.modal-open {
    padding-right: 0 !important;
    overflow-y: auto !important;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #031631; /* dark tech navy */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.packet-line {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.packet {
  width: 12px;
  height: 12px;
  background: #00adee;
  border-radius: 2px;
  position: absolute;
  top: -4px;
  animation: movePacket 1.6s ease-out infinite;
  box-shadow: 0 0 6px #00adee;
}

/* Stagger timings */
.packet:nth-child(1) { animation-delay: 0s; }
.packet:nth-child(2) { animation-delay: 0.2s; }
.packet:nth-child(3) { animation-delay: 0.4s; }
.packet:nth-child(4) { animation-delay: 0.6s; }
.packet:nth-child(5) { animation-delay: 0.8s; }
.packet:nth-child(6) { animation-delay: 1s; }
.packet:nth-child(7) { animation-delay: 1.2s; }
.packet:nth-child(8) { animation-delay: 1.4s; }

@keyframes movePacket {
  0% {
    left: -15px;
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    left: 230px;
    transform: translateY(0);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: #121212;
  background: #fafafa;
  overflow-x: hidden;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  a,
  button {
    cursor: default !important;
    border: none;
    outline: none;
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 80rem;
  width: 100%;
  height: auto;
  padding: 0 2rem;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .container {
    padding: 0 1rem;
    margin: 0 auto;
  }
}

li{
  cursor: pointer;
}

.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  color: #00adee;
  border: none;
  outline: none;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 5em;
  padding: 1rem 0;
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
  background: #fafafa;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
         border-bottom: 1px solid #ccc;
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top:-0.2em;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
}

.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  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;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #121212;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 1.5rem;
}

.header .menu > ul > li > a {
  position: relative;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 0rem;
  border: none;
  outline: none;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.1rem;
  /* border-top: 1px solid #c6c4c5; */
  background: #fafafa;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}

.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}

@media (min-width: 992px) {
  .header .menu > ul > li .menu-column-1 > .list-item {
    background: #e1e1e15b;
  }
}

.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height:2.8;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: 0rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0rem 0rem;
}
@media (min-width: 992px) {
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    background: #e1e1e15b;
  }
}


.border_left {
  border-left: 1px solid rgba(134, 148, 160, 0.2);
}

@media (max-width: 768px) {
  .border_left {
    border-left: none;
  }
}
.hr{
  border-color: 1px solid rgba(134, 148, 160, 0.2);
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #00adee;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
  text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: #00adee;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #00adee;
}

@media only screen and (min-width: 993px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (min-width: 993px) {

  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item
  {
      padding: 2rem 0rem;
  }

  .header .menu > ul > li.menu-item-has-children .menu-subs {
    transform: translateY(-20px); 
    min-height: 30px;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    left: 0%;
  }

  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      margin-top: 0.5rem;
      transition: transform .30s ease, opacity .40s ease;
  }
}

.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

@media only screen and (max-width: 992px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .menu-mobile-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #fafafa;
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    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;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }
  .hr{
    border-color:rgba(0, 0, 0, 0.3);
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.main {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-image: url("../../../../www.jqueryscript.net/dummy/10.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.footer-top-bar {
  width: 80%;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  position: relative;
  background-color: #00adee;
}
.mega-footer {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background-color: #252161;
}
.margin_top{
  margin-top:-2em;
}
.copyright {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background-color: #252161;
  border-top:2px solid #00adee;
}
.top-div{
  max-width:2rem;
  max-height:2rem;
  min-width:2rem;
  min-height:2rem;
  cursor: pointer;
  background-color:#00adee;
}
@media (min-width: 768px) { /* applies to tablets and up */
  .top-icon {
    margin-top: -0.2em;
  }
}
/* Default (mobile first) */
.top-div-main {
  margin-top: -8.5em;
}

/* Desktop only */
@media (min-width: 992px) {
  .top-div-main {
    margin-top: -3em;
  }
}

.enquiry-btn {
  position: relative;
  overflow: hidden;
  background-color: #252161;
  color: #fff;
  border: 2px solid #252161;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px; /* Rounded corners */
  transition: color 0.4s ease-in;
  z-index: 1;
}

/* Wave background effect */
.enquiry-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 100%;
  width: 300%;
  height: 300%;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(50%, -50%) scale(0);
  transition: transform 0.6s ease-in-out;
  z-index: -1;
  cursor: pointer;
}

/* On hover: animate the wave fill */
.enquiry-btn:hover::before {
  transform: translate(50%, -50%) scale(1);
}

.enquiry-btn:hover {
  color: #252161;
  cursor: pointer;
}

.enquiry-btn-var{
  position: relative;
  overflow: hidden;
  background-color: #00adee;
  color: #fff;
  border: 2px solid #00adee;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px; /* Rounded corners */
  transition: color 0.4s ease-in;
  z-index: 1;
  cursor: pointer;
}
/* Wave background effect */
.enquiry-btn-var::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 100%;
  width: 300%;
  height: 300%;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(50%, -50%) scale(0);
  transition: transform 0.6s ease-in-out;
  z-index: -1;
  cursor: pointer;
}
/* On hover: animate the wave fill */
.enquiry-btn-var:hover::before {
  transform: translate(50%, -50%) scale(1);
}
.enquiry-btn-var:hover {
  color: #252161;
}

.logo-header{
  max-width:10rem;
}
@media (min-width: 992px) {
  .mt-desk {
    margin-top: -0.9rem;
  }
}
.footer-logo{
  max-width:65%;
}
.text-dark-blue{
  color:#1e1a51;
}
.text-cyan{
  color:#00adee;
}
.bg-dark-blue{
  background-color:#252161;
}
.bg-dark-blue-variant{
  background-color:#030734;
  position: relative;
  overflow: hidden;
}
.bg-cyan{
  background-color:#00adee;
}
.fs-footer-block{
  font-size:1.09rem;
}
.h1-hero{
  font-size:2rem;
}

.border-left-anim {
  position: relative;
  padding-left: 1rem;
}
/* Animated left border */
.border-left-anim::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.2em;
  height: 0%;
  background-color: #00adee;
  border-radius: 3em;
  animation: slideBorder 2.5s ease-in-out infinite;
}

/* Keyframes for looping slide */
@keyframes slideBorder {
  0% {
    height: 0%;
    top: 0;
  }
  50% {
    height: 50%;
    top: 0;
  }
  100% {
    height: 0%;
    top: 50%;
  }
}
.arrow-down-icon{
  max-width:4rem;
  max-height:4rem;
  z-index:9999;
  cursor: pointer;
}

.arrow-down-icon i {
  font-size: 2.8rem; /* size of the icon */
  color: #00adee; /* your brand blue */
  display: inline-block;
  animation: bounceDown 1.8s ease-in-out infinite;
  cursor: pointer;
  z-index:9999;
}
.hero_img{
  max-width:100%;
  max-height:85%;
  position: relative;
}

/* For desktops and larger screens */
@media (min-width: 992px) {
  .hero_img {
    position: absolute;
  }
  .section-hero-shape{
    clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 94%, 98% 100%, 2% 100%, 0 94%, 0% 20%);
  }
  .h1-hero{
      font-size:4rem;
  }
}

.offer-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.services-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}
.case-studies-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.about-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.why-us-section .underline{
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.team-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.clients-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.contact-form-section .underline {
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.faq-section .underline{
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.single-page-section .underline{
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.page-header-banner .underline{
  width: 200px;
  height: 1px;
  background-color: #FFF;
  margin-left: 0;
}

.testimonials-section .underline{
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

.policy-section .underline{
  width: 200px;
  height: 2px;
  background-color: #002147;
  margin-left: 0;
}

/* Keep wrapper centered and fixed width */
.slider-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Smooth sliding */
.offer-slider {
  display: flex;
  transition: transform 0.6s ease;
}

/*  Offer boxes */
.offer-box {
  position: relative;
  min-width: 330px;
  margin: 0 15px;
}

.offer-box .box-bg {
  position: absolute;
  top: -5px;
  left: -5px; /* shadow visible on top & right */
  width: 90%;
  height: 90%;
  background-color: #002147;
  z-index: 0;
}

.offer-box .box-content {
  margin-top: 5px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Buttons styling */
.offer-section .btn-info {
  background-color: #00adee;
  border: none;
}

.offer-section .bg-cyan:hover {
  background-color: #002147;
}

.services-section .bg-cyan:hover {
  background-color: #002147;
}

.case-studies-section .bg-cyan:hover {
  background-color: #002147;
}

.testimonials-section .bg-cyan {
  background-color: #00adee;
}

.testimonials-section .bg-cyan:hover {
  background-color: #002147;
}

/* Control alignment */
.offer-controls {
  max-width: 100%;
}

/* Prevent button stretch */
.offer-controls .btn {
  min-width: 45px;
  height: 45px;
  border-radius:0%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.col-icon{
  font-size:3em;
}
.btn-details{
  border:2px solid #002147;
  color: #002147;
}
.btn-details:hover{
  background-color:#002147;
  border:0;
  color:#fff;
}
.btn-details-services:hover{
  background-color:#002147;
  border:0;
  color:#fff;
}
.btn-details-services{
  border:2px solid #008bee;
  color: #008bee;
}
.bg-cyan-light {
  background-color: #00adee;
  /* background: linear-gradient(135deg, #76b2f8, #06356b); */
  /* transition: background 1.8s ease-in-out; */
}

.bg-cyan-light:hover {
  /* background: linear-gradient(135deg, #06356b, #76b2f8); */
}

.transition-custom {
  transition: transform 0.8s ease-in-out;
}

.service-card {
  min-width: 33.33%;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2); /* right & bottom shadow */
}

@media (max-width: 992px) {
  .service-card {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .service-card {
    min-width: 100%;
  }
}
.service-card img {
  max-width: 200px;
  height: auto;
  object-fit: cover;
}

.service-card {
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

.box-content {
  transition: transform 0.3s ease;
}
.box-content:hover {
  transform: translateY(-5px);
}

/* On small devices, make the image full width */
@media (max-width: 991px) {
  .service-card img {
    max-width: 100%;
    width: 100%;
  }
}
.case-card img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.case-card {
  transition: transform 0.3s ease;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2); /* right & bottom shadow */
}
.case-card:hover {
  transform: translateY(-5px);
}

.testimonial-card{
  transition: transform 0.3s ease;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2); /* right & bottom shadow */
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.btn-shadow{
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2); /* right & bottom shadow */
}
.card-contact{
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2); /* right & bottom shadow */
}

.about-section {
  background-color: #fff;
}
.team-section {
  background-color: #f0f0f08d;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.square {
  width: 100%;
  height: 350px;
  border-radius: 4px;
}

.bg-dark {
  background-color: #001437 !important;
  top: 0;
  left: 0;
  max-width: 90%;
  max-height: 90%;
}

.bg-info {
  background-color: #00adee !important;
}
.about-img-container {
  transition: transform 0.3s ease;
}
.about-img-container:hover {
  transform: translateY(-5px);
}
.card-contact {
  transition: transform 0.3s ease;
}
.card-contact:hover {
  transform: translateY(-5px);
}
.team-img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  border:5px double #002147;
}

.team-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.form{
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.team-img{
  transition: transform 0.3s ease;
}
.team-img:hover {
  transform: translateY(-5px);
}

.clients-grid {
  display: grid;
  width:100%;
  grid-template-columns: repeat(4, 1fr);
  cursor: pointer;
}

/* Desktop - only inner lines visible */
.clients-grid .client-item {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #828282;
  border-bottom: 1px solid #828282;
}

.clients-grid .client-item:nth-child(4n) {
  border-right: none; /* remove right border on last column */
}

.clients-grid .client-item:nth-last-child(-n+4) {
  border-bottom: none; /* remove bottom border on last row */
}

.clients-grid .client-item img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.clients-grid .client-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Tablet view (3 columns) */
@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid .client-item {
    border: 1px solid #828282; /* add full border for cleaner layout */
  }

  .clients-grid .client-item:nth-child(3n) {
    border-right: 1px solid #828282;
  }

  .clients-grid .client-item:nth-last-child(-n+3) {
    border-bottom: 1px solid #828282;
  }
}

/* Mobile view (2 columns) - all borders visible */
@media (max-width: 575px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid .client-item {
    border: 1px solid #828282; /* full border on all sides */
  }

  .clients-grid .client-item:nth-child(2n) {
    border-right: 1px solid #828282;
  }

  .clients-grid .client-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #828282;
  }
}


/* Floating label form styles */
.form-group {
  position: relative;
}

.form-control {
  border: none;
  border-bottom: 1px solid #121212;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  padding-left: 2rem;
  padding-bottom: 0.4rem;
  font-size: 1rem;
}

.form-control:focus {
  border-bottom: 2px solid #00adee;
  outline: none;
  box-shadow: none;
}

.form-group label {
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  color: #555;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-control:focus + label,
textarea:focus + label,
.form-control.filled + label,
textarea.filled + label {
  top: -1rem;
  left: 2rem;
  font-size: 0.85rem;
  color: #00adee;
}

/* Icons inside input fields */
.form-icon {
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 1.2rem;
  color: #828282;
}

/* Map Section */
.map {
  background: #00adee;
  width: 100%;
  height: 420px;
  box-shadow: -8px 8px 0 #001f3f;
  border-radius: 4px;
}
.alert{
  border-radius:0;
}

.faq-section {
  font-family: "Poppins", sans-serif;
  color: #000;
}

.faq-item {
  border: 1px solid #000;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

/* Outlined V icon */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #000;
  top: 3px;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  left: 6px;
  transform: rotate(-45deg);
}

.faq-icon::after {
  right: 6px;
  transform: rotate(45deg);
}

/* Rotate the V upwards when active */
.faq-item.active .faq-icon::before {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
  transform: rotate(-45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  border-top: 1px solid transparent; /* prevent double line */
  padding: 0 1.5rem;
}

.faq-answer p {
  padding: 1rem 0;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* adjust as needed */
  opacity: 1;
  border-top: 1px solid #000;
}

/* Outlined V icon */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #000;
  top: 3px;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* Default: facing down (V shape) */
.faq-icon::before {
  left: 6px;
  transform: rotate(-45deg);
}

.faq-icon::after {
  right: 6px;
  transform: rotate(45deg);
}

/* When active: rotate up (∧ shape) */
.faq-item.active .faq-icon::before {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
  transform: rotate(-45deg);
}

.single-page-section .main-image{
  max-height:500px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.single-page-section .main-image:hover{
  transform: scale(1.05);
}

.single-page-section .small-image{
  transition: all 0.3s ease-in-out;
}
.single-page-section .small-image:hover{
  transform: scale(1.05);
}

.single-page-section .content-text {
  font-size: 1rem;
  line-height: 1.5;
}

.single-page-section .related-links a {
  display: block;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #999;
  padding: 12px 0;
}

.single-page-section .related-links a:hover {
  text-decoration: none;
  background-color: #0000000e;
  color:#00adee;
  padding-left:1rem;
}


/* Lightbox background */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Lightbox image */
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.4s ease;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox .close:hover {
  color: #00adee;
}

/* Navigation arrows */
.lightbox-nav span {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
  transform: translateY(-50%);
}

.lightbox-nav .prev {
  left: 50px;
}

.lightbox-nav .next {
  right: 50px;
}

.lightbox-nav span:hover {
  color: #00adee;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Disable scrolling when modal is open */
body.no-scroll {
  overflow: hidden;
}

/* ===== Scoped Modal Floating Label Styles ===== */
.modal-form .modal-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.modal-form .modal-form-control,
.modal-form textarea,
.modal-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #828282;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.modal-form .modal-form-control:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  border-color: #00adee;
  outline: none;
}

.modal-form .modal-form-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #828282;
  font-size: 1.1rem;
}
/* Label starts inside input */
.modal-form label {
  position: absolute;
  top: 0.7rem;
  left: 2rem;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

/* Float label when focused or field not empty */
.modal-form .modal-form-control:focus + label,
.modal-form textarea:focus + label,
.modal-form .modal-form-control.has-value + label,
.modal-form textarea.has-value + label,
.modal-form select.has-value + label {
  top: -0.8rem;
  left: 2rem;
  font-size: 0.8rem;
  color: #00adee;
}

.checkbox{
  border: solid 2px #828282;
  padding:0.5em;
  cursor: pointer;
}
.label-pad{
  margin-top:0.2em;
}
.hr-label-divider{
  border-bottom: solid 1.5px #828282;
}

/* keep checkbox labels in normal flow */
.modal-form .form-check-label,
.modal-form .form-check {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: inline-block;
  margin-left: .35rem; /* spacing between checkbox and label */
  padding: 0;
}


/* Fix for date, time, and select fields */
.floating-form-date select,
.floating-form-date input[type="date"],
.floating-form-date input[type="time"] {
  color: #000; /* make text clearly visible */
}

/* Automatically float label for fields with default text (date, time, select) */
.floating-form-date select ~ label,
.floating-form-date input[type="date"] ~ label,
.floating-form-date input[type="time"] ~ label {
  top: -10px;
  left: 40px;
  font-size: 12px;
  color: #007bff;
  background-color: #fff;
  padding: 0 4px;
}

/* Optional: when focused */
.floating-form-date select:focus ~ label,
.floating-form-date input[type="date"]:focus ~ label,
.floating-form-date input[type="time"]:focus ~ label {
  color: #0056b3;
}

/* Make sure icon and layout stay aligned */
.floating-form-date .input-group-text {
  background-color: #fff;
  border-right: none;
}

/* ==== Scoped: hide native date/time placeholders when input is empty ==== */
/* WebKit-based browsers (Chrome, Edge, Safari) */
.modal-form input[type="date"]:not(.has-value):not(:focus)::-webkit-datetime-edit,
.modal-form input[type="date"]:not(.has-value):not(:focus)::-webkit-datetime-edit-fields-wrapper,
.modal-form input[type="date"]:not(.has-value):not(:focus)::-webkit-datetime-edit-day-field,
.modal-form input[type="date"]:not(.has-value):not(:focus)::-webkit-datetime-edit-month-field,
.modal-form input[type="date"]:not(.has-value):not(:focus)::-webkit-datetime-edit-year-field {
  color: transparent !important;
}

/* Time fields (WebKit) */
.modal-form input[type="time"]:not(.has-value):not(:focus)::-webkit-datetime-edit,
.modal-form input[type="time"]:not(.has-value):not(:focus)::-webkit-datetime-edit-hour-field,
.modal-form input[type="time"]:not(.has-value):not(:focus)::-webkit-datetime-edit-minute-field,
.modal-form input[type="time"]:not(.has-value):not(:focus)::-webkit-datetime-edit-meridiem-field {
  color: transparent !important;
}

/* Firefox: simpler approach — hide the whole input text when empty (keeps caret visible on focus) */
.modal-form input[type="date"]:not(.has-value):not(:focus),
.modal-form input[type="time"]:not(.has-value):not(:focus) {
  color: transparent;
}

/* When the field has value or is focused, show text normally */
.modal-form input[type="date"].has-value,
.modal-form input[type="date"]:focus,
.modal-form input[type="time"].has-value,
.modal-form input[type="time"]:focus {
  color: #000; /* readable text color */
}

/* ===== Select handling: hide first option hint text until user chooses ===== */
/* Make sure your default option has value="" and is disabled */
.modal-form select:not(.has-value) {
  color: transparent; /* hide the placeholder-like option */
}
.modal-form select.has-value {
  color: #000;
}

/* small visual tweak to keep floating label readable above the field */
.modal-form label {
  background: #fff;      /* so floating label text sits on white (avoids overlap) */
  padding: 0 4px;
}

/* keep previous floating label rules (just in case) */
.modal-form .modal-form-control.has-value + label,
.modal-form .modal-form-control:focus + label,
.modal-form textarea.has-value + label,
.modal-form textarea:focus + label,
.modal-form select.has-value + label,
.modal-form select:focus + label {
  top: -0.8rem;
  left: 2rem;
  font-size: 0.8rem;
  color: #00adee;
}

/* Dark overlay */
.page-header-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.518); /* deep navy overlay */
}

.page-header-banner .container-fluid {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.breadcrumb-text {
    font-size: 15px;
    color: #fff;
}

.form-check-input:checked {
  background-color: #00adee;
  border-color: #00adee;
}

.img-head{
  max-height:10rem;
  box-shadow: 0 1px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.img-head:hover {
  transform: translateY(-5px);
}

/*  */
.testimonial-card {
  border: 2px solid #d9d9d9;
  padding: 35px 25px;
  border-radius: 0px;
  background: white;
  position: relative;
  overflow: visible; /* allow quotes to overflow */
}

/* Perfect circle */
.image-circle {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  text-align: center;
  overflow: hidden; /* real images will stay inside */
}

.image-circle-test {
  border: 3px solid #001b44;
}


.name {
  font-weight: 700;
  font-size: 26px;
  margin: 0;
}

.line {
  width: 100%;
  height: 0.5px;
  background: #999;
  margin: 8px 0 10px 0;
}
.border-dark-grey{
  border-top:solid 1px #999;
}

.text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

/* QUOTES: align edges to card borders perfectly */
.quote {
  font-size: 100px;
  font-weight: 800;
  color: #001b44;
  position: absolute;
  line-height: 0.6;
  pointer-events: none;
  z-index: 2;
  transform-origin: center;
}

/* Top quote: make its BOTTOM sit exactly on the card's top border */
.quote-top {
  margin-top: 0.15em;                    /* start at card top */
  left: 8px;                 /* small inset from left edge */
  transform: translateY(-100%); /* move the element up so its bottom meets the top border */
}

/* Bottom quote: make its TOP sit exactly on the card's bottom border */
.quote-bottom {
  bottom: 0;                 /* start at card bottom */
  right: 8px;                /* small inset from right edge */
  transform: translateY(100%) scaleX(-1); /* move it down so its top meets the bottom border and flip */
}

/* Slightly reduce size on smaller screens so it doesn't overwhelm */
@media (max-width: 768px) {
  .quote { font-size: 84px; }
  .quote-top { left: 6px; transform: translateY(-100%); }
  .quote-bottom { right: 6px; transform: translateY(100%) scaleX(-1); }
}

.span-img{
  margin-top:-6em;
}


.related-title {
    letter-spacing: 1px;
    font-weight: 300;
}

.related-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    color: #0a2558; /* dark blue theme color */
    font-weight: 400;
    transition: 0.25s ease-in-out;
    border: 1px solid #04152d;
}

.related-service-item:hover {
    background: #00adee; /* your theme blue */
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    border: none;
}

.related-service-item i {
    font-size: 18px;
    transition: 0.25s;
}

.related-service-item:hover i {
    transform: translateX(4px);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0a2446;
  color: #fff;
  z-index: 99999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

.cookie-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-consent a {
  color: #00adee;
  text-decoration: underline;
}

#acceptCookies {
  background: #00adee;
  border: none;
}

/* Carousel base */
.carousel {
  position: relative;
  width: 100%;
  --slides-per-view: 4; /* default */
  margin: 0 auto;
  box-sizing: border-box;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.22,.9,.3,1);
  will-change: transform;
}

/* Slide styling */
.slide {
  box-sizing: border-box;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(100% / var(--slides-per-view));
  border-right: 1px solid #828282;
}

.carousel-track .client-item img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  display:block;
}
.carousel-track .client-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 0px;
  border: none;
  background: #00adee;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.carousel-btn:hover{
  background: #0a2446;
  color:#fff;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* Dots */
.carousel-dots {
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #cfcfcf;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* progress inside dot */
.carousel-dot .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #00adee; /* active color */
  transition: width linear;
}

/* active state */
.carousel-dot.is-active {
  background: #e6eefb;
}
.carousel-dot.is-active .progress {
  width: 100%;
}

/* Responsive breakpoints - adjust --slides-per-view via JS as well but good fallback */
@media (max-width: 575px) { .carousel { --slides-per-view: 2; } }
@media (min-width: 576px) and (max-width: 991px) { .carousel { --slides-per-view: 3; } }
@media (min-width: 992px) { .carousel { --slides-per-view: 4; } }

/* small polish */
.carousel-btn:focus, .carousel-dot:focus { outline: 2px solid rgba(43,108,176,0.3); outline-offset: 2px; }
.card-mission{
  background-color: #008bee38;
}
.card-vision{
  background-color: #008bee38;
}
.card-values{
  background-color: #008bee38;
}