/*-------------------------- 
      Root  
---------------------------*/
:root {
  --font-size-base: 15px;
  --font-primary: "Lexend", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --color-primary: #0cc0df;
  --color-secondary: #1e214b;
  --color-primary-rgb: 33, 205, 173;
  --color-secondary-rgb: 0, 38, 120;
  --color-white: #ffffff;
  --color-black: #000;
  --color-dark: #222222;
  --color-light: #6d6fb3;
  --bs-gray: #828599;
  --color-gray-100: #f9f9f9;
  --color-gray-200: #e9e9f0;
  --color-gray-300: #dee2e6;
  --color-green-100: #d7f6f0;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  color: var(--bs-gray);
  overflow-x: hidden;
}


::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}

img {
  max-width: 100%;
}

/*-------------------------
     RESET Default Styles
 --------------------------*/
* {
  outline: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

select {
  background-color: transparent;
}

button,
button:focus,
.form-control,
.form-control:focus {
  outline: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

.svg-pathes {
  position: absolute;
}

@media (max-width: 991px) {

  html,
  body {
    overflow-x: hidden;
  }
}

@media (min-width: 576px) and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1400px) {
  .row {
    --bs-gutter-x: 40px;
  }

  .container {
    max-width: 1320px;
  }
}

/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

p {
  line-height: 1.75;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}


.heading-subtitle {
  font-family: var(--font-secondary);
  font-size: 17px;
  color: var(--bs-gray);
  margin-bottom: 10px;
  width: 75%;
  margin: auto;
}

.heading-subtitle-sector {
  font-family: var(--font-secondary);
  font-size: 17px;
  color: rgb(110, 110, 110);
  margin-bottom: 10px;
  width: 75%;
  margin: auto;
}

.heading-title {
  font-size: 36px;
  margin-bottom: 40px;
}


.heading-title .underlined-text {
  border-bottom: 4px solid var(--color-primary);
}

.heading-desc {
  font-size: 16px;
  margin-bottom: 0;
}

.heading-layout2 .heading-title {
  font-size: 40px;
}

.heading-layout3 .heading-title {
  font-size: 50px;
}

.heading-light .heading-subtitle {
  color: #f0f1f4;
}

.heading-light .heading-title {
  color: var(--color-white);
}

.heading-light .heading-desc {
  color: var(--color-gray-100);
}

.text-block-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.text-block-desc {
  font-size: 16px;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
}

.text-link a:not(.btn) {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-primary);
}

.text-link a:not(.btn).color-secondary {
  border-bottom-color: var(--color-secondary);
}

