/* ==============CSS Index================
------------------------------------------
    01. Common CSS
    02. Buttons
    03. Header
    04. Hero
    05. About
    06. Stats
    07. Services
    08. Choose
    09. Testimonials
    10. Blogs
    11. Network
    12. Footer
    13. Slider
    14. About page
    15. Service Detail page
    16. Career Page
    17. Blog Listing Page
    18. Contact Page
    19. Blog Details Page
    20. Popup

-----------------------------------------
=======================================*/

/****************
  01. Common CSS
****************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}

* h1,
* h2,
* h3,
* h4,
* h5,
* h6,
* p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  scroll-padding-top: 60px;
  scroll-margin-top: 60px;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #e0e0e0;
  --mute: #6c6c6c;
  --primary: #0f0d6c;
  --secondary: #3bacdd;
  --lightblue: #3bacdd1a;
}

body {
  position: relative;
}

.g-30 {
  --bs-gutter-y: 30px;
  --bs-gutter-x: 30px;
}

.py-100 {
  padding: 100px 0;
}

.py-80 {
  padding: 80px 0;
}

.mt-50 {
  margin-top: 50px;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h3 {
  color: var(--secondary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-flex;
  align-items: start;
  gap: 8px;
}

.section-title h3::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondary);
  margin-top: 8px;
}

.section-title h2,
.section-title h1 {
  color: var(--primary);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
}

.section-title .line {
  display: inline-block;
  background-color: var(--secondary);
  width: 100px;
  height: 4px;
  margin: 20px 0 13px;
}

.section-title p {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.section-title p:not(:last-of-type) {
  margin-bottom: 10px;
}

.section-title.title-white h2 {
  color: var(--white);
}

.section-title.title-white p {
  color: var(--white);
}

.content-dark {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.content-white {
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.title-lg {
  color: var(--black);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
}

.title-md {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.title-sm {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.primary-txt {
  color: var(--primary);
}

.secondary-txt {
  color: var(--secondary);
}

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

.bg-main {
  background-color: var(--lightblue);
}

.border-gray {
  border: 1px solid var(--gray);
}

.rounded-10 {
  border-radius: 10px;
}

/****************
  02. Buttons
****************/
.btn-blue {
  text-decoration: none;
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
  margin-top: 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

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

.btn-light {
  text-decoration: none;
  display: inline-block;
  background-color: var(--lightblue);
  color: var(--primary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--gray);
  margin-top: 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

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

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

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

.btn-primary,
.primary-btn {
  text-decoration: none;
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  margin-top: 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

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

/****************
  03. Header
****************/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 100;
  box-shadow: 0px 4px 10px 0px #3bacdd26;
}

.header-logos {
  display: flex;
  gap: 0;
}

.header-logos a:first-child {
  padding-right: 10px;
  border-right: 1px solid var(--gray);
}

.header-logos a:last-child {
  padding-left: 10px;
}

.navbar-collapse {
  transition: none;
  margin-top: 0;
  padding: 0;
  border-top: none;
}

.navbar-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: height 0.3s ease;
}

header nav .header-link {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  padding: 24px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

header nav ul li {
  position: relative;
}

header nav .header-link svg {
  transition: all 0.3s ease;
}

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

header nav .header-link.active {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
}

header nav .header-link:hover svg {
  transform: rotate(180deg);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-cta .box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lightblue);
  border: 1px solid var(--gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.header-cta .box:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.header-cta .box:hover svg path {
  fill: var(--white);
}

.header-sub-menu {
  width: 300px;
  max-height: 500px;
  background-color: var(--white);
  padding: 20px;
  position: absolute;
  top: 90%;
  left: -10%;
  box-shadow: 0px 0px 4px 4px #3bacdd26;
  border-radius: 10px;
  display: block;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  z-index: 101;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.2s ease;
}

.header-sub-menu::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.header-sub-menu::-webkit-scrollbar-track {
  background-color: #eeeeee4f;
  border-radius: 4px;
}

.header-sub-menu::-webkit-scrollbar-thumb {
  background: #3bacdd5d;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.header-sub-menu li a {
  text-decoration: none;
  display: inline-block;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.header-sub-menu li a:hover {
  color: var(--primary);
}

.header-sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}

.sub-menu-item.open .header-sub-menu {
  visibility: visible;
  opacity: 1;
}

.sub-menu-btn svg {
  transition: transform 0.3s ease;
}

.sub-menu-item.open .sub-menu-btn svg {
  transform: rotate(180deg);
}

.sub-menu-item.open .sub-menu-btn svg path {
  fill: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .sub-menu-item:hover .header-sub-menu {
    visibility: visible;
    opacity: 1;
  }
  .sub-menu-item:hover .sub-menu-btn svg {
    transform: rotate(180deg);
  }

  .sub-menu-item:hover .sub-menu-btn svg path {
    fill: var(--primary);
  }
}

.sub-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.sub-menu-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

header .hamburger {
  position: absolute;
  left: auto;
  width: auto;
  height: 0;
  transition-duration: 0.5s;
}

header .hamburger .icon {
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 2px;
  transition-duration: 0.5s;
}

header .hamburger .icon::before {
  content: "";
  background-color: var(--primary);
  position: absolute;
  top: -6px;
  right: 0;
  width: 24px;
  height: 2px;
  transition-duration: 0.5s;
}

header .hamburger .icon::after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  top: 6px;
  right: 0;
  width: 24px;
  height: 2px;
  transition-duration: 0.5s;
}

header .hamburger.open .icon {
  background: transparent;
  top: 6px;
  transition-duration: 0.5s;
}

header .hamburger.open .icon::before {
  background-color: var(--primary);
  -webkit-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -moz-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -ms-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  -o-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
  transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
}

header .hamburger.open .icon::after {
  background-color: var(--primary);
  -webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -moz-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -ms-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  -o-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
  transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
}

/****************
  04. Hero
****************/
.hero {
  height: calc(100vh - 143px);
  background-image: url(../images/backgrounds/hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  margin-top: 73px;
  min-height: 760px;
  max-height: 1366px;
}

.hero::before {
  content: "";
  background-color: #00000080;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-form {
  background-color: var(--white);
  box-shadow: 0px 0px 10px 0px #00000026;
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 532px;
  margin-left: auto;
  margin-top: 50px;
}

.hero-form > .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--secondary);
  border: 10px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-form .form-title {
  margin-top: 40px;
}

.hero-form .form-title h3 {
  margin-bottom: 10px;
}

.hero-form form {
  margin-top: 20px;
  text-align: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

form .input-wrapper.full {
  grid-column: span 2;
}

form .input-wrapper label {
  display: inline-block;
  color: var(--mute);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

form .input-wrapper input,
form .input-wrapper textarea,
form .input-wrapper select {
  display: block;
  width: 100%;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 9px 16px;
  border: 1px solid var(--gray);
  border-radius: 20px;
  background-color: var(--white);
  outline: 0;
  transition: all 0.3s ease;
}

form .input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/icons/down-icon.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

form .input-wrapper textarea {
  resize: none;
}

form .input-wrapper input::placeholder,
form .input-wrapper textarea::placeholder {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

form .input-wrapper input:hover,
form .input-wrapper textarea:hover,
form .input-wrapper select:hover,
form .input-wrapper input:focus,
form .input-wrapper textarea:focus,
form .input-wrapper select:focus {
  border-color: #3bacdd;
}

form .input-wrapper:has(input:focus) label,
form .input-wrapper:has(select:focus) label,
form .input-wrapper:has(textarea:focus) label {
  color: var(--secondary);
}

.service-scrolling-ticker {
  padding: 20px 0;
  background-color: var(--secondary);
}

.scrolling-ticker-box {
  --gap: 70px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
}

.scrolling-content span {
  position: relative;
  text-transform: capitalize;
}

.scrolling-content span::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

/****************
  05. About
****************/

.about-bg {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: -1;
}

.about-img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-img-wrapper > div:last-child {
  grid-column: span 2;
}

.about-info {
  position: relative;
  overflow: hidden;
}

.about-info .upper {
  height: 50%;
  background-color: var(--primary);
}

.about-info .lower {
  height: 50%;
  background-color: var(--secondary);
}

.about-info .upper,
.about-info .lower {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 24px 50px;
}

.about-info .upper {
  align-items: start;
}

.about-info .lower {
  align-items: end;
}

.about-info .counter {
  display: flex;
  align-items: center;
}

.about-info .counter h4 {
  padding-right: 10px;
  border-right: 2px solid #ffffff33;
}

.about-info .counter p {
  padding-left: 10px;
}

.about-chat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.about-chat img {
  height: 50px;
}

/****************
  06. Stats
****************/

.state-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.state-card .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--lightblue);
  border: 1px solid var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
}

.state-card h2 {
  margin: 20px 0 10px;
}

/****************
  07. Services
****************/
.service-card {
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-content a {
  margin-top: 20px;
  align-self: flex-start;
}

.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.service-img {
  border-bottom: 1px solid var(--gray);
  position: relative;
}

.service-img,
.service-img img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.slider-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

/****************
  08. Choose
****************/
.choose-card {
  display: flex;
  align-items: start;
  gap: 20px;
  background-color: var(--lightblue);
  border-radius: 10px;
  border: 1px solid var(--gray);
  padding: 20px;
  height: 100%;
}

.choose-card h4 {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.choose-card .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
}

.choose-card.white-card {
  background-color: var(--white);
  height: auto;
}

.choose-card.white-card .icon {
  background-color: var(--lightblue);
}

/****************
  09. Testimonials
****************/

.test-card {
  padding: 20px;
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-header {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.test-card.long .test-header {
  flex-direction: column;
}

.test-header img {
  height: 60px;
}

.test-card .test-header > h3{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.test-content > p:not(:last-child) {
  margin-bottom: 10px;
}

.test-content {
  height: 184px;
  overflow-y: auto;
}

.test-content p {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.test-card.long .test-content {
  height: 210px;
}

.test-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.test-content::-webkit-scrollbar-track {
  background-color: #eeeeee6f;
  border-radius: 4px;
}

.test-content::-webkit-scrollbar-thumb {
  background: var(--lightblue);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.test-card .line {
  background-color: var(--secondary);
  width: 100px;
  height: 4px;
  margin: 20px 0;
}

.test-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.test-user .icon {
  background-color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gray);
  border-radius: 50%;
}

.test-user .icon img {
  width: 30px;
  height: 30px;
}

.test-user h5 {
  margin-bottom: 2px;
}

/****************
  10. Blogs
****************/
.blog-content {
  padding: 20px;
}

.blog-img {
  border-bottom: 1px solid var(--gray);
  position: relative;
}

.blog-img,
.blog-img img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-img span {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #000000b2;
  border: 1px solid #ffffff33;
  border-radius: 5px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-content ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-content ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-content ul li p {
  font-weight: 600;
}

.blog-content ul li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--secondary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.blog-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 90px;
}

/****************
  11. Network
****************/
.network {
  position: relative;
  background-image: url(../images/backgrounds/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.network::after {
  content: "";
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.network .section-title > p {
  width: 80%;
}

.network .section-title a {
  margin-top: 24px;
}

/****************
  12. Footer
****************/
.footer-wrapper {
  background-color: var(--white);
}

.footer-content {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.footer-logo a:first-child {
  padding-right: 10px;
  border-right: 1px solid var(--gray);
}

.footer-logo a:last-child {
  padding-left: 10px;
}

.footer-link-title h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.footer-link-title > .line {
  background-color: var(--secondary);
  width: 50px;
  height: 4px;
  margin: 15px 0;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background-color: var(--lightblue);
  border-radius: 50%;
  border: 1px solid var(--gray);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.social-links a:hover svg path {
  fill: var(--white);
}

.footer-links li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-links li a {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  transition: all 0.3s ease;
}

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

.contact-links {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-links:last-of-type {
  margin-bottom: 0;
}

.contact-links .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--lightblue);
  border-radius: 50%;
  border: 1px solid var(--gray);
}

.contact-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.contact-links .numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-links .numbers li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-left: 4px;
}

.copyright {
  background-color: var(--primary);
  padding: 20px;
  text-align: center;
}

/****************
  13. Slider
****************/
.slider-button-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.slider-button-block button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slider-button-block button.slider-btnlight {
  background-color: var(--lightblue);
}

.slider-button-block button:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.slider-button-block button.slider-btnlight:hover {
  background-color: var(--primary);
}

.slider-button-block button:hover svg path {
  fill: var(--white);
}

.slider-button-block button:active {
  transform: scale(0.95);
}

.test-slider + .slider-button-block,
.blog-slider + .slider-button-block {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 5;
}

.test-slider + .slider-button-block .owl-prev,
.blog-slider + .slider-button-block .owl-prev {
  position: absolute;
  left: -60px;
}

.test-slider + .slider-button-block .owl-next,
.blog-slider + .slider-button-block .owl-next {
  position: absolute;
  right: -60px;
}

.service-slider .owl-stage,
.test-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

/****************
  14. About page
****************/

.page-title {
  position: relative;
  z-index: 1;
  margin-top: 71px;
}

.page-title > img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.page-title::before {
  content: "";
  background-color: #000000b2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-title h1 {
  margin-bottom: 10px;
}

.page-route {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-route li a {
  display: inline-block;
  text-decoration: none;
  color: #ffffffb2;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.page-route li:not(:last-child)::after {
  content: "/";
  color: #ffffffb2;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-left: 6px;
}

.page-route li a.active {
  color: var(--secondary);
}

.journey .choose-card:not(:last-of-type) {
  margin-bottom: 30px;
}

/****************
  15. Service Detail page
****************/

.service-detail {
  padding-top: 50px;
}

.service-detail-main {
  margin: 50px 0;
}

.service-detail-content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin: 20px 0;
}

.service-detail-content ul li {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.service-detail-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-detail-content ul li::marker {
  font-size: 16px;
  line-height: 22px;
}

.service-detail-main strong {
  font-weight: 600;
}

.service-detail-content p {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.service-detail-content p:not(:last-child) {
  margin-bottom: 10px;
}

.service-detail-content h6 {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-detail-content h2:first-child,
.service-detail-content h3:first-child,
.service-detail-content h4:first-child,
.service-detail-content h6:first-child {
  margin-top: 0;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-detail-content a {
  display: inline-block;
  text-decoration: none;
  color:#3BACDD;
  font-weight:500;
}

.page-nav-btns {
  display: flex;
  justify-content: space-between;
}

.page-nav-btns .nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-nav-btns button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.page-nav-btns button:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.page-nav-btns button:hover svg path {
  fill: var(--white);
}

.page-nav-btns button:active {
  transform: scale(0.95);
}

.support-block {
  padding: 20px;
  background-color: var(--secondary);
}

.support-block .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
}

.support-content {
  margin: 20px 0;
}

.support-content h4 {
  margin-bottom: 10px;
}

.support-block .btn-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.support-block .btn-group .btn-white {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.support-block .btn-group .btn-white:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-detail-right {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  position: sticky;
  top: 100px;
}

.service-detail-right .form-title {
  text-align: start;
  margin-top: 0;
}

.service-detail-right .hero-form {
  box-shadow: none;
  border: 1px solid var(--gray);
  margin-top: 0;
}

.share-link-block {
  background-color: var(--white);
  padding: 20px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/****************
  16. Career page
****************/
.culture .choose-card {
  height: auto;
}

.job-card {
  background-color: var(--lightblue);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}

.job-card ul{
  list-style-type: none;
  margin:20px 0;
  padding-left: 0;
}

.job-card ul li:not(:last-child){
  margin-bottom: 16px;
}

.job-card ul li h6{
  color: var(--primary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.job-card ul li p {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.career-img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.career-img-wrapper img {
  width: 100%;
}

.career-img-wrapper > div {
  object-fit: cover;
}

.career-img-wrapper > div:last-child {
  grid-column: span 2;
}

.career-img-wrapper.reverse > div:first-child {
  grid-column: span 2;
}

.career-img-wrapper.reverse > div:last-child {
  grid-column: span 1;
}

/****************
  17. Blog Listing page
****************/
.blog-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 24px;
}

.blog-listing-header input {
  width: 420px;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 9px 16px;
  padding-left: 44px;
  border: 1px solid var(--gray);
  border-radius: 20px;
  outline: 0;
  background-image: url(../images/icons/search-icon.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
}

.blog-listing-header input::placeholder {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.blog-card.white-card {
  background-color: var(--white);
}

.blog-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.blog-nav-links button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  outline: none;
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.blog-nav-links button:hover {
  background-color: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

.blog-nav-links button:hover svg path {
  fill: var(--primary);
}

.blog-nav-links button.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.blog-nav-links button.disable {
  cursor: not-allowed;
  border-color: transparent;
  background-color: transparent;
  color: #99999966;
}

.blog-nav-links button.disable svg path {
  fill: #99999966;
}

.blog-nav-links button svg path {
  fill: #999999;
}

.blog-img .play-icon {
  text-decoration: none;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-img .play-icon img {
  height: 50px;
}

/****************
  18. Contact Page
****************/
.contact-main form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-main .footer-link-wrapper {
  background-color: var(--white);
  padding: 20px;
  border: 1px solid var(--gray);
  border-radius: 10px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map iframe {
  width: 420px;
  height: 280px;
  border-radius: 10px;
  border: 1px solid var(--gray) !important;
}

.contact-main .contact-links-wrapper {
  display: block;
}

.contact-main .footer-link-title > .line {
  margin: 10px 0 20px;
}

/****************
  19. Blog Details Page
****************/

.blog-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-info span {
  background-color: var(--secondary);
  color: var(--white);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  border-radius: 5px;
  padding: 4px 10px;
}

.blog-info ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.blog-info ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-info ul li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--secondary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.blog-detail .service-detail-main {
  margin-top: 30px;
}

.blog-detail .blog-info ul,
.blog-detail .service-detail-main .blog-info ul li {
  margin-bottom: 0;
  padding-left: 0;
}

.blog-detail .blog-info ul li p {
  color: var(--secondary);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.blog-detail ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.blog-detail ol > li {
  margin: 20px 0;
}

.blog-detail ol > li:last-child {
  margin-bottom: 0;
}

.blog-detail ol li::marker {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.blog-detail ol li h6 {
  margin-bottom: 10px;
  margin-top: 0;
}

.blog-detail ol ul {
  margin: 10px 0;
}

.blog-detail ol > li > p {
  margin-left: -20px;
  margin-bottom: 0;
}

.blog-detail ol > li > ul {
  padding-left: 10px;
}

.similar-blogs {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--gray);
}

.similar-blogs ul li:not(:last-child) {
  margin-bottom: 15px;
}

.similar-blogs ul li a {
  display: flex;
  gap: 15px;
  align-items: start;
  text-decoration: none;
}

.similar-blogs ul li a h5 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.similar-blogs ul li a img {
  width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray);
}

.vlog-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.video-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.video-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vlog-video-wrapper .play-icon {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vlog-video-wrapper .play-icon img {
  height: 80px;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.service-detail-content > h4 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin: 20px 0;
}

/****************
  20. Popup
****************/

/* File Upload  */
.fileUpload {
  position: relative;
  overflow: hidden;
}

.fileUpload:hover {
  border-color: var(--gray) !important;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.btn--browse {
  border: 1px solid #e0e0e0;
  border-right: 0;
  border-radius: 35px 0 0 35px;
  color: black;
  height: 40px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-input {
  height: 40px;
  background-color: white;
  border: 1px solid gray;
  width: 100%;
  max-width: 100%;
  float: left;
  padding: 0 14px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.file-upload-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  width: 100%;
}

.offcanvas .hero-form h5,
.modal-body .hero-form h5 {
  text-align: left;
}

.career-form .hero-form form {
  margin-top: 16px;
}

.form-title > .line {
  background-color: var(--secondary);
  width: 50px;
  height: 4px;
  margin: 15px auto;
}

.offcanvas .hero-form .icon {
  z-index: 0;
}

.offcanvas.offcanvas-bottom {
  height: auto !important;
  bottom: 0;
  box-shadow: none;
}

.offcanvas-bottom {
  top: auto;
  bottom: 0;
  height: auto !important;
  box-shadow: none;
}

@supports (-webkit-touch-callout: none) {
  .offcanvas-bottom {
    height: auto !important;
    max-height: 100svh;
  }
}

.offcanvas .hero-form {
  margin-top: 0;
  box-shadow: 0px -8px 8px 0px #00000026;
}

.modal .btn-close {
  opacity: 1;
  position: absolute;
  right: -20px;
  top: -20px;
  padding: 0;
  cursor: pointer;
}

.offcanvas .btn-close {
  opacity: 1;
  position: absolute;
  right: 16px;
  top: -31px;
  padding: 0;
}

.modal .hero-form {
  margin-top: 0;
}

.modal .modal-content {
  margin-top: 50px;
}

/****** loader *******/
.ajax-loader {
  text-align: center;
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  color: #ffffff;
  opacity: 1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999999;
  display: none;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
}

.loader img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
/***** toast ****/
.toast {
  border: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: none;
}
.toast-header {
  gap: 10px;
  box-shadow: 0px 0px 10px 0px #00000033;
  border-radius: 5px;
  padding: 15px;
  background-color: #fff;
  align-items: flex-start;
}
.toast-header span {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.toast-header.error span {
  background-color: #EE4549;
}
.toast-header.success span {
  background-color: #1DAC23;
}