.text-link:hover a:not(.btn) {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.text-link:hover a:not(.btn).color-secondary {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

[class*=underlined-text] {
  padding-bottom: 2px;
  border-bottom: 2px solid;
}

.underlined-text,
.underlined-text-primary {
  border-bottom-color: var(--color-primary);
}

.underlined-text-secondary {
  border-bottom-color: var(--color-secondary);
}

.heading-divider {
  height: 4px;
  margin-top: 14px;
  background-color: var(--color-secondary);
}

@media (min-width: 768px) and (max-width: 991px) {
  .heading-title {
    font-size: 30px;
  }
}

/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .heading-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .heading-desc,
  .heading-subtitle,
  .text-link {
    font-size: 14px;
  }

  .heading-subtitle {
    width: 100%;
  }

  .heading-layout2 .heading-title {
    font-size: 22px;
  }

  .text-block-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

/*--------------------
   Buttons
---------------------*/
.btn {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 195px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  transition: all 0.3s linear;
}

.btn:focus,
.btn.active,
.btn:active {
  box-shadow: none;
  outline: none;
}

.btn .icon-filled,
.btn .icon-outlined {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: all 0.3s linear;
}

.btn:not(.btn-link) span,
.btn:not(.btn-link) i {
  margin: 0 5px;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-primary .icon-outlined {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-white);
}

.btn-primary .icon-filled {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-primary:hover {
  color: var(--color-white);
}

.btn-primary:hover .icon-outlined {
  color: var(--color-secondary);
  background-color: var(--color-white);
}

.btn-primary:hover .icon-filled {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.btn-primary.btn-outlined {
  color: var(--color-primary);
  background-color: transparent;
  border: 2px solid var(--color-primary);
}

.btn-primary.btn-outlined:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-primary-style2:hover {
  color: var(--color-primary) !important;
  background-color: var(--color-white) !important;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(.btn-outlined):hover {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.btn-secondary-about {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.btn-secondary-about:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.btn-secondary {
  color: var(--color-white);
  background-color: transparent;
}

.btn-secondary .icon-filled,
.btn-secondary-about .icon-filled {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-secondary .icon-outlined,
.btn-secondary-about .icon-outlined {
  color: var(--color-secondary);
  border: 1px solid #b2bdd6;
}

.service-item:hover .btn-secondary {
  background-color: var(--color-secondary);
}

.btn-secondary:hover {
  color: var(--color-white);
}


.btn-secondary:hover .icon-filled,
.btn-secondary-about .icon-filled {
  background-color: var(--color-secondary);
}

.btn-secondary.btn-outlined,
.btn-secondary-about.btn-outlined {
  color: var(--color-secondary);
  background-color: transparent;
  border: 2px solid #b2bdd6;
}

.btn-secondary.btn-outlined:hover,
.btn-secondary-about.btn-outlined:hove {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:not(.btn-link):hover,
.btn-secondary:not(.btn-outlined):hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.btn-secondary-style2:active,
.btn-secondary-style2:focus,
.btn-secondary-style2:not(.btn-outlined):hover {
  color: var(--color-secondary);
  background-color: var(--color-white);
}

.btn-white {
  color: var(--color-secondary);
  background-color: var(--color-white);
}

.btn-white:active,
.btn-white:focus {
  color: var(--color-secondary);
  border-color: var(--color-white);
  background-color: var(--color-white);
}

.btn-white:hover {
  color: var(--color-primary);
  background-color: var(--color-secondary);
  /* box-shadow: 0 8px 24px rgba(0, 188, 212, 0.35); */

}

.btn-white.btn-outlined {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-white);
}

.btn-white.btn-outlined:before {
  border-right-color: var(--color-white);
}

.btn-white.btn-outlined:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.btn-white-style2 {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.btn-white-style2:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-light {
  color: var(--color-secondary);
  background-color: var(--color-light);
}

.btn-light:active,
.btn-light:focus {
  color: var(--color-secondary);
  border-color: var(--color-light);
  background-color: var(--color-light);
}

.btn-light:hover {
  color: var(--color-white);
  border-color: var(--color-white);
  background-color: var(--color-secondary);
}

.btn-light.btn-outlined {
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-light);
}

.btn-light.btn-outlined:before {
  border-right-color: var(--color-light);
}

.btn-light.btn-outlined:hover {
  color: var(--color-primary);
  border-color: var(--color-white);
  background-color: var(--color-white);
}

.btn-light.btn-outlined:hover:before {
  border-right-color: var(--color-white);
}

.btn-outlined {
  background-color: transparent;
}

.btn-link {
  min-width: 0;
  height: auto;
  padding: 0;
  text-decoration: none;
  border-color: transparent !important;
  background-color: transparent !important;
}

.btn-link:focus,
.btn-link:active {
  background-color: transparent;
}

.btn-link.btn-icon {
  height: auto;
  line-height: 1;
  padding: 0;
}

.btn-link.btn-primary {
  color: var(--color-primary);
}

.btn-link.btn-primary-style2:hover {
  color: var(--color-white) !important;
}

.btn-link.btn-primary.btn-underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--color-primary);
}

.btn-link.btn-primary:hover {
  color: var(--color-secondary);
  background-color: transparent;
}

.btn-link.btn-secondary {
  color: var(--color-secondary);
}

.btn-link.btn-secondary:hover {
  color: var(--color-primary);
}

.btn-link.btn-white {
  color: var(--color-white);
}

.btn-link.btn-white .btn-icon-custom {
  color: var(--color-secondary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 10px rgba(240, 241, 244, 0.15);
}

.btn-link.btn-white.btn-underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--color-white);
}

.btn-link.btn-white:hover {
  color: var(--color-secondary);
}

.btn-link.btn-white:hover.btn-underlined {
  border-color: var(--color-secondary);
}

.btn-block {
  width: 100%;
}

.btn-social {
  height: 54px;
  line-height: 54px;
  width: 54px;
  min-width: 0 !important;
  font-weight: 400;
  color: var(--color-white);
  border-radius: 3px;
}

.btn-facebook {
  background-color: #4267b2;
}

.btn-twitter {
  background-color: #1da0f0;
}

.btn-google-plus {
  background-color: #ea4335;
}

.btn-lg {
  min-width: 200px;
}

.btn-xl {
  height: 70px;
  min-width: 250px;
}

.btn-xl i,
.btn-xl span {
  margin: 0 7px;
}

.btn-xhight {
  height: 70px;
  line-height: 68px;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-icon-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  font-size: 16px;
  border-radius: 50%;
  margin: 10px;
  color: var(--color-white);
  background-color: var(--color-primary);
  box-shadow: 0 0 0 10px #f0f1f4;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn:not(.btn-link) {
    font-size: 13px;
    min-width: 120px;
    height: 55px;
  }

  .btn-icon {
    padding: 0 10px;
  }

  .btn-xl {
    height: 55px;
    min-width: 150px;
  }
}

/*---------------------------
        Forms
----------------------------*/
label {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

label.error {
  color: red;
  font-size: 14px;
  font-weight: 400;
  margin: 7px 0 0 0;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-control {
  font-size: 14px;
  border-radius: 7px;
  background-color: var(--color-white);
  border: 2px solid #e6e8eb;
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.form-control::-webkit-input-placeholder {
  color: #26365e;
}

.form-control:-moz-placeholder {
  color: #26365e;
}

.form-control::-moz-placeholder {
  color: #26365e;
}

.form-control:-ms-input-placeholder {
  color: #26365e;
}

.custom-control {
  display: flex;
  align-items: center;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 16px;
}

.form-title {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}

.custom-checkbox {
  position: relative;
}

.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio] {
  display: none;
}

.checkbox-controls .custom-checkbox {
  margin-right: 27px;
  margin-bottom: 20px;
}

.checkbox-controls .custom-checkbox label {
  color: var(--bs-gray);
}

/* Input Radio */
.label-radio {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: var(--bs-gray);
}

.label-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio-indicator {
  position: absolute;
  top: -1px;
  left: 0;
  height: 17px;
  width: 17px;
  background: transparent;
  border: 2px solid #eaeaea;
  border-radius: 50%;
}

.label-radio input:checked~.radio-indicator {
  background: transparent;
}

.label-radio:hover input:not([disabled]):checked~.radio-indicator,
.label-radio input:checked:focus~.radio-indicator {
  background: transparent;
}

.radio-indicator:after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 3px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.label-radio input:checked~.radio-indicator:after {
  display: block;
}

.custom-control-label {
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 27px;
}

.custom-control-label:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  pointer-events: none;
  border: 2px solid #e7ebef;
  transition: all 0.3s ease-in-out;
}

.custom-control-label:after {
  font-family: "icomoon";
  content: "\e93e";
  position: absolute;
  top: 3px;
  left: 4px;
  font-size: 6px;
  color: var(--color-primary);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  transform: scale(1);
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
  border-color: transparent;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: var(--color-primary) !important;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none;
}

input[type=checkbox],
input[type=radio] {
  box-shadow: none !important;
}

.nice-select .list {
  width: 100%;
}

.form-group-date .form-group-icon {
  position: absolute;
  top: 53%;
  left: 20px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.form-group-date .form-control[type=date]::-webkit-inner-spin-button,
.form-group-date .form-control[type=date]::-webkit-calendar-picker-indicator,
.form-group-date .form-control[type=time]::-webkit-inner-spin-button,
.form-group-date .form-control[type=time]::-webkit-calendar-picker-indicator {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {

  .form-group {
    margin-bottom: 20px;
  }
}

/*--------------------
    Tabs
--------------------*/
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  display: block;
  position: relative;
  padding: 0 0 10px;
  margin: 0 30px 0 0;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  color: var(--color-secondary);
  border: 0;
}

.nav-tabs .nav-link:last-of-type {
  margin-right: 0;
}

.nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: var(--color-primary);
}

.nav-tabs .nav-link.active:after,
.nav-tabs .nav-link:hover:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}

.nav-tabs-white .nav-link {
  color: var(--color-white);
}

.nav-tabs-white .nav-link.active,
.nav-tabs-white .nav-link:hover {
  color: var(--color-white);
}

.nav-tabs-white .nav-link:after {
  background-color: var(--color-white);
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .nav-tabs .nav-link {
    font-size: 13px;
    margin: 0 15px 0 0;
  }

  .nav-tabs .nav-link:after {
    bottom: 4px;
  }
}

/*------------------- 
    Icons & clip paths
------------------*/
.header-topbar .navbar-social-icons {
  display: flex;
  gap: 10px;
}

.header-topbar .navbar-social-icons li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.header-topbar .navbar-social-icons li a .social-icon {
  font-size: 18px;
  color: var(--color-primary);
}

.header-topbar .navbar-social-icons li a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.header-topbar .navbar-social-icons li a:hover .social-icon {
  color: var(--color-white);
}


.navbar-social-icons li a:hover {
  background-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary) inset;
}

.navbar-social-icons li a:hover i {
  color: var(--color-white);
}

.navbar-social-icons li:last-of-type {
  margin-right: 0;
}

.icon-arrow-right,
.icon-arrow-left {
  font-size: 65%;
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  margin-right: 3px;
  font-style: normal;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s linear;
}

.rating .active {
  color: #f4572e;
}

.curve-top-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transform: rotate(180deg);
}

.curve-top-shape .curve-svg {
  height: 48px;
  width: 100%;
}

.curve-top-shape .curve-path {
  fill: var(--color-white);
  transform-origin: center;
  transform: rotateY(0);
}

.hexagon-clippath {
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hexagon-clippath2 {
  -webkit-clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.octagon-clippath {
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.cms-octagon-clippath {
  filter: url(#rounded-clippath-filter);
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
  padding: 0;
  background-color: transparent;
}

.breadcrumb-item {
  position: relative;
  font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {

  .breadcrumb-item a,
  .breadcrumb-item+.breadcrumb-item {
    font-size: 12px;
  }
}

/*----------------------
    Pagination
-----------------------*/
.pagination li {
  margin-right: 10px;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  width: 58px;
  height: 58px;
  border-radius: 5px;
  color: var(--color-secondary);
  border: 2px solid #b2bdd6;
  background-color: var(--color-white);
  transition: all 0.3s linear;
}

.pagination li a:hover,
.pagination li a.current {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagination li a {
    font-size: 16px;
    width: 35px;
    height: 35px;
  }
}

/*----------------------
    Carousel
-----------------------*/
.slick-list {
  margin: 0 -10px;
}

.slick-slide {
  margin: 0 10px;
}

.m-slides-0 .slick-list {
  margin: 0;
}

.m-slides-0 .slick-slide {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
  transform: translateY(-50%);
}

.slick-arrow:before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "icomoon";
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s linear;
}

.slick-arrow:hover {
  box-shadow: 0 0 0 2px #dfdfea inset;
}

.slick-arrow:hover:before {
  background-color: var(--color-secondary);
}

.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow.slick-next:before {
  content: "\e94a";
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-arrow.slick-prev:before {
  content: "\e940";
}

.slick-dots {
  list-style: none;
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}

.slick-dots li {
  display: inline-flex;
  position: relative;
  width: 20px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s linear;
}

.slick-dots li button {
  display: block;
  font-size: 0;
  width: 20px;
  height: 8px;
  padding: 0;
  border-radius: 3px;
  background-color: var(--color-secondary);
  transition: all 0.2s linear;
}

.slick-dots li.slick-active {
  width: 40px;
}

.slick-dots li.slick-active button {
  width: 40px;
  background-color: var(--color-primary);
}

.carousel-dots-light .slick-dots li:not(.slick-active) button {
  background-color: var(--color-white);
}


/*----------------------
    Pre Loader
-----------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader .loading {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader .loading span {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 5px solid #21cdad;
  border-radius: 50%;
  animation: rotating 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--color-primary) transparent transparent transparent;
}

.preloader .loading span:nth-child(1) {
  animation-delay: -0.45s;
}

.preloader .loading span:nth-child(2) {
  animation-delay: -0.3s;
}

.preloader .loading span:nth-child(3) {
  animation-delay: -0.15s;
}

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

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

/*----------------------------
      Navbar & Header
-----------------------------*/
.header {
  position: relative;
  z-index: 1000;
}


.navbar-brand img.logo {
  max-height: 70px;
  width: 260px;
  height: auto;
}

@media (max-width: 991px) {
  .navbar-brand img.logo {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .navbar {
    height: auto;
    max-height: none;
    padding: 10px 0;
  }

  .navbar .navbar-brand {
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    justify-content: flex-end;
  }
}

/* Navbar */
.navbar {
  padding: 0;
  height: 100px;
  max-height: 100px;
  background-color: var(--color-white);
}

.navbar>.container,
.navbar>.container-fluid {
  position: relative;
  height: 100px;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}

.navbar .logo-light {
  display: none;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}

.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before,
.navbar .navbar-toggler .menu-lines:after {
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 1px;
  display: inline-block;
  background-color: var(--color-secondary);
  transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:before {
  top: 0;
}

.navbar .navbar-toggler .menu-lines:after {
  top: 12px;
}

.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: var(--color-secondary);
}

.navbar .navbar-toggler.actived .menu-lines>span {
  opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  transform: rotate(45deg);
}

.navbar .nav-item {
  position: relative;
  margin-right: 20px;
}

.navbar .nav-item .nav-item-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: var(--color-secondary);
  line-height: 100px;
  letter-spacing: 0.4px;
  padding-right: 0px;
  margin-right: 12px;
}


.navbar .nav-item .nav-item-link.active,
.navbar .nav-item .nav-item-link:hover {
  color: var(--color-primary);
  padding-right: 0;
  margin-right: 12px;
}

.navbar .nav-item .nav-item-link.active:before,
.navbar .nav-item .nav-item-link:hover:before {
  width: 100%;
}


/* .navbar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
  margin-left: 0;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
} */

.dropdown-toggle i {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}

.navbar .dropdown-menu.mega-dropdown-menu {
  padding: 0;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block {
  padding: 50px 20px 40px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
  padding: 45px 50px 40px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured>.nav {
  justify-content: space-between;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-title {
  font-size: 24px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc {
  font-size: 14px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 10px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 55px !important;
  margin-right: 15px;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:before {
  background-color: #dfdfea;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover {
  color: var(--color-secondary);
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link:hover [class*=icon-] {
  background-color: var(--color-secondary);
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--color-primary);
  background-color: var(--color-white);
  transition: 0.3s ease;
}

.navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-block-inner {
  padding: 47px 50px 35px;
  border-radius: 10px;
  background-color: var(--color-primary);
}

.navbar .dropdown-menu .nav-item {
  padding: 0 25px;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .navbar .dropdown-menu.mega-dropdown-menu {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.navbar .dropdown-menu .nav-item>.nav-item-link {
  display: block;

  font-size: 14px;
  color: var(--bs-gray);
  font-weight: 400;
  text-transform: capitalize;

  line-height: 1.3;

  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;

  padding: 8px 0;
  border-bottom: 1px solid #dfdfea;
}

@media (max-width: 991px) {

  .navbar .dropdown-toggle:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
  }

  .navbar .dropdown-menu .nav-item>.nav-item-link {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.2 !important;
    padding-top: 8px;
    padding-bottom: 8px;

    min-height: unset !important;
    height: auto;
    align-items: flex-start !important;
    white-space: normal;
    border-bottom: 1px solid #dfdfea;
  }
}



.navbar .dropdown-menu.mega-dropdown-menu .nav-item-link {
  align-items: flex-start;
}

.navbar .dropdown-menu .nav-item>.nav-item-link:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: 0.5s ease;
}

.navbar .dropdown-menu .nav-item>.nav-item-link:hover {
  color: var(--color-primary);
}

.navbar .dropdown-menu .nav-item>.nav-item-link:hover:before {
  width: 100%;
}

.navbar .dropdown-menu .nav-item:last-child {
  margin-right: 0;
}

.navbar .dropdown-menu .nav-item:last-child>.nav-item-link {
  border-bottom: 0;
}

.navbar .dropdown-menu .nav-item:last-child>.nav-item-link:before {
  display: none;
}

.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}

.navbar .dropdown-menu .nav-title {
  font-size: 18px;
  margin-bottom: 8px;
}

/* navbar-actions */
.navbar-actions>li {
  margin-left: 20px;
}

.navbar-actions>li:last-child {
  margin-right: 0;
}

.action-btn {
  color: var(--color-secondary);
}

.lang-dropdown .dropdown-item {
  font-size: 14px;
  padding: 0.25rem 1rem;
}

.lang-dropdown .lang-dropdown-toggle {
  font-size: 14px;
  height: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-right: 15px;
  color: var(--color-white);
}

.lang-dropdown .lang-dropdown-toggle:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  border: 0;
  display: block !important;
}

.lang-dropdown .lang-dropdown-toggle i {
  font-size: 30px;
  margin-right: 7px;
}

.lang-dropdown .dropdown-menu {
  min-width: 100px !important;
  padding: 0.6rem 0 !important;
}

.lang-dropdown .dropdown-menu .dropdown-item {
  color: var(--bs-gray);
}

.lang-dropdown .dropdown-menu .dropdown-item:focus,
.lang-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.lang-dropdown .dropdown-menu .dropdown-item.active,
.lang-dropdown .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}


/* header topbar */
.header-topbar {
  display: flex;
  align-items: center;
  padding: 6px 0px;
  background-color: var(--color-secondary)
}

.header-topbar .header-topbar-links li {
  margin-right: 20px;
}

.header-topbar .header-topbar-links li a {
  font-size: 13px;
  color: var(--color-white);
}

.header-topbar .header-topbar-links li a:hover {
  color: var(--color-primary);
}

.header-topbar .contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-right: 30px;
  margin-bottom: 0;
}


.header-topbar .contact-list li a:not(.btn) {
  color: #f4f4f4;
}

.header-topbar .contact-list li a:not(.btn):hover {
  color: rgb(173, 173, 173);
}

.header-topbar .contact-list li>i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 8px;
}

.header-topbar .contact-list li:last-child {
  margin-right: 0;
}


.header-topbar .header-topbar-search {
  position: relative;
}

.header-topbar .header-topbar-search .form-control {
  height: 30px;
  border: 0;
  border-radius: 0;
  color: var(--color-white);
  border: 2px solid;
  background-color: transparent;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.15);
}

.header-topbar .header-topbar-search .form-control:focus {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.header-topbar .header-topbar-search .form-control::-webkit-input-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}

.header-topbar .header-topbar-search .form-control:-moz-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}

.header-topbar .header-topbar-search .form-control::-moz-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}

.header-topbar .header-topbar-search .form-control:-ms-input-placeholder {
  color: var(--color-gray-100);
  font-style: italic;
  font-size: 13px;
}

.header-topbar .header-topbar-search .header-topbar-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
}

.header-topbar .lang-dropdown .lang-dropdown-toggle {
  padding: 0 10px;
}

.header-topbar .lang-dropdown .lang-dropdown-toggle img {
  margin-right: 7px;
}

.header-topbar .action-btn {
  color: var(--color-white) !important;
}

.topbar-nav li {
  margin-right: 15px;
}

.topbar-nav li a {
  font-size: 13px;
  color: var(--color-white);
}

.topbar-nav li a:hover {
  color: var(--color-secondary);
}

.topbar-nav li:last-child {
  margin-right: 0;
}

.header {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}

.header .promo-text a {
  color: var(--color-primary) !important;
}

.header .promo-text a:hover {
  color: var(--color-white) !important;
}

.header-layout3 .promo-text {
  font-size: 13px;
}


@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .has-dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}


/* sticky-navbar */
.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color: var(--color-white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  animation: headerAnimation 0.8s;
}


.is-sticky>.container,
.is-sticky>.container-fluid {
  position: relative;
  height: 80px;
}

.is-sticky .miniPopup-departments-trigger {
  height: 80px;
}

.is-sticky .navbar-brand {
  line-height: 80px;
}

.is-sticky .header-top-right {
  display: none !important;
}

.is-sticky .nav-item .nav-item-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: var(--color-secondary);
  line-height: 80px;
  letter-spacing: 0.4px;
  padding-right: 0px;
  margin-right: 12px;
}


.is-sticky .nav-item .nav-item-link .active,
.is-sticky .nav-item .nav-item-link:hover {
  color: var(--color-primary);
  padding-right: 0;
  margin-right: 12px;
}

.is-sticky .nav-item .nav-item-link .active:before,
.is-sticky .nav-item .nav-item-link:hover:before {
  width: 100%;
}

.navbar .dropdown-menu .nav-item-link {
  display: block !important;
  align-items: flex-start !important;
}

.is-sticky .logo-light {
  display: none;
}

.is-sticky .logo-dark {
  display: inline-block;
}

.is-sticky .navbar-nav {
  margin-top: 0 !important;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-item.active>.nav-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

/* miniPopup */
.miniPopup {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  width: 310px;
  padding: 40px;
  border-radius: 0 0 6px 6px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
  transition: 0.3s ease;
  transform: translateY(20px);
}

.miniPopup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.miniPopup-language-trigger {
  position: relative;
  z-index: 151;
  height: 46px;
  margin-top: 14px;
  padding: 10px 20px 10px 0;
  border-radius: 0 10px 0 0;
  margin-left: 40px;
  color: var(--bs-gray);
  background-color: var(--color-white);
  transition: 0.3s ease;
}

.miniPopup-language-trigger:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  position: absolute;
  bottom: -1px;
  left: calc(50% - 10px);
  transform: translateX(-50%);
}

.miniPopup-language-trigger.active:after {
  content: "\f077";
}

.miniPopup-language-trigger .btn-shape {
  position: absolute;
  width: 38px;
  height: 100%;
  top: 0;
  left: -38px;
  z-index: -1;
  -webkit-clip-path: url(#curve-left);
  clip-path: url(#curve-left);
  background-color: var(--color-white);
  transition: 0.3s ease;
}

.miniPopup-language-trigger.shape-right {
  margin: 14px 40px 0 0;
  padding: 10px 0 10px 20px;
  border-radius: 10px 0 0 0;
}

.miniPopup-language-trigger.shape-right .btn-shape {
  left: auto;
  right: -37px;
  -webkit-clip-path: url(#curve-right);
  clip-path: url(#curve-right);
}

.miniPopup-language-area {
  position: relative;
}

.miniPopup-language-area:hover .miniPopup-language-trigger {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.miniPopup-language-area:hover .miniPopup-language-trigger .btn-shape {
  background-color: var(--color-primary);
}

.miniPopup-language-area:hover .miniPopup-language {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.miniPopup-language {
  width: 176px;
  padding: 5px;
}

.miniPopup-language li {
  padding: 10px 8px;
}

.miniPopup-departments-trigger {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  height: 100px;
  color: var(--color-secondary);
  transition: 0.3s ease;
}

.miniPopup-departments-trigger .menu-lines {
  position: relative;
  width: 25px;
  height: 14px;
  margin-right: 15px;
}

.miniPopup-departments-trigger .menu-lines span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
  transition: 0.3s ease;
}

.miniPopup-departments-trigger .menu-lines:before,
.miniPopup-departments-trigger .menu-lines:after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 2px;
  display: inline-block;
  background-color: var(--color-secondary);
  transition: 0.3s ease;
}

.miniPopup-departments-trigger .menu-lines:before {
  top: 0;
}

.miniPopup-departments-trigger .menu-lines:after {
  bottom: 0;
}

.miniPopup-departments-trigger .menu-lines.active {
  color: var(--color-primary);
}

.miniPopup-departments-trigger .menu-lines.active span {
  opacity: 0;
}

.miniPopup-departments-trigger .menu-lines.active:before,
.miniPopup-departments-trigger .menu-lines.active:after {
  top: 7px;
  background-color: var(--color-primary);
}

.miniPopup-departments-trigger .menu-lines.active:before {
  transform: rotate(-45deg);
}

.miniPopup-departments-trigger .menu-lines.active:after {
  transform: rotate(45deg);
}

.miniPopup-departments-trigger a {
  color: var(--color-secondary);
}

.miniPopup-departments-trigger a:hover {
  color: var(--color-primary);
}

@media (min-width: 1200px) {
  .header-topbar {
    display: block;
  }

  .navbar>.container-fluid,
  .header-topbar>.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .header-topbar {
    display: none;
  }
}

@media (min-width: 1400px) {

  .navbar>.container-fluid,
  .header-topbar>.container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* Large Size Screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .nav-item {
    margin-right: 15px;
  }
}

/* Mobile and Tablets */
@media (max-width: 991px) {
  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }

  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .collapse:not(.show) {
    display: block;
  }

  .navbar .navbar-nav {
    margin: 0 !important;
  }

  .navbar .nav-item {
    margin-right: 0;
  }

  .navbar .nav-item .nav-item-link {
    color: var(--color-dark);
    line-height: 35px !important;
    padding: 0 15px 0 20px;
    margin: auto;
  }

  .navbar .nav-item .nav-item-link:hover {
    color: var(--color-primary);
  }

  .navbar .nav-item .nav-item-link:hover {
    padding-right: 0;
    margin-right: 0px;
  }

  .navbar .nav-item .nav-item-link:before {
    display: none;
  }

  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }

  .navbar .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 50px 0 20px;
    background-color: var(--color-white);
    transition: 0.3s ease;
    transition-delay: 0.4s;
    transform: translateX(-100%);
  }

  .navbar .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }

  .navbar .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }

  .navbar .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }

  .navbar .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    transition-delay: 0.5s;
  }

  .navbar .nav-item [data-bs-toggle=dropdown]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 50%;
    text-align: right;
    z-index: 2;
    padding-right: 15px;
    line-height: 35px;
    display: block !important;
  }

  .navbar .dropdown-toggle:after {
    display: none;
  }

  .navbar .nav-item [data-bs-toggle=dropdown].opened:after,
  .navbar .nav-item [data-bs-toggle=dropdown].show:after {
    content: "\f106";
  }

  .navbar .dropdown-menu {
    background-color: white;
    padding: 10px;
  }

  .navbar .dropdown-menu .nav-item {
    padding: 0 15px 0 30px;

  }

  .navbar .dropdown-menu .nav-item .nav-item-link {
    padding-left: 0;
    border-bottom: none;

  }

  .navbar .dropdown-menu .dropdown-menu-col .nav-item {
    padding: 0;
  }

  .navbar .nav-item.dropdown-submenu>.dropdown-menu.show {
    padding-left: 10px;
  }

  .navbar .dropdown-submenu .dropdown-menu .nav-item {
    padding: 0 0 0 15px;
  }

  .navbar .navbar-nav .dropdown-menu.show {
    padding: 0;
  }

  .navbar .mega-dropdown-menu .container {
    max-width: none;
  }

  .navbar .mega-dropdown-menu>.nav-item {
    padding: 0 10px;
  }

  .navbar .mega-dropdown-menu .nav-item {
    padding: 0;
  }

  .navbar .dropdown-menu .nav-title {
    font-size: 15px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block {
    padding: 10px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured {
    padding: 10px;
    height: auto;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured:after {
    display: none;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-title {
    font-size: 18px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-desc {
    font-size: 13px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item .nav-item-link {
    line-height: 40px !important;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-item [class*=icon-] {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-right: 10px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-block-featured .nav-block-inner {
    padding: 10px;
    margin: -10px;
  }

  .header .navbar,
  .header-transparent .navbar {
    background-color: var(--color-white);
  }

  .header .logo-dark,
  .header-transparent .logo-dark {
    display: inline-block;
  }

  .header .logo-light,
  .header-transparent .logo-light {
    display: none;
  }

  .header .module-btn,
  .header-transparent .module-btn {
    color: var(--color-secondary);
    margin: 0 60px 0 0;
  }

  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span,
  .header-transparent .navbar .navbar-toggler .menu-lines:before,
  .header-transparent .navbar .navbar-toggler .menu-lines:after,
  .header-transparent .navbar .navbar-toggler .menu-lines span {
    background-color: var(--color-secondary);
  }

  .header .navbar-expand-lg>.container,
  .header .navbar-expand-lg>.container-fluid,
  .header-transparent .navbar-expand-lg>.container,
  .header-transparent .navbar-expand-lg>.container-fluid {
    width: 100%;
    max-width: none;
  }

  .header .navbar,
  .header .navbar>.container,
  .header .navbar>.container-fluid,
  .header-transparent .navbar,
  .header-transparent .navbar>.container,
  .header-transparent .navbar>.container-fluid {
    height: 80px;
  }

  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand,
  .header-transparent .navbar-brand {
    margin-left: 15px;
    line-height: 80px !important;
  }

  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header-transparent .header-full .navbar,
  .header-transparent .header-full .navbar .navbar-brand {
    line-height: 80px;
  }

  .header-topbar>.container {
    max-width: none;
  }

  .lang-dropdown .lang-dropdown-toggle,
  .header-transparent .action-btn {
    color: var(--color-secondary);
  }

  .action-btn-search {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
  }
}

/* Medium and large Screens */
@media (min-width: 992px) {
  .navbar .nav-item .nav-item-link:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: 0.4s ease;
  }

  .navbar .nav-item .nav-item-link.active:before,
  .navbar .nav-item .nav-item-link:hover:before {
    width: 100%;
  }

  .navbar .dropdown-menu {
    width: auto;
    min-width: 235px;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
  }

  .navbar .nav-item.has-dropdown>.dropdown-menu,
  .navbar .nav-item.dropdown-submenu>.mega-menu,
  .navbar .nav-item.has-dropdown>.mega-menu,
  .navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu>.dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(10px);
  }

  .navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu>.dropdown-menu,
  .navbar .nav-item.dropdown-submenu>.dropdown-menu>.nav-item.has-dropdown>.dropdown-menu {
    top: 0;
    left: 100%;
  }

  .navbar .nav-item.has-dropdown:hover>.dropdown-menu,
  .navbar .nav-item.dropdown-submenu:hover>.mega-menu,
  .navbar .nav-item.has-dropdown:hover>.mega-menu,
  .navbar .nav-item.has-dropdown>.dropdown-menu>.nav-item.dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .nav-item.has-dropdown.has-mega-dropdown {
    position: static;
  }

  .navbar .nav-item.has-dropdown .mega-dropdown-menu {
    width: 100%;
  }

  .navbar .nav-item.has-dropdown .mega-dropdown-menu .container {
    display: block;
    max-width: none;
    padding-left: 50px;
  }

  .navbar .dropdown-menu.mega-dropdown-menu .nav-item {
    padding: 0;
  }

  .nav-item i[data-bs-toggle=dropdown] {
    display: none;
  }
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu.mega-dropdown-menu>.nav-item {
    padding: 0 15px;
  }

  .dropdown-menu.mega-dropdown-menu .nav-item:last-child>.nav-item-link {
    border-bottom: 1px solid #f2f2f2;
  }

  .dropdown-menu.mega-dropdown-menu [class^=col-]:last-child .nav-item:last-child>.nav-item-link {
    border-bottom: none;
  }
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .search-popup .search-popup-form {
    width: 90%;
  }

  .search-popup .search-popup-form-input {
    font-size: 20px;
    font-weight: 400;
    height: 40px;
    padding: 0 0 0 30px;
  }

  .search-popup .search-popup-btn {
    font-size: 20px;
    line-height: 40px;
  }

  .search-popup .search-popup-close {
    font-size: 14px;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media (max-width: 420px) {

  .header .action-btn-login span {
    display: none;
  }
}


/*------------------------
    Slider 
--------------------------*/
.header-transparent+.slider {
  margin-top: -100px;
}

.header-transparent.header-full+.slider {
  margin-top: -135px;
}

.header-transparent+.slider .slide-item {
  padding-top: 100px;
}

.slider {
  padding: 0;
}

.slider .slide-item {
  min-height: 550px;
  height: calc(100vh - 160px);
}

.slider .slide-item.bg-overlay:before {
  background-color: rgba(1, 29, 89, 0.15);
}

.slider .slide-item.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.9;
  background: rgba(45, 45, 45, 0.265);
  /* background: linear-gradient(to bottom, rgba(0, 34, 108, 0.99) 0%, rgba(179, 189, 211, 0.1) 70%, rgba(255, 255, 255, 0) 100%); */
}

.slider .slide-subtitle {
  display: inline-block;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.slider .slide-subtitle.highlighted {
  padding: 5px 13px;
  border-radius: 10px;
  background-color: var(--color-secondary);
}

.slide-content {
  margin-left: 10px;
}

.slider .slide-title {
  color: var(--color-white);
  margin-bottom: 25px;
  font-size: 55px;
  line-height: 1.1;
  font-weight: 700;
  min-width: 780px;
}

.slider .slide-desc {
  color: var(--color-gray-100);
  max-width: 500px;
  margin-bottom: 30px;
}

.slider .slick-arrow:before {
  background-color: transparent;
}

.slider .slick-arrow:hover {
  box-shadow: none;
}

.slider .slick-arrow.slick-next:before {
  content: "\e949";
}

.slider .slick-arrow.slick-prev:before {
  content: "\e948";
}

.slider .slick-dots {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
}

.slider .slick-dots li.slick-active button {
  background-color: var(--color-secondary);
}

.slider .cta-banner {
  padding: 50px;
}

.slider .cta-banner .cta-icon {
  font-size: 50px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.slider .cta-banner .icon-filled {
  background-color: var(--color-secondary);
}

.slider .cta-banner .slick-dots {
  position: static;
  text-align: left;
  margin-left: -17px;
}

.slider-layout2 .slide-item {
  height: auto;
  padding-top: 100px;
  padding-bottom: 170px;
}

.slider-centerd {
  text-align: center;
}

.slider-centerd .slide-desc {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1400px) {
  .slider .slick-arrow:before {
    font-size: 50px;
  }
}

@media (max-width: 1400px) {
  .slider .slick-arrow:before {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .slide-content {
    margin-left: 30px;
  }

  .slider .slide-desc {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
  }


  .slider .slick-arrow.slick-next {
    right: -5px;
  }

  .slider .slick-arrow.slick-prev {
    left: -5px;
  }

  .slider .btn {
    min-width: 190px;
  }

  .slider .btn.btn-outlined {
    line-height: 58px;
  }

  .slider .btn.btn-xl {
    min-width: 225px;
  }
}

@media (min-width: 1400px) {
  .slider .slick-arrow.slick-prev {
    left: 30px;
  }

  .slider .slick-arrow.slick-next {
    right: 30px;
  }
}

@media (min-width: 1200px) {
  .slider-centerd .slick-slide {
    padding-bottom: 70px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .slider .slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }

  .slider .slick-arrow.slick-prev {
    left: 10px;
  }

  .slider .slick-arrow.slick-next {
    right: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .slider .slide-title {
    font-size: 45px;
    line-height: normal;
    ;
    width: 100%;
  }

  .slide-content {
    margin-left: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider .slide-title {
    font-size: 45px;
    margin-bottom: 10px;
    width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .header-transparent+.slider {
    margin-top: 0 !important;
  }

  .slider .slide-item {
    min-height: 600px;
    padding: 100px 10px;
    height: 100vh;
  }

  .slider .slide-desc {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .slider .slick-arrow:before {
    font-size: 25px;
  }

  .slider .slick-arrow.slick-next {
    right: -20px;
  }

  .slider .slick-arrow.slick-prev {
    left: -20px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .slider .slide-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
    width: 100%;
  }
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .slider .slide-title {
    font-size: 30px;
    margin-bottom: 10px;
    min-width: 100% !important;
  }

  .slider .btn {
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .slider .slide-item {
    padding: 120px 10px 50px;
  }

  .slider .slide-subtitle.highlighted {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
  }
}

/*----------------------------
    Hero banner
----------------------------*/
.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/*-----------------------
    about us section
------------------------*/
.heading-desc {
  padding-bottom: 15px;
}

.feature-item {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s linear;
}

.feature-item:last-of-type {
  margin-bottom: 0 !important;
}

.feature-item .feature-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-right: 30px;
  font-size: 8px;
  color: var(--color-primary);
  background-color: var(--color-green-100);
}

.feature-item .feature-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.features-list-layout4 .feature-item {
  margin-bottom: 0;
  filter: url(#rounded-clippath-filter) drop-shadow(0px 5px 83px rgba(13, 14, 67, 0.08));
}

.features-list-layout4 .feature-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 175px;
  height: 200px;
  padding: 40px 20px;
}

.features-list-layout4 .feature-item .feature-icon {
  width: auto;
  height: auto;
  margin-right: 0;
  font-size: 50px;
  color: var(--color-white);
  background-color: transparent;
  margin-bottom: 15px;
}

.features-list-layout4 .feature-item .feature-title {
  font-family: var(--font-secondary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.features-list-layout4 .feature-item:first-child {
  transform: translate(85px, 50px);
}

.features-list-layout4 .feature-item:first-child .feature-item-inner {
  background-color: var(--color-primary);
}

.features-list-layout4 .feature-item:nth-child(2) .feature-item-inner {
  background-color: var(--color-secondary);
}

.features-list-layout4 .feature-item:nth-child(3) {
  transform: translate(85px, -50px);
}

.features-list-layout4 .feature-item:nth-child(3) .feature-item-inner {
  background-color: var(--color-white);
}

.features-list-layout4 .feature-item:nth-child(3) .feature-icon {
  color: var(--color-secondary);
}

.features-list-layout4 .feature-item:nth-child(3) .feature-title {
  color: var(--bs-gray);
}

.features-light .feature-item .feature-title {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }

  .features-list-layout1 .feature-item .feature-body {
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
  }
}

/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .feature-item .feature-content {
    padding: 20px;
  }

  .feature-item .feature-title {
    font-size: 16px !important;
    margin-bottom: 5px;
  }

  .feature-item .feature-desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/*----------------------------
    Contact
----------------------------*/
.contact-panel {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 15px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}

.contact-panel .panel-header {
  padding: 35px 40px;
  border-radius: 10px;
  background-color: var(--color-secondary);
}

.contact-panel .panel-header .panel-title {
  font-size: 20px;
}

.map iframe {
  width: 100%;
}

.map-container {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 340px;
  transform: translateY(-50%);
  margin-left: calc((100% - 1250px) / 2);
  margin-right: calc((100% - 1250px) / 2);
}

.map-container .accordion-item {
  padding: 0;
  border: 0;
}

.map-container .accordion-item.opened .accordion-header:not(.collapsed) .accordion-title {
  color: var(--color-secondary);
}

.map-container .accordion-header {
  border-top: 1px solid #e7ebef;
  border-bottom: 1px solid #e7ebef;
}

.map-container .accordion-header,
.map-container .accordion-body {
  padding: 20px 40px;
}

.map-container .accordion-title {
  padding: 0 40px 0 0;
  font-size: 17px;
}

.map-container .accordion-title:after {
  left: auto;
  right: 0;
}

.map-container .contact-list li {
  font-size: 14px;
  margin-bottom: 7px;
}

.map-container .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-panel-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.contact-layout1 .text-block {
  margin-bottom: 37px;
  padding-right: 50px;
}

.contact-layout1 .text-block-desc {
  font-size: 15px;
}

.locations-panel {
  margin-bottom: 65px;
}

.locations-panel .locations-panel-header {
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 25px;
}

.locations-panel .locations-panel-title {
  font-size: 25px;
  margin-bottom: 25px;
}

.locations-panel ul {
  display: flex;
  flex-wrap: wrap;
}

.locations-panel ul li {
  margin-bottom: 18px;
  flex-basis: 25%;
}

.locations-panel ul li a {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}

.locations-panel ul li a:hover {
  color: var(--color-primary);
}

.locations-panel ul li a i {
  margin-right: 10px;
}

.login-form {
  margin: auto;
  padding: 60px;
  max-width: 400px;
  border-radius: 20px;
  background-color: var(--color-white);
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}

/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .contact-panel {
    padding: 20px;
  }

  .contact-panel .contact-panel-desc {
    font-size: 13px;
    line-height: 23px;
  }
}

/*-------------------------------
    Contact Map section - iframe
---------------------------------*/
.contact-map-section {
  width: 100%;
  background: #f9f9f9;
  padding: 0px;
  margin: 0px;
}

.contact-map-section .map-wrapper {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%);
  transition: 0.3s ease;
}

.contact-map-section iframe:hover {
  filter: grayscale(0);
}

@media (max-width: 991px) {
  .contact-map-section .map-wrapper {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .contact-map-section .map-wrapper {
    height: 260px;
  }
}

/*----------------------
    About
-----------------------*/
.about-img {
  position: relative;
}

.about-img img {
  border-radius: 15px;
}

.about-layout1 .about-img {
  margin-right: 70px;
  padding-bottom: 40px;
}

.about-layout1 .about-img:after {
  content: "";
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 200px;
  z-index: 2;
  border-radius: 0 20px 0 20px;
  background: var(--color-secondary);
}

.about-layout1 .about-icon {
  font-size: 50px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.about-layout1 .about-banner {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 195px;
  padding: 47px 20px;
  text-align: center;
  border-radius: 20px 0 20px 0;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 40px var(--color-white);
}

.about-layout1 .about-banner .banner-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.about-layout1 .about-banner:hover .about-icon {
  transform: translateY(-7px);
}

.about-layout1 .about-text>p:first-of-type {
  font-weight: 600;
}

.about-layout1 .features-list-layout1+.btn {
  margin-left: 90px;
}

.about-layout2 .about-img {
  max-width: 550px;
}

.about-layout2 .about-img img {
  position: relative;
  z-index: 2;
}

.about-layout2 .about-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  animation: spinner 10s infinite;
  background-color: var(--color-green-100);
  transform: rotate(42deg);
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

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


.about-layout2 .features-list-layout4 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.about-layout2 .note,
.about-layout3 .note {
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-200);
}

.about-layout2 .note-icon,
.about-layout3 .note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-size: 18px;
  border-radius: 50%;
  color: var(--color-primary);
  background-color: var(--color-green-100);
  margin-right: 20px;
}

.about-layout3 .about-img {
  height: 100%;
  min-height: 400px;
  margin-bottom: 90px;
  border-radius: 0 15px 15px 0;
}

.about-layout3 .about-icon {
  position: absolute;
  right: -92px;
  bottom: -100px;
  font-size: 190px;
  line-height: 1;
  color: var(--color-gray-200);
}

.about-layout5 {
  background-color: #F6F7F8;
  padding: 60px 0px;

}

.about-layout5 .about-text,
.about-layout5 .about-img {
  padding: 29px;
}

.about-layout5 .text-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.about-layout5 .text-desc {
  font-size: 17px;
  margin-bottom: 36px;
}

.about-layout5 .tab-content {
  margin-top: -2px;
}

.about-layout5 .about-tabs {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.12);
}

.about-layout5 .about-tabs .nav-tabs {
  border-bottom: 2px solid #f0f1f4;
}

.about-layout5 .about-tabs .nav-tabs .nav-link {
  flex: 1;
  margin: 0;
  font-size: 20px;
  border-radius: 0;
  text-align: center;
  padding: 35px 30px;
  border-right: 2px solid #f0f1f4;
  transition: all 0.3s ease;
}

.about-layout5 .about-tabs .nav-tabs .nav-link:last-of-type {
  border-right: 0;
}

.about-layout5 .about-tabs .nav-tabs .nav-link:after {
  display: none;
}

.about-layout5 .about-tabs .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent transparent transparent transparent;
  transition: all 0.3s ease;
}

.about-layout5 .about-tabs .nav-tabs .nav-link.active,
.about-layout5 .about-tabs .nav-tabs .nav-link:hover {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.about-layout5 .about-tabs .nav-tabs .nav-link.active:before,
.about-layout5 .about-tabs .nav-tabs .nav-link:hover:before {
  border-color: var(--color-secondary) transparent transparent transparent;
}

.author-meta .author-img {
  margin-right: 15px;
}

.author-meta .author-img img {
  border: 10px solid rgba(var(--color-primary-rgb), 0.2);
}

.author-meta .author-title {
  font-size: 17px;
  margin-bottom: 2px;
}

@media (max-width: 1199px) {
  .about-layout3 .about-img {
    height: auto;
    margin-bottom: 60px;
  }

  .about-layout3 .about-icon {
    right: 50%;
    bottom: -60px;
    font-size: 140px;
    transform: translateX(50%);
  }
}

@media (max-width: 1399px) {
  .about-layout1 .about-img {
    margin-left: 40px;
  }
}

@media (min-width: 1200px) {
  .about-layout1 .btn-xl {
    min-width: 230px;
  }

  .about-layout1 .about-text>p {
    font-size: 16px;
  }

  .about-layout2 .heading-title {
    font-size: 39px;
  }

  .about-layout2 .about-img {
    margin-left: 110px;
  }

  .about-layout3 .container-fluid {
    padding-right: calc((100% - 1140px) / 2);
  }

  .about-layout3 .about-text {
    max-width: 520px;
  }

  .about-layout4 .btn-featured {
    overflow: visible;
  }

  .about-layout4 .btn-featured:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-width: 660px;
    background: inherit;
    border-radius: inherit;
  }
}

@media (min-width: 1300px) {
  .about-layout3 .container-fluid {
    padding-right: calc((100% - 1280px) / 2);
  }
}

@media (min-width: 1400px) {
  .about-layout5 .tab-content {
    padding: 60px;
  }
}

@media (min-width: 1600px) {
  .about-layout3 .col-img {
    width: 55%;
  }

  .about-layout3 .col-text {
    width: 45%;
  }
}

@media (min-width: 992px) {
  .about-layout2 .about-img {
    margin: 0 70px 0 110px;
  }
}

@media (max-width: 991px) {
  .about-layout1 .about-img {
    margin: 0 40px 20px 40px;
  }

  .about-layout1 .about-banner {
    width: 150px;
    padding: 27px 20px;
    box-shadow: 0 0 0 10px var(--color-white);
  }

  .about-layout1 .about-banner .banner-text {
    font-size: 15px;
  }

  .about-layout1 .features-list-layout1+.btn {
    margin-left: 60px;
  }

  .about-layout2 .about-img {
    margin: 0 30px;
  }

  .about-layout5 .about-img {
    padding: 20px;
  }

  .about-layout5 .about-text {
    padding: 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-layout5 .text-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-layout5 .text-desc {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .about-layout5 .btn-xl {
    height: 50px;
    min-width: 0;
  }

  .about-layout5 .about-tabs .nav-tabs {
    flex-wrap: nowrap;
  }

  .about-layout5 .about-tabs .nav-tabs .nav-link {
    font-size: 12px;
    padding: 15px 8px;
    white-space: nowrap;
  }
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .about-layout2 .about-img {
    margin: 0 20px;
  }

  .about-layout2 .features-list-layout4 .feature-item-inner {
    height: auto;
  }
}

@media (max-width: 510px) {
  .about-layout2 .features-list-layout4 {
    top: -70px;
  }

  .about-layout2 .about-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .about-layout5 .about-tabs .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 400px) {
  .about-layout2 .features-list-layout4 {
    display: none;
  }

  .about-layout2 .about-img {
    margin-bottom: 10px;
  }
}

/* -------------------------------------
   CONTACT SECTION
-------------------------------------*/
.contact-section {
  padding: 50px 0;
  background: #fdfdfd;
}

.contact-details-wrapper {
  padding: 20px;
}

.info-list {
  padding: 0;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(12, 192, 223, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.info-item:hover .icon-box {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.05);
}

.info-content-contact a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  margin-top: 5px;
  transition: 0.3s;
}

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

@media (max-width: 991px) {
  .contact-details-wrapper {
    margin-top: 40px;
    padding: 10px 0;
  }

  .info-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 60px 0 0px;
  }

  .info-item {
    margin-bottom: 22px;
  }

  .icon-box {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-right: 15px;
  }

  .info-content-contact a {
    font-size: 16px !important;
    word-break: break-word;
    margin: 8px 0px 0 !important;
  }
}

/* ===========================
    Banner section style start
=========================== */
.gallery-banner {
  position: relative;
  background: url("../images/banners/gallery-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.project-banner {
  position: relative;
  background: url("../images/banners/projects-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.about-banner {
  position: relative;
  background: url("../images/banners/aboutus-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.career-banner {
  position: relative;
  background: url("../images/banners/career-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}


.services-banner {
  position: relative;
  background: url("../images/banners/services-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.sector-banner {
  position: relative;
  background: url("../images/banners/sector-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.contact-banner {
  position: relative;
  background: url("../images/banners/contact-banner.webp") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.inner-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 33, 75, 0) 60%,
      rgba(12, 160, 223, 0.45) 100%);
}

.inner-banner {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0px;
}

.banner-content {
  position: relative;
  text-align: left;
  color: var(--color-white);
  z-index: 2;
}

.banner-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--color-white);
  display: inline-block;
  background: var(--color-primary);
  padding: 1px 15px;
}

.breadcrumb-wrapper {
  font-size: 16px;
  font-weight: 600;
  /* text-shadow: 1px 1px 3px rgb(180, 180, 180); */
  display: inline-block;
  background: var(--color-secondary);
  padding: 6px 15px;
  box-shadow: rgba(10, 10, 10, 0.534) 6px 0px 8px -2px;
}

.breadcrumb-wrapper span {
  margin: 0 8px;
  color: #ffffff;
}


.breadcrumb-wrapper a {
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-wrapper a:hover {
  color: var(--color-primary);
}

.breadcrumb-wrapper span {
  margin: 0 6px;
  color: #eaeaea;

}

@media (max-width: 991px) {
  .about-banner {
    min-height: 260px;
  }

  .banner-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .about-banner {
    min-height: 220px;
  }

  .banner-title {
    font-size: 28px;
  }
}

/*--------------------------
  career section style start
---------------------------- */
.grow-with-us {
  padding: 50px 0px 0;
}

.career-form-wrapper {
  background: rgba(12, 192, 223, 0.1);
  padding: 38px;
  border-radius: 16px;
  height: auto;
  width: 60%;
  margin: auto;
}

.form-label {
  font-weight: 600;
  color: var(--color-secondary);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(12, 192, 223, 0.2);
}

/* ---------- Button ---------- */
.career-section {
  padding: 50px 0px;
}

.career-form-button {
  text-align: center;
}

.career-btn {
  margin-top: 10px;
  width: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.career-btn:hover {
  background: var(--color-primary);
}

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

  .career-title {
    font-size: 32px;
  }

  .vacancy-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .career-form-wrapper {
    padding: 30px 15px;
    height: auto;
    width: 100%;
  }

  .career-btn {
    margin-top: 10px;
    width: 80%;
  }

  .career-section {
    padding: 30px 0;
  }

  .career-title {
    font-size: 28px;
  }

  .career-card {
    padding: 28px 22px;
  }
}

/* -------------------------
   Statistics Section
------------------------- */
.stats-section {
  padding: 70px 0;
  background-image: url(../images/backgrounds/pattern.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  background: var(--color-white);
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: nowrap;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background-image: url("../images/sector/stats-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--bs-box-shadow-sm);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.stat-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;

}

.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1 !important;
}

.stat-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #18ecff;
  text-shadow: 1px 1px 2px rgba(2, 23, 58, 0.849);
}

.stat-content p {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(237, 237, 237, 0.646);
}

.stat-content h2,
.stat-content p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
}

@media (max-width: 800px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .stat-item {
    flex-direction: column;
    padding: 15px 10px;
    gap: 8px;
    text-align: center;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .stat-content h2 {
    font-size: 20px;
    line-height: 1;
  }

  .stat-content p {
    font-size: 11px;
    line-height: 1.2;
  }
}

/*----------------------------------
    back to top section style
----------------------------------- */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 9999;
  width: 45px;
  height: 45px;
  border-radius: 50%;

  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  cursor: pointer;

  font-size: 20px;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-4px);
}

/*-------------------------------------
    Terms and codition & Privacy Policy
--------------------------------------- */
.legal-section {
  background-color: #f4fcfea2;
  padding: 60px 20px 60px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-main-title {
  color: var(--color-secondary);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
}

.legal-updated {
  font-size: 16px;
  color: #888;
  margin-bottom: 25px;
  color: var(--color-primary);
}

.legal-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
}

.legal-point {
  margin-bottom: 25px;
}

.legal-point h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.legal-point p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 20px 0px 60px;
  }

  .legal-card {
    padding: 25px 15px;
    margin: 0px 15px;
  }

  .legal-main-title {
    padding: 0px 15px;
  }

  .legal-updated {
    padding: 0px 15px;
  }
}

@media (max-width: 532px) {
  .legal-section {
    padding: 40px 0px 40px;
  }

  .legal-card {
    padding: 25px 15px;
    margin: 0px;
  }
}

/*-----------------------
    Sitemap List
--------------------------*/
.sitemap-list {
  list-style: none;
  padding-left: 0;
}

.sitemap-list li {
  margin-bottom: 8px;
}

.sitemap-list li a {
  text-decoration: none;
  font-size: 18px;
  color: #555;
  transition: 0.3s ease;
}

.sitemap-list li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

/*-----------------------
    navbar contact us button style
--------------------------*/
/* navbar contact us button style */
.contact-btn {
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

@media (max-width: 991px) {

  .contact-mobile-btn {
    background-color: var(--color-primary);
    color: #fff !important;
    display: block !important;
    margin-left: 20px !important;
    margin-top: 10px !important;
    width: 60%;
    text-align: center;
    padding: 5px 10px !important;
    border-radius: 10px;;
    font-weight: 600;
    transition: none !important; 
    transform: none !important;
    transition: color 0.3s ease;
  }

  .contact-mobile-btn:hover {
    transform: none !important;
    text-align: center;
    padding: 5px 10px !important;
    background: var(--color-secondary) !important; 
  }
}

/*----------------------------------
    sectors section style start
----------------------------------- */
.sectors-section {
  padding: 50px 80px;
  background: #d1edff;
  background: linear-gradient(90deg, rgba(209, 237, 255, 1) 26%, rgba(217, 255, 255, 0.9) 100%);
}

.sector-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sector-card {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.sector-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
}

.sector-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 57, 0.3);
}

.sector-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 40px 40px 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-content .sector-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-white);
}

.sector-content .sector-subtitle {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--color-white);
}

.sector-desc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sector-hover-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-card:hover .sector-hover-icon {
  opacity: 1;
  transform: translateX(0);
}

.sector-subtitle {
  margin: 0;
}


.sector-btn {
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
  padding: 12px 20px;
  border-radius: 5px;
  width: 40%;
  text-align: center;
  margin-top: 12px;
}

.sector-btn:hover {
  color: var(--color-secondary) !important;
  background: var(--color-white) !important;
}

.sector-card:hover .sector-bg {
  transform: scale(1.1);
}

.sector-card:hover .sector-overlay {
  background: rgba(11, 28, 57, 0.5);
}

.sector-card:hover .sector-btn {
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .sector-btn {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .sector-btn {
    width: 40%;
  }

}

@media (max-width: 532px) {
  .sectors-section {
    padding: 50px 0px;
  }

  .sector-btn {
    color: var(--color-white);
    background: var(--color-primary);
    font-weight: 600;
    transition: 0.3s;
    padding: 10px 15px;
    width: 50%;
  }

  .sector-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 0px 15px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

  }

  .sector-card {
    height: 460px;
  }
}

/*----------------------------------
    Footer section style start
----------------------------------- */
.contact-strip {
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
  padding: 72px 0 10px;
}

.contact-strip::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(circle, rgba(0, 188, 212, 0.25) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: start;
}

.strip-divider {
  width: 1px;
  height: 380px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  justify-self: center;
  align-items: center;
}

/* ================================================
   LEFT SIDE
   ================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
}

.strip-title {
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.strip-title span {
  color: var(--color-primary);
}

.strip-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 32px;
}

.strip-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-vendor {
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 1.5px solid #00bcd4;
}

.btn-vendor i {
  font-size: 12px;
}

.btn-vendor:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.35);
}

.btn-contact-footer {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-contact-footer:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.35);
}

/* ================================================
   RIGHT SIDE
   ================================================ */
.strip-logo {
  text-align: left;
  margin-bottom: 20px;
}

.strip-logo img {
  /* max-width: 180px; */
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.strip-right-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bs-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.strip-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0 0px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.07); */
}

.info-row:first-child {
  padding-top: 0;
}

.info-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 188, 212, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 13px;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.info-value {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.footer-contact-no {
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-weight: normal !important;
  border-bottom: none !important;

}

.footer-contact-no:hover {
  color: var(--color-primary);
}

/* Map link */
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.location-link i {
  font-size: 10px;
}

.location-link:hover {
  color: var(--color-primary);
  gap: 9px;
  border-bottom: 1px dashed var(--color-primary);
}

/* ── Social bar ── */

.strip-social-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.social-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.social-sep {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.social-icons-wrap {
  display: flex;
  gap: 8px;
}

.social-icons-wrap a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.22s ease;
}

.social-icons-wrap a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.3);
}

/* ================================================
   BOTTOM BAR
   ================================================ */
.strip-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.strip-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.strip-bottom a {
  color: rgba(255, 255, 255, 0.25);
}

.strip-bottom a:hover {
  color: var(--color-primary);
}

.strip-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.strip-bottom-links a:hover {
  color: #00bcd4;
}

.dot-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  line-height: 1;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet: collapse divider, stack columns */
@media (max-width: 991px) {
  .strip-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .strip-divider {
    display: none;
  }

  .strip-title {
    font-size: 30px;
  }

  .strip-right-title,
  .strip-social-bar {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .contact-strip {
    padding: 52px 0 48px;
  }

  .contact-strip .container {
    padding: 0 20px;
  }

  .strip-buttons {
    flex-direction: column;
  }

  .strip-btn {
    justify-content: center;
  }

  .strip-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .social-icons-wrap a {
    width: 34px;
    height: 34px;
  }
}


/*-----------------------
    Anchor navigation bar
--------------------------*/
.anchor-navigation-bar {
  background: var(--color-secondary);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.anchor-navigation-bar::-webkit-scrollbar {
  display: none;
}

.anchor-navigation {
  flex-shrink: 0;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.anchor-navigation:hover {
  color: var(--color-primary)
}

@media (max-width: 480px) {
  .anchor-navigation {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/*--------------------------------------
    Services - index page section style
----------------------------------------*/
.service-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.08);
  transition: all 0.4s ease;
}

.service-item .service-body {
  position: relative;
  /* background-color: var(--color-secondary); */
  background: var(--color-secondary);
}

.service-item .service-body:hover {
  background-color: var(--color-white);
  box-shadow: inset 0 -150px 80px -20px rgba(12, 192, 223, 0.12);
  border: 1px solid var(--color-primary);
}

/* Odd card */
.col-lg-4:nth-child(odd) .service-item .service-body {
  background-color: #202564;
  /* background: var(--color-secondary); */
  transition: all 0.3s ease;
}

/* Even card */
.col-lg-4:nth-child(even) .service-item .service-body {
  background-color: #1c3d86;
  transition: all 0.3s ease;
  /* background: #1a3566; */
}

.service-thin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.service-thin-icon i {
  font-size: 36px;
}

.service-item .thin-icon {
  color: transparent !important;
  -webkit-text-stroke: 2px var(--color-white);
  transition: -webkit-text-stroke 0.3s ease;
}

.service-item:hover .thin-icon {
  -webkit-text-stroke: 3px var(--color-secondary);
}

.service-dark-card {
  padding-bottom: 10px;
}

.service-item .d-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start;
}

.service-title {
  margin-bottom: 0 !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  font-size: 25px;
  margin-bottom: 18px;
  color: var(--color-white);
}

.service-item:hover .service-body {
  background-color: var(--color-white) !important;
  box-shadow: inset 0 -150px 80px -20px rgba(12, 192, 223, 0.12);
}

.service-desc {
  color: rgb(179, 179, 179);
}

.service-item:hover .service-title,
.service-item:hover .service-desc {
  color: #666;
}


.service-item:hover .service-title {
  color: var(--color-secondary);
}

.service-item .service-title a {
  color: var(--color-white);
}

.service-item .service-title:hover a {
  color: var(--color-secondary);
}


.service-item .service-desc {
  margin: 15px 0;
}

.service-item .service-title,
.service-item .service-desc {
  position: relative;
  z-index: 2;
  transition: all 0.3s linear;
}

.service-item .service-shape {
  display: flex;
  position: absolute;
  top: -13px;
  right: 50px;
  left: auto;
  z-index: 2;
  opacity: 0;
  filter: url(#rounded-clippath-filter-small);
  transform: scale(0);
  transition: all 0.3s ease-in-out;

}

.service-item .hexagon-clippath {
  width: 30px;
  height: 26px;
  margin-right: 3px;
  background-color: var(--color-primary);
}

.service-item .hexagon-clippath2 {
  width: 48px;
  height: 26px;
  background-color: var(--color-secondary);
}

.service-item:hover .service-shape {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .service-item .service-shape {
    opacity: 0;
    transform: scale(1);
  }
}

.service-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
}

.services-layout3 {
  padding: 60px 0px;
}

.about-layout2 {
  padding: 60px 0px 20px;
}

@media (max-width: 768px) {
  .service-item .service-icon i {
    font-size: 40px;
  }
}

.services-layout3 .service-item {
  overflow: visible;
  box-shadow: 0px 5px 83px 0px rgba(13, 14, 67, 0.08);
}


.services-layout3 .service-item .service-icon {
  font-size: 15px;
  margin-bottom: 25px;
}

.services-layout3 .service-item .service-body {
  border-radius: 10px;
}

.services-layout3 .service-item .btn {
  min-width: 170px;
  height: 58px;
}

.services-layout3 .service-item .btn {
  border: 1px solid var(--color-white);
}


.services-layout3 .service-item .service-body {
  padding: 40px 30px;
  height: 300px;
}

@media (min-width: 1200px) {
  .service-body {
    padding: 38px 50px;
  }

  .services-layout3 .service-item .service-title {
    padding-right: 40px;
  }

  .services-layout3 .service-item .service-body {
    padding: 40px 50px;
  }

  .services-layout3 .service-item .service-desc {
    font-size: 15px;
  }

  .services-layout3 .service-item:hover .service-icon {
    transform: translateY(-10px);
  }

}

@media (max-width: 1199px) {
  .service-item .service-body {
    padding: 18px 20px !important;
  }

  .services-layout3 .features-list-layout3 {
    margin: 20px 0 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .services-layout3 {
    padding: 30px 0;
  }

  .services-layout3 .service-item .service-body {
    padding: 40px 30px;
    height: auto;
  }

  .service-item .service-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .service-item .service-desc {
    font-size: 14px;
  }

  .services-layout3 .service-item .service-icon {
    margin-bottom: 15px;
  }
}

/*--------------------------------
  Services inner page style start
----------------------------------*/
.service-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0;
}

.service-intro-para {
  max-width: 600px;
  text-align: center;
}

/*--------------------------------------------------
  Services - 1) design and engineering section style
----------------------------------------------------*/
.de-section {
  padding: 40px 35px 50px;
  margin: 50px auto 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.de-heading-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.de-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.de-icon-wrap {
  width: 85px;
  height: 85px;
  background: rgba(12, 192, 223, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.de-section .de-icon-wrap i {
  transition: transform 0.5s ease;
  display: inline-block;
}

.thin-icon-service-inner {
  color: transparent !important;
  -webkit-text-stroke: 2px var(--color-white);
  transition: -webkit-text-stroke 0.3s ease;
}

.thin-icon-service-inner {
  -webkit-text-stroke: 3px var(--color-primary);
}

.de-section:hover .de-icon-wrap i {
  transform: rotatey(180deg);
}

.de-icon-wrap i {
  font-size: 42px;
  color: var(--color-primary);
}

.service-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-secondary);
  margin: 0;
}

.de-para {
  font-size: 16px;
  color: #4b5a6b;
  line-height: 1.75;
  margin: 0 auto;
  padding-bottom: 30px;
}

.de-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.de-deliverables-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.de-list {
  list-style: none;
  padding-left: 0;
  margin-left: 20px;
}

.de-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.de-list li::before {
  content: "◈";
  position: absolute;
  left: 0;
  top: -3px;
  font-weight: 700;
  font-size: 20px;
  color: #04a0bccf;
}

.de-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-right .shape-bg {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #0cbfdf41;
  border-radius: 50%;
  bottom: -30px;
  left: 85%;
  top: 140px;
  transform: translateX(-50%);
  z-index: 0;
}

.de-right .shape-bg-small {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #0cbfdfbc;
  border-radius: 50%;
  bottom: 0px;
  left: 7%;
  top: -8%;
  transform: translateX(-50%);
  z-index: 0;
}

.de-right img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .de-section {
    padding: 40px 8px;
  }

  .de-para {
    max-width: 100%;
  }

  .de-deliverables-label {
    font-size: 13px;
  }

  .de-body {
    grid-template-columns: 1fr;
  }

  .de-list {
    margin-left: 0px;
  }

  .de-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
  }

  .de-right .shape-bg {
    width: 180px;
    height: 180px;
  }

  .service-section-title {
    font-size: 25px;
    font-weight: 700;
  }
}

/*----------------------------------------------
  Services - 2) Procurement section style start
------------------------------------------------*/
/* cta section */
.vendor-cta {
  padding: 60px 20px;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.vendor-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.vendor-content {
  max-width: 800px;
}

.vendor-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-align: left;
}

.vendor-text {
  font-size: 15px;
  color: #c5c5c5;
  line-height: 1.7;
  max-width: 800px;
  text-align: left;
}

.vendor-action {
  flex-shrink: 0;
}

.vendor-btn {
  display: inline-block;
  padding: 18px 26px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.vendor-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(219, 219, 219, 0.3);
}

@media (max-width: 768px) {
  .vendor-cta {
    padding: 40px 10px;
  }

  .vendor-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .vendor-title {
    font-size: 28px;
  }

  .vendor-text {
    font-size: 14px;
  }

  .vendor-action {
    margin-top: 10px;
  }

  .vendor-btn {
    width: auto;
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.35);
  }
}

/*-------------------------------------------------------
  Services - Fabrication section button for gallery page
---------------------------------------------------------*/
.fab-cta {
  margin-top: 30px;
}

.fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-secondary);

  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.fab-btn::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.fab-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.fab-btn:hover::after {
  transform: translateX(4px);
}

.fab-btn:active {
  transform: scale(0.97);
}

/*----------------------------
  Sectors section style start
------------------------------*/
.main-sector {
  width: 100%;
  margin: auto;
  padding: 30px;
}

.single-sector-wrap {
  width: 80%;
  margin: 0 auto;
}

.sector-btn1 {
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
  padding: 12px 20px;
  border-radius: 5px;
  width: 30%;
  text-align: center;
  margin-top: 12px;
}

.sector-btn1:hover {
  color: var(--color-secondary);
  background: var(--color-white);
}

.subsector-grid {
  display: grid;
  grid-template-columns: repeat(2, 500px);
  justify-content: center;
  gap: 24px;
  padding: 15px 0px;
}

.sub-card {
  padding: 28px;
  border-radius: 14px;
  background: var(--color-white);
  /* background-color: var(--color-white) !important; */
  box-shadow: inset 0 -150px 80px -20px rgba(12, 192, 223, 0.12);
  background: #d1edff;
  background: linear-gradient(90deg, rgba(209, 237, 255, 1) 26%, rgba(217, 255, 255, 0.9) 100%);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--color-primary);
  transition: 0.4s ease;
}

.sub-card:hover::before {
  width: 100%;
}

.sub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sub-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.title-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;

  opacity: 0;
  transform: translateX(-8px) scale(0.8);
  transition: 0.3s ease;
}

.title-arrow i {
  font-size: 12px;
}

.sub-card:hover .title-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.sub-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.sub-btn {
  display: inline-block;
  padding: 18px 26px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.sub-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(219, 219, 219, 0.3);
}

@media (min-width: 1800px) {
  .single-sector-wrap {
    width: 50%;
  }

  .subsector-grid {
    grid-template-columns: repeat(2, 600px);
  }
}

@media (max-width: 768px) {
  .subsector-grid {
    grid-template-columns: repeat(2, 350px);
    gap: 20px;
    padding: 25px 5px;
  }

  .main-sector {
    padding: 0px;
  }

  .single-sector-wrap {
    width: 80%;
  }

  .title-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
  }


}

@media (max-width: 532px) {
  .subsector-grid {
    grid-template-columns: 1fr;
    padding: 25px 5px;
  }

  .main-sector {
    padding: 0px;
  }

  .single-sector-wrap {
    width: 100%;
  }

  .sector-btn1 {
    width: 60%;
  }
}

/*----------------------------
  About us section style start
------------------------------*/

/*-----------------------------------------
  About us - Who we are section style start
-------------------------------------------*/
.whoweare-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.who-we-are-gallery-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-we-are {
  width: 80%;
  height: auto;
  border: 2px solid red;
}

/*-----------------------------------------------
  About us - Vision & Mission section style start
-------------------------------------------------*/
.vision-mission-value-section {
  background-image: url("../images/about/vision-mission-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.vm-section {
  padding: 50px 20px 0;
}

.vision-mission-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.vision-mission-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 750px;
}

.vm-card {
  padding: 20px;
  background: rgba(0, 16, 24, 0.705);
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
}


.vm-card:hover {
  /* transform: translateY(-6px); */
  border: 1px solid var(--color-primary);
  box-shadow: rgba(107, 208, 248, 0.311) 0px 7px 29px 0px;
}

.vm-card:hover .vision-mission-title {
  color: #24deff;
}

.vm-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 20px;
  transition: all 0.3s ease;
}

.vm-icon img {
  width: 25px;
  height: 25px;
}

/* .vm-card:hover .vm-icon {
  background: var(--color-secondary);
  color: var(--color-white);
} */


.vm-text {
  font-size: 15px;
  color: #e6e6e6;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vm-section {
    padding: 50px 0px 0;
  }

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

  .vision-mission-title {
    font-size: 23px;
  }

  .vm-card {
    padding: 15px;
  }
}

/* =====================================
   About us - Value section syle start
======================================== */
.why-choose-us {
  padding: 50px 0;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.why-card {
  background: var(--color-white);
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--bs-box-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;

}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bs-box-shadow);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(12, 192, 223, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 28px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.why-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

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

@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .why-choose-us {
    padding: 60px 0;
  }
}

/*----------------------------------------------
  About us - management team section style start
------------------------------------------------*/
.team-heading {
  padding-bottom: 40px;
}

.team-section {
  padding: 50px 0;
}

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

.team-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(173, 243, 255, 0.15);
  box-shadow: rgba(185, 240, 250, 0.792) 0px 3px 8px;
  padding: 15px;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 180px;
  flex-shrink: 0;
}

.team-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.team-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.team-exp {
  font-size: 13px;
  color: var(color-gray-100);
  margin-bottom: 10px;
}

.team-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

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

  .team-card {
    width: 80%;
    margin: auto;
  }
}

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

  .team-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    width: 100%;
  }

  .team-img {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }

  .team-img img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
}

/*--------------------------------------------------------
  About us - HSE & Quality Compliance section style start
----------------------------------------------------------*/
.hse-compliance-section {
  background-color: #f8f9fb;
  padding: 50px 0;
}

.site-safety-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: rgba(63, 194, 246, 0.297) 0px 7px 29px 0px;
  object-fit: cover;
  /* margin: auto; */
}

/* Hover Effect */
/* .site-safety-img:hover {
  box-shadow: 0 15px 35px rgba(12, 160, 223, 0.2); 
} */

.safety-stat {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  border-left: 5px solid var(--color-primary);
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
}

.compliance-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: 0.3s;
}

.compliance-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.card-header i {
  font-size: 30px;
  color: var(--color-secondary);
}

.card-header h4 {
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

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

.compliance-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #555;
}

.compliance-list li i {
  color: var(--color-primary);
  margin-top: 4px;
  margin-right: 10px;
  font-size: 18px;
}

.future-certs {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}

.future-certs span {
  background: #e9ecef;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 5px;
  color: var(--color-secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-safety-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: rgba(63, 194, 246, 0.297) 0px 7px 29px 0px;
    object-fit: cover;
    margin: auto;
  }

  .hse-compliance-section {
    padding: 40px 0;
  }

  .safety-stat {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .compliance-card {
    padding: 15px;
    margin-bottom: 10px;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;

  }
}

@media (max-width: 767px) {

  .section-intro {
    font-size: 15px;
  }

  .card-header h4 {
    font-size: 18px;
  }

  .compliance-card {
    padding: 15px;
    margin-bottom: 10px;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: auto;

  }

  .compliance-list li {
    font-size: 14px;
    line-height: 1.5;
  }

  .compliance-list li i {
    font-size: 16px;
    margin-right: 5px;
  }

  .future-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .future-certs span {
    margin-left: 0;
    font-size: 12px;
  }
}

/*-----------------------
  Client section style
-------------------------*/
.clients-logo-section {
  padding: 50px 0px 0px;
  background: var(--color-white);
}

.client-intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;

}

.client-intro-para {
  text-align: center;
  max-width: 800px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
}

.logo-box {
  /* border: 1px solid #ddd;
  background: var(--color-white); */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: rgba(0, 31, 63, 0.1) 0px 4px 12px; */
  /* box-shadow: rgba(214, 243, 249, 0.402) 0px -50px 36px -28px inset; */
}

.logo-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: 0.3s ease;
}

.logo-box:hover img {
  filter: grayscale(0);
}


@media (min-width: 1220px) {
  .logo-box {
    height: auto;
  }

}

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

  .logo-box {
    height: auto;
  }

  .clients-logo-section {
    padding: 60px 20px;
    background: var(--color-white);
  }

}

@media (max-width: 768px) {
  .clients-logo-section {
    padding: 60px 10px;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}

@media (max-width: 575px) {
  .clients-logo-section {
    padding: 40px 0px;
    background: var(--color-white);
  }

  .logo-box {
    height: auto;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

/*----------------------------
  Group partner section style
------------------------------*/
.group-partner-section {
  padding: 10px;
}

.group-partner-bg {
  background: var(--color-secondary);
  padding: 60px 20px;
  text-align: center;
}

.partner-text {
  margin-bottom: 30px;
}

.group-description {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.partner-logo-box {
  background: var(--color-white);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 300px;
  transition: 0.3s;
}

.partner-logo-box img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.partner-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .group-description {
    font-size: 15px;
    padding: 0 10px;
  }

  .partner-logos {
    flex-direction: column;
  }

  .partner-logo-box {
    width: 100%;
    max-width: 250px;
  }
}

.group-photo-section {
  padding: 50px 0;
  display: flex;
  gap: 10px;
}

.group-photo-card {
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.group-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s transform ease;
}

.group-photo-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .group-photo-section {
    padding: 50px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }

  .group-photo-card {
    height: 200px;
    margin-bottom: 10px;
  }
}

/*--------------------------------
  project map section style start
----------------------------------*/
.project-map-section {
  padding: 50px 0px 0;
  text-align: center;
}

/* location - project location or office location  */
.map-legend {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
}

.legend-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
  z-index: -1;
}

.legend-dot.head {
  background: var(--color-secondary);
}

.legend-dot.project {
  background: red;
}

.legend-dot.head::after {
  background: var(--color-secondary);
}

.legend-dot.project::after {
  background: red;
}

.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
}

.map-img {
  width: 100%;
  filter: grayscale(20%);
}

.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}

/* Head Office - Blue */
.pin.head-office {
  background: var(--color-secondary);
}

.pin.head-office::after {
  background: #1e214bc8;
}

/* Projects - Red */
.pin.project-pin {
  background: red;
}

.pin.project-pin::after {
  background: rgba(255, 59, 59, 0.5);
}

.pin::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.pin-popup {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 180px;
  background: var(--color-white);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: left;
  z-index: 1000;
  pointer-events: none;
}

.pin-popup1 {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  background: var(--color-white);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: left;
  z-index: 1000;
  pointer-events: none;

}

.pin.active {
  z-index: 999 !important;
}

.pin-popup::before,
.pin-popup1.before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--color-white);
}

.pin-popup strong,
.pin-popup1 strong {
  display: block;
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.pin-popup p,
.pin-popup1 p {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.pin.active .pin-popup,
.pin.active .pin-popup1 {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* same location */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.project-count {
  font-size: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}

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

.project-list li {
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px dashed #f0f0f0;
  position: relative;
  padding-left: 15px;
}

.project-list li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
  top: 2px;
}

.project-list li span {
  font-weight: 600;
  color: var(--color-secondary);
}

.project-list li:last-child {
  border-bottom: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .project-map-section {
    padding: 30px 10px 20px;
  }

  .pin-popup,
  .pin-popup1 {
    width: 70vw;
    max-width: 360px;
    padding: 10px;
    bottom: 20px;
    left: 50%;
  }

  .popup-header strong {
    font-size: 13px !important;
  }

  .project-count {
    font-size: 9px;
    padding: 1px 6px;
  }

  .pin {
    width: 8px;
    height: 8px;
  }

}

@media (max-width: 600px) {

  .pin-popup,
  .pin-popup1 {
    width: 85vw;
    max-width: 270px;
    left: 0%;
  }

  .pin {
    width: 7px;
    height: 7px;
  }


}

@media (max-width: 532px) {
  .project-pin {
    top: 54% !important;
    left: 67% !important;
  }

  .head-office {
    top: 52% !important;
    left: 67.5% !important;
  }

  .pin::after {
    animation: none;
  }

  .pin.head-office::after {
    background: none;
  }

  .pin.project-pin::after {
    background: none;
  }

  .pin {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .project-pin {
    top: 54% !important;
    left: 67% !important;
  }

  .head-office {
    top: 50.5% !important;
    left: 67.5% !important;
  }

  .pin-popup,
  .pin-popup1 {
    width: 85vw;
    max-width: 220px;
    left: 0%;
  }

}

/*----------------------
  project section style
------------------------*/
.projects-section {
  padding: 50px 20px;
  background: #f8fafc;
}

.projects-sub {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 90%;
  margin: auto;
}

.project-card {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
  padding: 25px;
}

/* IMAGE LEFT */
.project-img {
  width: 55%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-content {
  width: 45%;
  padding: 25px;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.project-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 4px;
  border-radius: 2px;

  background: linear-gradient(to right,
      var(--color-primary) 0%,
      var(--color-primary) 50%,
      var(--color-secondary) 50%,
      var(--color-secondary) 100%);

  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.6s ease-in-out;
}

.project-content:hover::after {
  background-position: left;
}

.project-card:hover {
  border: 1px solid var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.project-top {
  display: flex;
  margin-bottom: 10px;
}

.de-deliverables-label-1 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.badge {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.badge.status.ongoing {
  background: #dcfce7;
  color: green;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0 5px;
}

.project-client {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.project-meta {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.project-over-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.project-img:hover .project-over-overlay {
  opacity: 1;
}

.project-over-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-white);
  cursor: pointer;
  transition: 0.3s ease;
}

.project-over-trigger:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

.project-over-popup {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.project-over-popup.active {
  opacity: 1;
  visibility: visible;
}

.project-over-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-over-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: var(--color-white);
  cursor: pointer;
}


/* MOBILE */
@media (max-width: 768px) {
  .projects-section {
    padding: 40px 0px;
    background: #f8fafc;
  }

  .project-card {
    flex-direction: column;
    padding: 20px 10px;
  }

  .projects-grid {
    gap: 50px;
    width: 80%;
  }

  .project-img,
  .project-content {
    width: 100%;
    height: auto;
  }

  .project-content {
    padding: 25px 2px 10px;
  }

  .de-deliverables-label-1 {
    font-size: 13px;
    letter-spacing: 1.1px;
    ;
  }
}

@media (max-width: 532px) {
  .projects-grid {
    gap: 50px;
    width: 100%;

  }

}

/*----------------------------
  Gallery section style start
------------------------------*/
.fabrication-gallery-section {
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 60px 15px 30px;
  background: linear-gradient(to top, rgb(0, 20, 40), transparent);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-text-content {
  text-align: left;
  flex: 1;
}

.gallery-text-content h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
}

.gallery-text-content p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
  color: var(--color-primary);
}

.gallery-plus-icon {
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.gallery-plus-icon:hover {
  box-shadow: rgba(1, 180, 200, 0.628) 0px 7px 29px 0px;
}

.gallery-plus-icon i {
  font-size: 18px;
  color: var(--color-white);
}

@media (max-width: 532px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card img {
    height: 250px;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 20px 15px;
  }
}

#galleryOverPopup {
  display: none;
}

#galleryOverPopup.active {
  display: flex;
}

.updated-gallery-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.updated-gallery-popup.active {
  display: flex;
}

.updated-gallery-content {
  max-width: 850px;
  width: 100%;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: zoomIn 0.3s ease;
}

.updated-gallery-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.updated-gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--color-white);
  font-size: 50px;
  cursor: pointer;
  z-index: 10001;
}

.updated-gallery-close:hover {
  color: red;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*------------
  Gallery CTA
--------------*/
.gallery-cta {
  background: var(--color-white);
  padding: 50px 30px;
  border-radius: 15px;
  width: 80%;
  margin: 10px auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 138, 165, 0.2) 0px 7px 29px 0px;
}

.gallery-cta:hover {
  transform: translateY(-5px);
}

.gallery-cta p {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.gallery-cta-btn {
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
}

.gallery-cta-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.05);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 532px) {
  .fabrication-gallery-section {
    padding: 40px 0;
  }

  .gallery-cta {
    padding: 15px;
    margin-top: 10px;
    width: 96%;
  }
}

/*--------------------
 contact section style
----------------------*/
.info-content-contact .label {
  display: block;
  font-size: 18px;
  color: #777;
  font-weight: 600;
}

.info-content-contact a,
.info-content-contact p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-white);
  text-decoration: none;
  margin: 15px 0px 0px;
  transition: 0.3s;
}

.info-content-contact a:hover {
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}

/*---------------------------------
 Business & Vendor enquiry section 
-----------------------------------*/
.be-form-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.be-form-container {
  width: 70%;
  margin: 0 auto;
  background: rgba(12, 192, 223, 0.1);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.be-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}

.be-row {
  display: flex;
  gap: 20px;
}

.be-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.be-field.full {
  width: 100%;
}

.be-field label {
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

.be-field input,
.be-field select,
.be-field textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: var(--color-white);
  outline: none;
  transition: 0.3s;
}

.be-field input:focus,
.be-field select:focus,
.be-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.be-field input[type="file"] {
  background: var(--color-white);
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.be-submit-btn {
  padding: 14px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;
}

.be-submit-btn:hover {
  background: var(--color-secondary);
}

@media (max-width: 768px) {
  .be-form-section {
    padding: 40px 10px;
  }

  .be-form-container {
    width: 100%;
    padding: 10px 10px 30px;
  }

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

/*------------------------
 General enquiry section 
--------------------------*/
.ge-form-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.ge-form-container {
  width: 50%;
  margin: 0 auto;
  background: rgba(12, 192, 223, 0.1);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ge-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ge-field {
  display: flex;
  flex-direction: column;
}

.ge-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.ge-field input,
.ge-field textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.ge-field input:focus,
.ge-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.ge-submit-btn {
  padding: 14px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;
}

.ge-submit-btn:hover {
  background: var(--color-secondary);
}

@media (max-width: 768px) {
  .ge-form-section {
    padding: 40px 10px;
  }

  .ge-form-container {
    width: 100%;
    padding: 10px 10px 30px;
  }
}

/*---------------------------------
 contact form switch button section 
-----------------------------------*/
.segmented-control {
  position: relative;
  display: flex;
  background: var(--color-secondary);
  padding: 6px 10px;
  border-radius: 40px;
  width: fit-content;
  margin: 40px auto;
}

.seg-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-white);
  cursor: pointer;
}

.seg-btn.active {
  color: var(--color-white);
}

.seg-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: var(--color-primary);
  border-radius: 30px;
  transition: all 0.35s ease;
  z-index: 1;

}

.form-box {
  display: none;
  margin-top: 20px;
}

.form-box.active {
  display: block;
}


.glory-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-secondary);
  margin: 10px 0 40px;
}

@media (max-width: 768px) {
  .glory-title {
    font-size: 28px;
    font-weight: 700;
  }
}

/* Certification section style start */
.certificate-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px !important;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-icon-box img {
  width: 17px;
  height: 17px;
}

.cert-info {
  display: flex;
  flex-direction: column;
}

.cert-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 2px 0 0 0;
}