@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

.container {
  max-width: 1140px;
}

a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
a:hover {
  color: #111;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

.text-justify {
  text-align: justify !important;
}

button:focus {
  outline: none;
}

section:first-of-type {
  position: relative;
  top: 90px;
}

.section-bg {
  background: #fbfbfb;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

section {
  margin: 30px 0;
  padding: 30px 0;
}

.btn-warning {
  font-size: 14px;
  color: #fff;
}

.btn:hover {
  color: #fff;
}

.dot ul {
  text-align: left;
}
.dot ul li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  background: #fff;
  color: #0088cc;
  font-size: 8px;
  margin-right: 15px;
}

.tick ul {
  margin: 0 0 0 30px;
  text-align: left;
}
.tick ul li {
  margin-bottom: 20px;
  font-size: 13px;
}
.tick ul li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  background: #fff;
  display: inline-block;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  color: #0088cc !important;
  border: 1px solid #0088cc;
  font-size: 10px;
  border-radius: 50%;
  margin-left: -30px;
  margin-right: 10px;
}

.btn-primary {
  padding: 15px 25px;
  border: 0;
  margin-right: 10px;
  background-color: #0088cc;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border-radius: 25px;
}
.btn-primary:hover {
  background-color: #029eff !important;
  transition: 400ms all ease;
  box-shadow: none;
}
.btn-primary:active {
  box-shadow: none;
}
.btn-primary:focus {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu.show {
  animation: fadeIn 0.3s alternate;
}

/* // Mega Menu adjustments */
.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  border: none;
  border-top: 2px solid #0088cc;
  border-radius: 0 0 12px 12px;
  transform: translate(10px, 0px);
}
/* .nav-item.dropdown.dropdown-mega .dropdown-menu .mega-content {
  border-top: 2px solid #0088cc;
} */
@media (max-width: 991px) {
  .nav-item.dropdown.dropdown-mega .dropdown-menu {
    box-shadow: none !important;
    border: none;
  }
}
.nav-item.dropdown.dropdown-mega .dropdown-menu[data-bs-popper] {
  top: auto;
  left: auto;
  margin-top: auto;
}

.shadow {
  box-shadow:
    -9px 53px 58px rgba(71, 86, 123, 0.22),
    -2px 11px 9px rgba(71, 86, 123, 0.11) !important;
}

.shadowbg {
  background-color: #f7f8fc;
  border-radius: 24px 24px 0 0;
}

/* Complete styles for main navbar toggler and hamburger menu */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition:
    transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
    all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}

.navbar {
  padding: 0;
  margin: 0;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 21px 10px !important;
  /* margin: 1rem 0; */
  color: #111225;
  font-size: 16px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #0088dd;
}

/* Show dropdown on hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
    /* transform: translateY(0); */
  }
  .navbar-nav .dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    /* transition:
      opacity 0.3s ease, */
    /* transform 0.3s ease; */
    /* transform: translateY(10px); */
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: white;
    overflow-y: auto;
    max-height: calc(100vh - 88px);
    padding: 1rem;
    transition: 1s all ease;
  }
  .navbar-collapse .navbar-nav {
    min-height: 100vh;
  }
  .navbar-collapse .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
  }
  .navbar-collapse .navbar-nav .nav-link {
    padding: 0 1rem !important;
    margin: 2rem 0;
    font-weight: 500;
    font-size: 1rem;
  }
  .navbar-collapse .navbar-nav .mega-content {
    border: none !important;
    margin-left: 1rem;
    margin-top: -2rem;
  }
  .navbar-collapse .navbar-nav .mega-content .list-group {
    margin-left: 0.5rem;
    margin-top: -0.5rem;
  }
  .navbar-collapse .navbar-nav .mega-content .list-group .list-group-item {
    padding: 10px;
  }
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    display: block !important;
  }
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
  }
}
.mega-content h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 24px;
  margin: 0 0 8px;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.navbar-collapse::-webkit-scrollbar {
  width: 6px;
}

.navbar-collapse::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 12px 8px;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  line-height: 16px;
  border-radius: 0;
}
.list-group-item:hover {
  background-color: rgba(0, 136, 204, 0.1019607843);
  border-radius: 0 0 8px 8px;
}

/*TOPBAR START*/
.top_right ul li {
  float: left;
  border-right: 1px solid #333;
  padding-right: 10px;
}
.top_right ul li:last-child {
  border-right: none;
  padding-right: 3px;
}
.top_right ul a {
  color: #434040;
  font-size: 14px;
  font-weight: 500;
}
.top_right ul i {
  font-size: 14px;
  color: #434040;
}

/*TOPBAR END*/
/*header start*/
.logo-main img {
  width: 200px;
  margin-top: 0px;
  margin-left: 7px;
}

.menumain {
  padding: 6px 0 0 0;
  background-color: #fff;
  transition: 400ms all ease;
  border-bottom: 1px solid #e5e5e54a;
}
.menumain.scroll_navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff !important;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.05) !important;
}
.menumain .top-bar-right {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
}
@media (max-width: 360px) {
  .menumain .top-bar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .menumain .top-bar-right li {
    border: none;
  }
}
@media (max-width: 991px) {
  .menumain .top-bar-right {
    justify-content: left;
  }
}

.get-started {
  color: #fff !important;
  margin: 1rem 0;
  border-radius: 8px;
}

.stellarnav.mobile {
  text-align: end;
}

/*header end*/
/*backto-top start*/
#backto-top {
  display: inline-block;
  background: #0088dd;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  position: fixed;
  bottom: 30px;
  right: 20px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-align: center;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
#backto-top i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}
#backto-top:hover {
  cursor: pointer;
  background: #0088cc;
}
#backto-top:active {
  background: #0088cc;
}

#backto-top.show {
  opacity: 1;
  visibility: visible;
}

/*backto-top end*/
/*banner start*/
.hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.section-hero .input-group,
.cta-section .input-group {
  width: 90%;
}
.section-hero
  .input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
    .form-floating
  ),
.cta-section
  .input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
    .form-floating
  ) {
  border-radius: 42px;
  height: 50px;
  padding-inline: 16px 2px;
  background-color: #f3f4f6;
  border: 0.3px solid #064884;
}
.section-hero
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback),
.cta-section
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 42px;
  height: 50px;
  position: absolute;
  right: 0;
  background: #064884;
  border: none;
  color: #fff;
  z-index: 6;
}

/*banner end*/
/*personalised-cards start*/
.hero-check {
  margin: 6px 0 6px 0;
  display: flex;
  gap: 20px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}
.hero-check .check {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sc-awards .awards-small {
  margin: 30px 0;
}

.sc-awards .awards-small .award-title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 800;
}

.sc-awards .awards-small .awards {
  display: flex;
  gap: 24px;
}

.personalised-comm .header {
  text-align: center;
  margin-top: 2rem;
}
.personalised-comm .personalised-cards .personalised-box {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 300px;
  border-bottom: 3px solid #fff;
}
.personalised-comm .personalised-cards .personalised-box .personalised-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.personalised-comm
  .personalised-cards
  .personalised-box
  .personalised-content
  h2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.personalised-comm
  .personalised-cards
  .personalised-box
  .personalised-content
  p {
  font-size: 14px;
}
.personalised-comm
  .personalised-cards
  .personalised-box
  .personalised-content
  .img-box {
  width: 72px;
  height: 72px;
}
.personalised-comm
  .personalised-cards
  .personalised-box
  .personalised-content
  .img-box
  img {
  padding: 12px;
}
.personalised-comm .personalised-cards .personalised-box:hover {
  border-color: #0088cc;
  box-shadow: 0px 1px 5.9px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(248, 248, 248, 0.8980392157);
}

/*personalised-cards end*/
.services-section .service-img img {
  max-width: 100%;
}
.services-section .service-content h2 {
  display: inline-block;
  margin: 20px 0 40px;
  position: relative;
}
.services-section .service-content h2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  border-bottom: 4px solid #0088cc;
}
.services-section .service-content p {
  line-height: 22px;
  font-size: 0.875rem;
}
.services-section .service-content ul {
  margin: 20px 0;
}
.services-section .service-content ul li {
  font-size: 0.875rem;
  margin: 6px 0;
  line-height: 22px;
  color: #000;
}

.clients .client-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  align-items: center;
  margin-bottom: 30px;
}
.clients .client-img img {
  max-height: 65px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
  opacity: 1;
  cursor: pointer;
}
.clients .client-img img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.connectivity-section h2 {
  text-align: center;
}
.connectivity-section p {
  text-align: center;
  color: #333333;
}
.connectivity-section .connectivity-cards .connectivity-box {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  min-height: 400px;
  position: relative;
  /* text-align: center; */
  z-index: 1;
  max-width: 345px;
  border-radius: 8px;
  padding-inline: 18px;
  border: 1px dotted #08c;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content {
  padding: 0;
  position: relative;
  margin: 10px;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  .heading {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  .heading
  h2 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-left: 12px;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  .heading
  .img-box {
  max-width: 45px;
  max-height: 45px;
  border-radius: 50%;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  .heading
  .img-box
  img {
  width: 60px;
  padding: 8px;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  p {
  line-height: 24px;
  font-size: 0.875rem;
  color: #000;
  text-align: left;
  margin-bottom: 1.5rem;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  ul {
  text-align: left;
  margin-bottom: 1.5rem;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  ul
  li {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
  color: #000;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  ul
  li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  background: #fff;
  color: #0088dd;
  font-size: 8px;
  margin-right: 15px;
}
.connectivity-section
  .connectivity-cards
  .connectivity-box
  .connectivity-content
  a {
  color: #0088dd;
  float: left;
  font-weight: 600;
}
.connectivity-section .connectivity-cards .connectivity-box:hover {
  /* background: #0088dd; */
  background: rgba(172, 185, 250, 0.0901960784);
  /* background: #8fdaff14; */
  /* cursor: pointer; */
  /* transition: 1000ms all cubic-bezier(0.16, 0.66, 0.46, 0.92); */
}
/* .connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  .heading
  h2 {
  color: #fff;
} */
/* .connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  .heading
  .img-box {
  background: #fff;
} */
/* .connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  p {
  color: #fff;
} */
/* .connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  ul
  li {
  color: #fff;
} */
.connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  ul
  li:before {
  background: none;
  /* color: #fff; */
}
/* .connectivity-section
  .connectivity-cards
  .connectivity-box:hover
  .connectivity-content
  a {
  color: #fff;
} */

.choose-us {
  margin: 0;
}
.choose-us .choose-img img {
  max-width: 100%;
  height: auto;
}
.choose-us .header p {
  color: #333333;
  line-height: 22px;
}
.choose-us .body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.choose-us .body h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.choose-us .body p {
  color: #333;
  line-height: 22px;
}
.choose-us .body .features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 8px;
}
.choose-us .body .features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.choose-us .body .features .feature-item img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}
.choose-us .body .features .feature-item .feature-text {
  display: flex;
  flex-direction: column;
}
.choose-us .body .features .feature-item .feature-text strong {
  font-weight: 600;
  margin-bottom: 4px;
}
.choose-us .body .features .feature-item .feature-text span {
  color: #333;
  font-size: 0.9rem;
}

.cta-section {
  background-image: url("images/img/bluebg.png");
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  border-radius: 100px;
  margin: 20px;
  text-align: center;
  color: white;
}
.cta-section .cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-section .cta-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.cta-section .cta-content p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cta-section .cta-content .input-group {
  width: 400px;
}
@media (max-width: 480px) {
  .cta-section .cta-content .input-group {
    width: 321px;
  }
}

.faq-section {
  margin: auto;
  padding: 30px 0px;
  text-align: center;
}
.faq-section .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1c1c1c;
  position: relative;
  display: inline-block;
}
.faq-section .faq-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  margin: 10px auto 0 auto;
  border-bottom: 4px solid #0088cc;
}
@media (max-width: 768px) {
  .faq-section .faq-title {
    font-size: 2rem;
  }
}
.faq-section .faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.faq-section .faq-item {
  flex-basis: 100%;
  border: 1px solid rgba(172, 185, 250, 0.0901960784);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: rgba(172, 185, 250, 0.0901960784);
}
.faq-section .faq-item.active .faq-answer {
  padding: 0 25px 20px;
  margin-bottom: 25px;
}
.faq-section .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  text-align: left;
}
.faq-section .faq-item .faq-question p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
}
.faq-section .faq-item .faq-question .faq-icon {
  font-size: 1.5rem;
  color: #0074d9;
  transition: transform 0.4s ease;
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s all ease;
  padding: 0 25px 0px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #333;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 1100px) {
  .faq-section .faq-item {
    flex-basis: 100%;
  }
}

.testimonial-section {
  padding: 30px 0px;
  text-align: center;
}
.testimonial-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #1c1c1c;
}
@media (max-width: 768px) {
  .testimonial-section .section-title {
    font-size: 2rem;
  }
}
.testimonial-section .testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.testimonial-section .testimonial-wrapper .arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #3561f0;
  transition: color 0.3s ease;
}
.testimonial-section .testimonial-wrapper .arrow:hover {
  color: #0056ac;
}
@media (max-width: 576px) {
  .testimonial-section .testimonial-wrapper .arrow {
    font-size: 1.5rem;
  }
}
.testimonial-section .testimonial-wrapper .testimonial-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.testimonial-section .testimonial-wrapper .testimonial-slider .testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  max-width: 700px;
  transition: opacity 0.4s ease;
  opacity: 0;
  border-radius: 12px;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial.active {
  display: flex;
  opacity: 1;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .quote {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .author
  img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .author
  h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .author
  span {
  font-size: 0.9rem;
  color: #333;
  gap: 6px;
  font-weight: 500;
}
.testimonial-section
  .testimonial-wrapper
  .testimonial-slider
  .testimonial
  .author
  .author-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px 0;
}
.testimonial-section .testimonial-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-section .testimonial-dots span {
  width: 10px;
  height: 10px;
  background-color: #3561f0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.testimonial-section .testimonial-dots span.active {
  width: 30px;
  border-radius: 1rem;
}

/*banner start*/
.contact-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contact-hero .hero-text-box p {
  font-size: 16px;
}
.contact-hero .hero-text-box .contact_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .contact-hero .hero-text-box {
    align-items: center;
  }
}
.contact-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

/*banner end*/
/*CONTACT DETAILS*/
.contact-details .contact-cards .contact-box .contact-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.8rem;
}
.contact-details .contact-cards .contact-box .contact-content h2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.contact-details .contact-cards .contact-box .contact-content a,
.contact-details .contact-cards .contact-box .contact-content p {
  font-size: 14px;
  font-weight: 500;
}
.contact-details .contact-cards .contact-box .contact-content a:hover,
.contact-details .contact-cards .contact-box .contact-content p:hover {
  color: #0088dd;
}
.contact-details .contact-cards .contact-box .contact-content .img-box {
  background: #0088dd;
  margin: 4px;
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
}
.contact-details .contact-cards .contact-box .contact-content .img-box img {
  width: 60px;
  padding: 1rem;
}

.contact-section .contact-form {
  box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 2rem 2rem;
  border-radius: 12px;
  margin: 12px auto;
}
.contact-section .contact-form h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}
.contact-section .contact-form form label {
  font-size: 14px;
  font-weight: 500;
}
.contact-section .contact-form form .form-control,
.contact-section .contact-form form .form-select,
.contact-section .contact-form form .form-check-input {
  border: 1px solid rgba(102, 150, 239, 0.6980392157);
  border-radius: 6px;
}
.contact-section .contact-form form .form-control:focus,
.contact-section .contact-form form .form-select:focus,
.contact-section .contact-form form .form-check-input:focus {
  border: 1px solid #0088cc !important;
  outline: none;
  box-shadow: none;
}
.contact-section .contact-form form .cus-submit {
  background: #3561f0;
  padding: 10px 25px;
  border-radius: 6px;
  float: right;
  width: 50%;
}
@media (max-width: 991px) {
  .contact-section .contact-form {
    padding: 1rem;
  }
}

/*CONTACT DETAILS*/
/*banner start*/
.about-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about-hero .hero-text-box p {
  font-size: 16px;
}
.about-hero .hero-text-box .contact_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .about-hero .hero-text-box {
    align-items: center;
  }
}
.about-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

/*banner end*/
.exp-section {
  margin-top: 90px;
}
.exp-section .parent-div {
  align-items: center;
}
.exp-section .card-parent {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  align-items: center;
}
.exp-section .card-parent .card {
  color: #fff;
  padding: 0.5rem;
  max-width: 250px;
  border: none;
  border-radius: 0.5rem;
  height: 192px;
}
.exp-section .card-parent .card .top-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .exp-section .card-parent .card .top-content {
    gap: 1px;
  }
}
.exp-section .card-parent .card .img-box {
  background: transparent;
  max-width: 65px;
  max-height: 65px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.exp-section .card-parent .card .img-box img {
  padding: 14px;
  margin: -3px -2px;
}
.exp-section .card-parent .card h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .exp-section .card-parent .card h2 {
    font-size: 14px;
  }
}
.exp-section .card-parent .card p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  margin: 1rem auto;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .exp-section .card-parent .card {
    max-width: 220px;
    height: 185px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .exp-section .card-parent .card {
    max-width: 340px;
    height: 190px;
  }
}
@media (min-width: 540px) and (max-width: 767px) {
  .exp-section .card-parent .card {
    max-width: 250px;
    height: 190px;
  }
}
@media (min-width: 480px) and (max-width: 539px) {
  .exp-section .card-parent .card {
    max-width: 216px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .exp-section .card-parent .card {
    max-width: 170px;
    height: 220px;
  }
}
@media (max-width: 991px) {
  .exp-section .card-parent .card {
    transform: unset !important;
  }
}
.exp-section .card-parent .card:nth-child(1) {
  background-color: #006a9d;
}
.exp-section .card-parent .card:nth-child(1) .img-box {
  background: #075880;
}
.exp-section .card-parent .card:nth-child(2) {
  background-color: #fff;
  transform: translateY(15%);
}
.exp-section .card-parent .card:nth-child(2) h2 {
  color: #000;
}
.exp-section .card-parent .card:nth-child(2) h2 span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0;
}
@media (max-width: 539px) {
  .exp-section .card-parent .card:nth-child(2) h2 span {
    font-size: 2rem;
  }
}
.exp-section .card-parent .card:nth-child(2) p {
  color: #000;
}
.exp-section .card-parent .card:nth-child(3) {
  background-color: #fe6102;
}
.exp-section .card-parent .card:nth-child(3) .img-box {
  background: #d35103;
}
.exp-section .card-parent .card:nth-child(4) {
  background-color: #e78f11;
  transform: translateY(15%);
}
.exp-section .card-parent .card:nth-child(4) .img-box {
  background: #bf760c;
}
.exp-section .card-parent .card:nth-child(5) {
  background-color: #3f90ce;
}
.exp-section .card-parent .card:nth-child(5) .img-box {
  background: #1f74b5;
}
.exp-section .card-parent .card:nth-child(6) {
  transform: translateY(15%);
  background-color: #064884;
}
.exp-section .card-parent .card:nth-child(6) .img-box {
  background: #093359;
}
.exp-section .exp-content h3 {
  margin: 20px 0;
  display: inline-block;
  position: relative;
}
.exp-section .exp-content p {
  line-height: 22px;
  font-size: 0.875rem;
}
.exp-section .exp-content ul {
  margin: 20px 0;
}
.exp-section .exp-content ul li {
  font-size: 0.875rem;
  margin: 6px 0;
  line-height: 22px;
  color: #000;
}

.about-choose-us {
  padding: 20px 6px;
  margin: 20px 0;
  background-color: #f0f9ff;
}
.about-choose-us .header {
  text-align: center;
}
.about-choose-us .header h3 {
  margin: 20px 0;
  font-size: 2rem;
  display: inline-block;
  position: relative;
}
.about-choose-us .header h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  margin: 10px auto 0 auto;
  border-bottom: 4px solid #0088cc;
}
.about-choose-us .content {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
}
.about-choose-us .content .card {
  background-color: transparent;
  padding: 1rem;
  max-width: 350px;
  min-height: 372px;
  border: none;
}
.about-choose-us .content .card .img-box {
  background: transparent;
  margin: 16px auto;
  max-width: 60px;
  max-height: 60px;
}
.about-choose-us .content .card h3 {
  font-size: 1rem;
}
.about-choose-us .content .card ul {
  margin: 10px 0;
}
.about-choose-us .content .card ul li {
  font-size: 0.875rem;
  margin: 6px 0;
  line-height: 22px;
  color: #000;
}
@media (max-width: 991px) {
  .about-choose-us .content .card {
    min-height: auto;
  }
}

.leadership-section .leadership {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
.leadership-section .leadership .leadership-content {
  flex-flow: column wrap;
  padding: 0 10px;
}
.leadership-section .leadership .leadership-content h3 {
  font-size: 2.2rem;
  margin: 20px 0;
  display: inline-block;
  position: relative;
}
.leadership-section .leadership .leadership-content h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  border-bottom: 4px solid #0088cc;
}
.leadership-section .leadership .leadership-content .header {
  margin-top: 20px;
}
.leadership-section .leadership .leadership-content .header p:first-of-type {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #202020;
}
.leadership-section .leadership .leadership-content .header p:last-of-type {
  font-size: 16px;
  font-weight: 600;
  color: #174067;
}
.leadership-section .leadership .leadership-content span {
  margin-top: 20px;
  font-size: 16px;
  color: #000;
}
.leadership-section .leadership .leadership-img img {
  max-width: 100%;
  height: 500px;
}

.highlight-section .parent-content {
  background-image: url(images/img/about-highlight.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 400px;
}
.highlight-section .parent-content .highlight-content {
  width: 50%;
  padding: 40px;
  color: #fff;
  position: relative;
}
.highlight-section .parent-content .highlight-content h2 {
  color: #fff;
  margin: 20px 0;
  width: 100%;
}
.highlight-section .parent-content .highlight-content p {
  color: #fff;
  line-height: 22px;
  font-size: 1.1rem;
  font-weight: 500;
}
.highlight-section .parent-content .highlight-content ul {
  margin: 20px 0;
}
.highlight-section .parent-content .highlight-content ul li {
  color: #fff;
  font-size: 1rem;
  margin: 6px 0;
  line-height: 22px;
}
.highlight-section .parent-content .highlight-content .dot ul li:before {
  background: none;
}
@media (max-width: 991px) {
  .highlight-section .parent-content .highlight-content {
    width: 100%;
    padding: 32px;
    background-color: #104b7e;
  }
}
@media (max-width: 991px) {
  .highlight-section .parent-content {
    min-height: auto;
  }
}

.center {
  text-align: center;
}

.timeline-section .timeline-header {
  text-align: center; /* center the h3 block */
}
.timeline-section .timeline-header h3 {
  display: inline-block;
  margin: 20px 0 40px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.timeline-section .timeline-header h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  border-bottom: 4px solid #0088cc;
}

.wrapper {
  padding: 0 16px;
  margin: 0 auto;
}

.chronology-block h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.chronology-block h3 span {
  border-radius: 24px;
  padding: 8px 16px;
  background-color: #f5fafd;
}

.timeline-section {
  position: relative;
  padding: 40px 0;
  overflow: visible;
}

/* NEW: non-clipping wrapper */
.slider-wrapper {
  overflow: visible;
  position: relative;
}

.slider {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  white-space: nowrap;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider {
  scrollbar-width: none;
}

.grid-flex {
  display: flex;
  gap: 27px;
  padding: 0 16px;
}

.chronology-block {
  flex: 0 0 auto;
  position: relative;
  text-align: center;
}

.block-img img {
  width: 69px;
  height: auto;
  margin-bottom: 8px;
  cursor: auto;
}

.block-title span {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f0f0f0;
  border-radius: 12px;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.block-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: -moz-max-content;
  width: max-content;
  min-width: 220px;
  max-width: 280px;
  z-index: 1000;
  text-align: left;
  white-space: normal;
}

.chronology-block:hover .block-content {
  display: block;
}

.chronology-block:hover .block-title span {
  background-color: #3561f0;
  color: #fff;
}

#timeline-tooltip.timeline-tooltip {
  position: absolute;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: -moz-max-content;
  width: max-content;
  min-width: 220px;
  max-width: 250px;
  z-index: 9999;
  text-align: left;
  white-space: normal;
  transition: opacity 0.2s ease;
  background: #bcdfee;
}

#timeline-tooltip.timeline-tooltip {
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

#timeline-tooltip.timeline-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

#timeline-tooltip.timeline-tooltip.flipped::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #fff;
}

#timeline-tooltip.timeline-tooltip:not(.flipped)::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #bcdfee;
}

/*banner start*/
.blog-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.blog-hero .hero-text-box p {
  font-size: 16px;
}
.blog-hero .hero-text-box .blog_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .blog-hero .hero-text-box {
    align-items: center;
  }
}
.blog-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .blog-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.blog-section {
  margin-top: 100px;
}
.blog-section .blog-card {
  margin-bottom: 3rem;
}
.blog-section .blog-card .blog img {
  max-width: 100%;
  height: auto;
  background: transparent;
  background-size: cover;
  border-radius: 24px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-section .blog-card .blog img:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.blog-section .blog-card .blog h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 12px 0;
  color: #000;
  line-height: 24px;
  transition:
    color 0.3s ease,
    -webkit-text-decoration 0.3s ease;
  transition:
    color 0.3s ease,
    text-decoration 0.3s ease;
  transition:
    color 0.3s ease,
    text-decoration 0.3s ease,
    -webkit-text-decoration 0.3s ease;
}
.blog-section .blog-card .blog h2:hover {
  color: #0088dd;
  text-decoration: underline;
}
.blog-section .blog-card .blog-details {
  display: flex;
  font-size: 12px;
  color: #5e4747;
  font-weight: 600;
  align-items: center;
  gap: 12px;
}
.blog-section .blog-card .blog-details span img {
  max-width: 24px;
}

/*banner start*/
.career-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.career-hero .hero-text-box p {
  font-size: 16px;
}
.career-hero .hero-text-box .career_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .career-hero .hero-text-box {
    align-items: center;
  }
}
.career-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .career-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.career-country .country-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.career-country .country-card img {
  max-width: 80px;
  transition: transform 0.3s ease;
}
.career-country .country-card .country-name {
  font-weight: 600;
  font-size: 1.5rem;
  color: #252121;
}
.career-country .country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.career-country .country-card:hover img {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .career-country .country-card {
    padding: 1.25rem;
  }
  .career-country .country-card img {
    max-width: 60px;
  }
  .career-country .country-card .country-name {
    font-size: 1rem;
  }
}

.job-section .job-btn {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}
.job-section .job-btn:hover {
  background-color: #0b5ed7;
}
.job-section .job-btn i {
  font-size: 1.1rem;
}
.job-section .job-btn span {
  font-weight: bold;
}
.job-section .job-form input,
.job-section .job-form select,
.job-section .job-form textarea {
  border-radius: 9px;
  background-color: #f0f0f0;
  border: 1px solid #e4e1e1;
}
.job-section .job-form input:focus,
.job-section .job-form select:focus,
.job-section .job-form textarea:focus {
  border-color: #cec4c4;
  box-shadow: none;
}
.job-section .job-form input::-moz-placeholder,
.job-section .job-form select::-moz-placeholder,
.job-section .job-form textarea::-moz-placeholder {
  color: #b3b3b3;
}
.job-section .job-form input::placeholder,
.job-section .job-form select::placeholder,
.job-section .job-form textarea::placeholder {
  color: #b3b3b3;
}
.job-section .job-form button[type="submit"] {
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
}

.job-accordion {
  max-width: 90%;
}
.job-accordion .accordion-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.job-accordion .accordion-item .accordion-header .accordion-button {
  background-color: #0088dd;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 32px !important;
  padding: 0.75rem 1rem;
}
.job-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: #0b5ed7;
}
.job-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.job-accordion .accordion-item .accordion-header .accordion-button:after {
  filter: brightness(0) invert(1);
}
.job-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: #0b5ed7;
}
.job-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.job-accordion .accordion-item .accordion-body {
  padding: 1rem;
  font-size: 0.95rem;
}
.job-accordion .accordion-item .accordion-body p {
  margin-bottom: 0.5rem;
}
.job-accordion .accordion-item .accordion-body a.btn {
  font-size: 0.85rem;
}

.newsletter .news-body {
  max-width: 800px;
  margin: auto;
}
.newsletter h5 {
  font-size: 1.4rem;
}
.newsletter a {
  font-size: 15px;
  font-weight: 700;
  color: #0a66c2;
  text-decoration: underline;
}
.newsletter .newsletter-form input {
  border-radius: 50px 0 0 50px;
  padding-left: 1rem;
  margin-bottom: 0;
  border-color: #0088dd;
  background: #0088dd;
  color: #fff;
}
.newsletter .newsletter-form input::-moz-placeholder {
  color: #fff;
}
.newsletter .newsletter-form input::placeholder {
  color: #fff;
}
.newsletter .newsletter-form button {
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter .newsletter-form i {
  font-size: 1.1rem;
}

.text-light {
  color: #1a1919 !important;
}

/*banner start*/
.sms-hero {
  background: linear-gradient(259.87deg, #e78f11 10.57%, #0a3e6e 65.91%);
  top: 72px !important;
  color: #fff;
  position: relative;
  display: block;
}
.sms-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sms-hero .hero-text-box h1 {
  color: #fff;
  font-weight: 600;
}
.sms-hero .hero-text-box p {
  color: #fff;
  font-size: 16px;
}
.sms-hero .hero-text-box .sms_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .sms-hero .hero-text-box {
    align-items: center;
  }
}
.sms-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .sms-hero .hero-image-box {
    align-items: center;
  }
}
.sms-hero .hero-image-box img {
  max-width: 100%;
  width: 444px;
  height: auto;
  float: right;
}

/*banner end*/
.sms-section {
  padding: 60px 0px;
}
.sms-section .stats {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.sms-section .stats .stat {
  flex: 1 1 22%;
  min-width: 140px;
}
.sms-section .stats .stat h2 {
  font-size: 36px;
  color: #0088dd;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
}
.sms-section .stats .stat p {
  font-size: 16px;
  margin: 8px 0 0;
  color: #000;
}
@media (max-width: 992px) {
  .sms-section .stats .stat {
    flex: 1 1 45%;
  }
}
@media (max-width: 576px) {
  .sms-section .stats .stat {
    flex: 1 1 100%;
  }
}
.sms-section .solution-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.sms-section .solution-content .image {
  flex: 1 1 100%;
  text-align: center;
}
.sms-section .solution-content .image img {
  max-width: 100%;
  height: auto;
}
.sms-section .solution-content .text {
  flex: 1 1 100%;
}
.sms-section .solution-content .text h3 {
  color: #3c3a3a;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 2px;
}
.sms-section .solution-content .text h1 {
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: 700;
  color: #3c3a3a;
}
.sms-section .solution-content .text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #3a3333;
}
@media (min-width: 768px) {
  .sms-section .solution-content {
    flex-wrap: nowrap;
  }
  .sms-section .image,
  .sms-section .text {
    flex: 1;
  }
  .sms-section .text h1 {
    font-size: 40px;
  }
}

/*banner start*/
.voip-hero {
  background: linear-gradient(259.87deg, #e78f11 10.57%, #0a3e6e 65.91%);
  top: 72px !important;
  color: #fff;
  position: relative;
  display: block;
}
.voip-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.voip-hero .hero-text-box h1 {
  color: #fff;
  font-weight: 600;
  margin-top: 32px;
}
.voip-hero .hero-text-box p {
  color: #fff;
  font-size: 16px;
}
.voip-hero .hero-text-box .voip_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .voip-hero .hero-text-box {
    align-items: center;
  }
}
.voip-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .voip-hero .hero-image-box {
    align-items: center;
  }
}
.voip-hero .hero-image-box img {
  max-width: 100%;
  height: auto;
  float: right;
  margin-top: 32px;
}

/*banner end*/
.sms-section {
  padding: 60px 0px;
}
.sms-section .stats {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.sms-section .stats .stat {
  flex: 1 1 22%;
  min-width: 140px;
}
.sms-section .stats .stat h2 {
  font-size: 36px;
  color: #0088dd;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
}
.sms-section .stats .stat p {
  font-size: 16px;
  margin: 8px 0 0;
  color: #000;
}
@media (max-width: 992px) {
  .sms-section .stats .stat {
    flex: 1 1 45%;
  }
}
@media (max-width: 576px) {
  .sms-section .stats .stat {
    flex: 1 1 100%;
  }
}
.sms-section .solution-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.sms-section .solution-content .image {
  flex: 1 1 100%;
  text-align: center;
}
.sms-section .solution-content .image img {
  max-width: 100%;
  height: auto;
}
.sms-section .solution-content .text {
  flex: 1 1 100%;
}
.sms-section .solution-content .text h3 {
  color: #3c3a3a;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 2px;
}
.sms-section .solution-content .text h1 {
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: 700;
  color: #3c3a3a;
}
.sms-section .solution-content .text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #3a3333;
}
@media (min-width: 768px) {
  .sms-section .solution-content {
    flex-wrap: nowrap;
  }
  .sms-section .image,
  .sms-section .text {
    flex: 1;
  }
  .sms-section .text h1 {
    font-size: 40px;
  }
}

/*banner start*/
.residential-phone-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.residential-phone-hero .hero-text-box p {
  font-size: 16px;
}
.residential-phone-hero .hero-text-box .terms {
  font-size: 14px;
}
.residential-phone-hero .hero-text-box .terms span {
  color: red;
}
.residential-phone-hero .hero-text-box .residential-phone_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .residential-phone-hero .hero-text-box {
    align-items: center;
  }
}
.residential-phone-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .residential-phone-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.residential-services-section .service-img img {
  max-width: 100%;
}
.residential-services-section .service-content h2 {
  display: inline-block;
  margin: 20px 0 40px;
  position: relative;
}
.residential-services-section .service-content p {
  line-height: 22px;
  font-size: 0.875rem;
}
.residential-services-section .service-content ul {
  margin: 20px 0;
}
.residential-services-section .service-content ul li {
  font-size: 0.875rem;
  margin: 6px 0;
  line-height: 22px;
  color: #000;
}
.residential-services-section .service-content .store-img {
  display: flex;
}
.residential-services-section .service-content .store-img img {
  max-width: 100%;
  width: 150px;
  height: auto;
}

/*FOOTER START*/
footer {
  margin-top: auto;
  padding: 40px 0;
  font-size: 12px;
  background-color: #fff;
}
footer a {
  color: #262626;
  font-weight: 400;
  font-size: 14px;
}
footer a:hover {
  color: #000;
}
footer h6 {
  color: #262626;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 20px;
}
footer .footlink ul {
  text-align: left;
}
footer .footlink ul li {
  margin-bottom: 10px;
  font-size: 13px;
}
footer .footlink ul li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  background: #fff;
  color: #3561f0;
  font-size: 8px;
  margin-right: 15px;
}
footer .contact {
  margin-bottom: 1.25rem;
}
footer .contact a {
  color: #3561f0;
  font-size: 21px;
  font-weight: 700;
}
footer .contact p {
  font-size: 14px;
  margin: 5px 0;
  color: #111;
}
footer .contact p span {
  color: #111;
  font-size: 13px;
}
footer .contact2 {
  margin-bottom: 1.25rem;
}
footer .contact2 p {
  margin: 0;
  padding: 0;
}
footer .contact2 p span {
  font-size: 0.875rem;
  font-weight: 500;
}
footer .contact2 p a {
  font-size: 1.13rem;
  font-weight: 500;
}
footer .last_link ul {
  color: #111;
  line-height: 25px;
}
footer .last_link ul li {
  display: flex;
  margin-bottom: 10px;
}
footer .last_link i {
  color: #3561f0;
  margin-right: 10px;
  position: relative;
  top: 6px;
  font-size: 1rem;
}
footer .social_icons {
  margin-top: 20px;
}
footer .social_icons ul li {
  float: left;
  margin-right: 5px;
  display: inline-block;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #fff;
  border-radius: 50%;
}
footer .social_icons ul li a {
  color: #3561f0 !important;
}
footer .social_icons ul li a:hover {
  margin-left: 0;
}
footer .social_icons ul li a i {
  border: 1px solid #3561f0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 28px;
}
footer .social_icons ul li a i:hover {
  background-color: #3561f0;
  color: #fff;
}
footer .mobile_apps {
  margin-top: 20px;
}
footer .mobile_apps ul li {
  float: left;
  margin-right: 5px;
  display: inline-block;
}
footer .mobile_apps ul li a {
  display: block;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0px 1px 4px 0px rgba(107, 107, 107, 0.36);
}
footer .mobile_apps ul li a:hover {
  background-color: #3561f0;
}
footer .mobile_apps ul li a:hover svg path {
  fill: #fff !important;
}
footer .mobile_apps ul li:last-child svg {
  left: 2px;
  position: relative;
}
footer .footer_logo img {
  margin-left: -4px;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding: 15px 0;
  background-color: #fff;
}
.copyright p {
  margin-bottom: 0;
  font-size: 12px;
}
.copyright ul {
  float: right;
}
.copyright ul li {
  float: left;
  margin: 0 20px;
}
.copyright ul li:last-child {
  margin-right: 0;
}
.copyright ul li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  background: #fff;
  color: #0088cc;
  font-size: 6px;
  margin-right: 6px;
  position: relative;
  top: -1px;
}
.copyright ul li a {
  color: #111;
  font-size: 12px;
}

.bg-blue {
  background-image: linear-gradient(#e9e9e9, #f9f9f9);
}
.bg-blue label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-control {
  margin-bottom: 15px;
  border-radius: 0;
  padding: 10px;
  font-size: 14px;
}
.form-control:focus {
  border: 1px solid #888 !important;
}

.bordcol {
  border: 1px solid #ccc;
  padding: 20px;
  border-top: 4px solid #0088cc;
}
.bordcol h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.bordcol h4::after {
  position: absolute;
  content: "";
  background: #888;
  width: 60px;
  height: 1px;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.bordcol i {
  font-size: 12px;
  margin-left: 5px;
  color: #0088cc;
}

a {
  font-size: 13px;
  font-weight: 500;
}

.alert-warning {
  font-size: 14px;
  margin: 15px 0;
  font-weight: 500;
}

/*FOOTER END */
.event-header h2 {
  text-align: center;
}
.event-header p {
  text-align: center;
  color: #202020;
}

.events {
  padding: 4rem 2rem;
  background: #f4f4f4;
}
.events .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}
.events .event-card {
  background: #ffffff;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.events .event-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.events .event-card .event-info {
  padding: 1rem;
}
.events .event-card .event-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/*banner start*/
.mtefeatures-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mtefeatures-hero .hero-text-box p {
  font-size: 16px;
}
.mtefeatures-hero .hero-text-box .terms {
  font-size: 14px;
}
.mtefeatures-hero .hero-text-box .terms span {
  color: red;
}
.mtefeatures-hero .hero-text-box .mtefeatures_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .mtefeatures-hero .hero-text-box {
    align-items: center;
  }
}
.mtefeatures-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .mtefeatures-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.microtalk-features .header {
  text-align: center;
  margin-top: 2rem;
}
.microtalk-features .featured-cards .featured-box {
  background: transparent;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  z-index: 1;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  margin-bottom: 21px;
}
.microtalk-features .featured-cards .featured-box .featured-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.microtalk-features .featured-cards .featured-box .featured-content h2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.microtalk-features .featured-cards .featured-box .featured-content p {
  font-size: 14px;
}
.microtalk-features .featured-cards .featured-box .featured-content .img-box {
  width: 72px;
  height: 72px;
}
.microtalk-features
  .featured-cards
  .featured-box
  .featured-content
  .img-box
  img {
  padding: 12px;
}

/*banner start*/
.cloudpbx-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cloudpbx-hero .hero-text-box p {
  font-size: 16px;
}
.cloudpbx-hero .hero-text-box .terms {
  font-size: 14px;
}
.cloudpbx-hero .hero-text-box .terms span {
  color: red;
}
.cloudpbx-hero .hero-text-box .cloudpbx_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .cloudpbx-hero .hero-text-box {
    align-items: center;
  }
}
.cloudpbx-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cloudpbx-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.cloud-phone-section {
  background: #fff;
}
.cloud-phone-section .illustration {
  max-width: 80%;
}
.cloud-phone-section h2 {
  font-size: 1.8rem;
  line-height: 1.4;
}
.cloud-phone-section .step {
  align-items: flex-start;
}
.cloud-phone-section .step .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cloud-phone-section .step h5 {
  font-size: 1.05rem;
}
.cloud-phone-section .step p {
  font-size: 0.95rem;
  color: #555;
}

.numbers-section {
  background-color: #f5f9ff;
}
.numbers-section h2 {
  font-size: 1.8rem;
}
.numbers-section .feature-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.numbers-section .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.numbers-section .feature-box .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbers-section .feature-box .icon-img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.numbers-section .feature-box h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.numbers-section .feature-box p {
  font-size: 0.95rem;
  color: #555;
}

.plans-section {
  background: #fff;
}
.plans-section h3 {
  font-size: 1.4rem;
  line-height: 1.4;
}
.plans-section p {
  font-size: 0.95rem;
  color: #444;
}
.plans-section ul {
  padding-left: 0;
  margin-bottom: 1rem;
}
.plans-section ul li {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.plans-section .feature-img {
  max-width: 280px;
}
.plans-section .d-flex {
  gap: 2rem;
}

.cloudpbx-features .header {
  text-align: center;
  margin-top: 2rem;
}
.cloudpbx-features .featured-cards .featured-box {
  background: transparent;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  z-index: 1;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  margin-bottom: 21px;
}
.cloudpbx-features .featured-cards .featured-box .featured-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.cloudpbx-features .featured-cards .featured-box .featured-content h2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.cloudpbx-features .featured-cards .featured-box .featured-content p {
  font-size: 14px;
}
.cloudpbx-features .featured-cards .featured-box .featured-content .img-box {
  width: 72px;
  height: 72px;
}
.cloudpbx-features
  .featured-cards
  .featured-box
  .featured-content
  .img-box
  img {
  padding: 12px;
}

.hardware-section {
  background: #f5f9ff;
}
.hardware-section .hardware-img {
  max-width: 85%;
}
.hardware-section ul {
  font-size: 0.95rem;
  color: #333;
}
.hardware-section .check-icon {
  color: #00c2ff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.cloudpbx-faq {
  margin: auto;
  padding: 30px 0px;
  text-align: center;
}
.cloudpbx-faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1c1c1c;
  position: relative;
  display: inline-block;
}
.cloudpbx-faq .faq-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  margin: 10px auto 0 auto;
  border-bottom: 4px solid #0088cc;
}
@media (max-width: 768px) {
  .cloudpbx-faq .faq-title {
    font-size: 2rem;
  }
}
.cloudpbx-faq .faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  flex-direction: column;
}
.cloudpbx-faq .faq-item {
  flex-basis: 100%;
  border: 1px solid rgba(172, 185, 250, 0.0901960784);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: rgba(172, 185, 250, 0.0901960784);
}
.cloudpbx-faq .faq-item.active .faq-answer {
  padding: 0 25px 20px;
  margin-bottom: 25px;
}
.cloudpbx-faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.cloudpbx-faq .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  text-align: left;
}
.cloudpbx-faq .faq-item .faq-question p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
}
.cloudpbx-faq .faq-item .faq-question .faq-icon {
  font-size: 1.5rem;
  color: #0074d9;
  transition: transform 0.4s ease;
}
.cloudpbx-faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s all ease;
  padding: 0 25px 0px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #333;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 1100px) {
  .cloudpbx-faq .faq-item {
    flex-basis: 100%;
  }
}

/*banner start*/
.partner-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.partner-hero .hero-text-box p {
  font-size: 16px;
}
.partner-hero .hero-text-box .terms {
  font-size: 14px;
}
.partner-hero .hero-text-box .terms span {
  color: red;
}
.partner-hero .hero-text-box .partner_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .partner-hero .hero-text-box {
    align-items: center;
  }
}
.partner-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .partner-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.partner-section {
  background: #fff;
}
.partner-section .partner-img {
  max-width: 85%;
}
.partner-section h2 {
  font-size: 1.8rem;
}
.partner-section h5 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
}
.partner-section p {
  font-size: 0.95rem;
  color: #444;
}
.partner-section ul {
  padding-left: 0;
}
.partner-section ul li {
  font-size: 0.95rem;
}
.partner-section ul li .check-icon {
  color: #00c2ff;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.partner-section ul li .link {
  color: #007bff;
  text-decoration: none;
}
.partner-section ul li .link:hover {
  text-decoration: underline;
}

.partnership-section {
  background: #fff;
}
.partnership-section h2 {
  font-size: 1.8rem;
}
.partnership-section p {
  font-size: 1rem;
  color: #555;
}
.partnership-section .partner-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.partnership-section .partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.partnership-section .partner-box .icon-wrap .icon-img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  background: #45a4f3;
  border-radius: 50%;
}
.partnership-section .partner-box h5 {
  font-size: 1.15rem;
  margin-top: 0.5rem;
}
.partnership-section .partner-box ul {
  margin-top: 1rem;
  padding-left: 0;
}
.partnership-section .partner-box ul li {
  font-size: 0.95rem;
  line-height: 1.4;
}
.partnership-section .partner-box ul li .check-icon {
  color: #00c2ff;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.partnership-section .d-flex {
  gap: 1.5rem;
}

.partner-benefits {
  background: #fff;
}
.partner-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.partner-benefits .illustration {
  max-width: 320px;
}
.partner-benefits ul {
  margin-top: 1rem;
}
.partner-benefits ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: start;
}
.partner-benefits ul li .check-icon {
  color: #00c2ff;
  margin-right: 8px;
  font-weight: bold;
  flex-shrink: 0;
}
.partner-benefits .row {
  margin-bottom: 3rem;
}

.partnership-journey {
  background: linear-gradient(
    90deg,
    rgba(34, 130, 200, 0.9) 0%,
    rgba(82, 124, 154, 0.9) 100%
  );
  box-shadow: 0px 0px 3.5px 0px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
}
.partnership-journey h2 {
  font-size: 1.8rem;
}
.partnership-journey ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: start;
}
.partnership-journey ul li .check-icon {
  margin-right: 8px;
  color: #00ffd5;
  font-weight: bold;
  flex-shrink: 0;
}
.partnership-journey .btn {
  background: #fff;
  color: #0073e6;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  transition: all 0.3s ease;
}
.partnership-journey .btn:hover {
  background: #e6f3ff;
  color: #005bb5;
}
.partnership-journey .illustration {
  max-width: 350px;
}

/*banner start*/
.contactcenter-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.contactcenter-hero .hero-text-box p {
  font-size: 16px;
}
.contactcenter-hero .hero-text-box .terms {
  font-size: 14px;
}
.contactcenter-hero .hero-text-box .terms span {
  color: red;
}
.contactcenter-hero .hero-text-box .contactcenter_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .contactcenter-hero .hero-text-box {
    align-items: center;
  }
}
.contactcenter-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .contactcenter-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.contact-center {
  background: #fff;
}
.contact-center .intro-text {
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-center h3 {
  color: #222;
}
.contact-center .solution-list li,
.contact-center .benefits-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.contact-center .solution-list li:before,
.contact-center .benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}
.contact-center img {
  border-radius: 8px;
}

.section-title {
  color: #343a40;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #c8c8c8;
  box-shadow: 0px 1px 3.5px 0px rgba(0, 0, 0, 0.2509803922);
  text-align: center;
  height: 100%;
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  align-items: center;
  justify-content: center;
}
.feature-card .feature-icon img {
  width: 33px;
}
.feature-card .feature-title {
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
}
.feature-card .feature-description {
  color: #000000;
  font-size: 0.95rem;
}

.industry-list {
  list-style: none;
  padding-left: 0;
}
.industry-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.industry-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.bg-light {
  background-color: #e5f1ff !important;
}

.section-title {
  color: #343a40;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.process-card {
  padding: 20px;
  text-align: center;
  height: 100%;
}
.process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card .process-icon img {
  width: 36px;
}

.support-list {
  list-style: none;
  padding-left: 0;
}
.support-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.support-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/*banner start*/
.fibreinternet-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.fibreinternet-hero .hero-text-box p {
  font-size: 16px;
}
.fibreinternet-hero .hero-text-box .terms {
  font-size: 14px;
}
.fibreinternet-hero .hero-text-box .terms span {
  color: red;
}
.fibreinternet-hero .hero-text-box .fibreinternet_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .fibreinternet-hero .hero-text-box {
    align-items: center;
  }
}
.fibreinternet-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .fibreinternet-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
/*banner start*/
.mobile-services-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mobile-services-hero .hero-text-box p {
  font-size: 16px;
}
.mobile-services-hero .hero-text-box .terms {
  font-size: 14px;
}
.mobile-services-hero .hero-text-box .terms span {
  color: red;
}
.mobile-services-hero .hero-text-box .mobile-services_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .mobile-services-hero .hero-text-box {
    align-items: center;
  }
}
.mobile-services-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .mobile-services-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.highlights {
  background: #31a8fe;
  color: #fff;
}

.mobile-service {
  background: #fff;
}
.mobile-service .intro-text {
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.mobile-service h3 {
  color: #222;
}
.mobile-service .solution-list li,
.mobile-service .benefits-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.mobile-service .solution-list li:before,
.mobile-service .benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}
.mobile-service img {
  border-radius: 8px;
}

/*banner start*/
.cx-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cx-hero .hero-text-box p {
  font-size: 16px;
}
.cx-hero .hero-text-box .terms {
  font-size: 14px;
}
.cx-hero .hero-text-box .terms span {
  color: red;
}
.cx-hero .hero-text-box .cx-services_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .cx-hero .hero-text-box {
    align-items: center;
  }
}
.cx-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cx-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.cx-service {
  background: #fff;
}
.cx-service .intro-text {
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.cx-service h3 {
  color: #222;
}
.cx-service .solution-list li,
.cx-service .benefits-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.cx-service .solution-list li:before,
.cx-service .benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}
.cx-service img {
  border-radius: 8px;
}

.onboarding-section .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onboarding-section p {
  margin: 0;
}
.onboarding-section .highlight-box {
  border-radius: 0.5rem;
  background: #308ad4;
}
.onboarding-section .highlight-box p {
  color: #fff;
}
@media (max-width: 767.98px) {
  .onboarding-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }
  .onboarding-section .row.align-items-center .col-md-4 {
    margin-bottom: 2rem;
  }
  .onboarding-section .row.align-items-center .d-flex.align-items-start {
    justify-content: center;
    text-align: center;
  }
}

.process-card-3cx {
  padding: 20px;
  text-align: center;
  height: 100%;
}
.process-card-3cx .process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-3cx .process-icon img {
  width: 36px;
}

/*banner start*/
.analytics-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.analytics-hero .hero-text-box p {
  font-size: 16px;
}
.analytics-hero .hero-text-box .terms {
  font-size: 14px;
}
.analytics-hero .hero-text-box .terms span {
  color: red;
}
.analytics-hero .hero-text-box .analytics_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .analytics-hero .hero-text-box {
    align-items: center;
  }
}
.analytics-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .analytics-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.process-card-analytics {
  padding: 20px;
  text-align: center;
  height: 100%;
}
.process-card-analytics .process-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-analytics .process-icon img {
  width: 36px;
}

.analytics {
  background: #fff;
  margin: 0;
  padding: 0;
}
.analytics h3 {
  color: #222;
}
.analytics .card {
  padding: 30px;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  margin: 12px 0;
  min-height: 285px;
}
.analytics .card:hover {
  box-shadow: 0px 1px 3.5px 0px rgba(0, 0, 0, 0.2509803922);
}
.analytics .solution-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.analytics .solution-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/*banner start*/
.integrations-hero .hero-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.integrations-hero .hero-text-box p {
  font-size: 16px;
}
.integrations-hero .hero-text-box .terms {
  font-size: 14px;
}
.integrations-hero .hero-text-box .terms span {
  color: red;
}
.integrations-hero .hero-text-box .integrations_cta {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .integrations-hero .hero-text-box {
    align-items: center;
  }
}
.integrations-hero .hero-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .integrations-hero .hero-image-box {
    align-items: center;
  }
}

/*banner end*/
.process-card-case-study {
  padding: 20px;
  text-align: center;
}
.process-card-case-study .process-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-case-study .process-icon img {
  width: 36px;
}

.process-card-tailored {
  padding: 20px;
  text-align: center;
}
.process-card-tailored .process-card {
  padding: 20px;
  text-align: center;
}
.process-card-tailored h3 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
}
.process-card-tailored .process-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, #45a4f3 0%, #1b72b9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-tailored .process-icon img {
  width: 36px;
}

.tailored .tailored-highlight .section-title {
  font-size: 24px !important;
  font-weight: bold;
  color: #222;
}

.privacy-intro {
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  padding: 1rem 2rem;
  margin: 0 auto;
}

.privacy-highlight {
  background: #37a6f5;
  color: #fff;
  padding: 1rem 2rem;
}
.privacy-highlight h5 {
  font-weight: 500;
}
.privacy-highlight ul {
  color: #fff;
  line-height: 25px;
}
.privacy-highlight ul li {
  color: #fff;
  display: flex;
  margin-bottom: 10px;
}
.privacy-highlight ul li a {
  font-size: 14px;
  color: #fff;
}
.privacy-highlight i {
  color: #fff;
  margin-right: 16px;
  position: relative;
  top: 6px;
  font-size: 1rem;
}
.privacy-highlight p {
  color: #fff;
}

.privacy-data {
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  padding: 1rem 2rem;
  margin: 0 auto;
}

.data-purpose-table .table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: none;
}
.data-purpose-table .table > :not(caption) > * > * {
  padding: 0.9rem 1.2rem !important;
  background-color: transparent;
  color: #212529;
  box-shadow: none !important;
  border-bottom: 1px solid #e9ecef !important;
  vertical-align: top;
}
.data-purpose-table thead th {
  background-color: #37a6f5 !important;
  color: #fff !important;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
  border: none !important;
}
.data-purpose-table tbody tr:nth-child(odd) {
  background-color: #edf7ff !important;
}
.data-purpose-table tbody td {
  font-size: 0.95rem;
  line-height: 1.5;
}
.data-purpose-table .table {
  overflow: hidden;
}

.pdf-library {
  /* Responsive Tweaks */
}
.pdf-library .pdf-section-title {
  background-color: #03a9f4;
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.2px;
}
.pdf-library .pdf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.pdf-library .pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-color: #0098f2;
}
.pdf-library .pdf-card:hover .pdf-title {
  color: #0098f2;
}
.pdf-library .pdf-card .pdf-icon {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}
.pdf-library .pdf-card .pdf-title {
  font-size: 0.95rem;
  color: #212529;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 991.98px) {
  .pdf-library .pdf-card {
    padding: 1.25rem 0.75rem;
  }
  .pdf-library .pdf-card .pdf-icon {
    width: 60px;
  }
  .pdf-library .pdf-card .pdf-title {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .pdf-library .pdf-section-title {
    text-align: center;
    font-size: 0.95rem;
  }
  .pdf-library .pdf-card {
    padding: 1rem;
  }
  .pdf-library .pdf-card .pdf-icon {
    width: 55px;
  }
  .pdf-library .pdf-card .pdf-title {
    font-size: 0.9rem;
  }
}

.compliance-section {
  /* Animation */
  /* Responsive */
}
.compliance-section .compliance-card {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}
.compliance-section .compliance-card .country-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}
.compliance-section .compliance-card .rule-title {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.25rem;
}
.compliance-section .compliance-card .btn-view {
  background-color: #0098f2;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 152, 242, 0.25);
}
.compliance-section .compliance-card .btn-view:hover {
  background-color: #007bca;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0, 152, 242, 0.35);
}
.compliance-section .compliance-card .pdf-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.compliance-section .compliance-card .pdf-link-wrapper .pdf-icon {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}
.compliance-section .compliance-card .pdf-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.compliance-section .compliance-card .country-image {
  max-width: 80%;
  transition: transform 0.3s ease;
  animation: fadeIn 0.6s ease-in-out;
}
.compliance-section .compliance-card .country-image:hover {
  transform: scale(1.05);
}
.compliance-section .compliance-card .pdf-section-title {
  background-color: #03a9f4;
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.2px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991.98px) {
  .compliance-section .compliance-card {
    padding: 1.5rem;
  }
  .compliance-section .compliance-card .country-image {
    max-width: 70%;
  }
  .compliance-section .compliance-card .btn-view {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .compliance-section .compliance-card {
    text-align: center;
  }
  .compliance-section .compliance-card .country-name {
    font-size: 1.1rem;
  }
  .compliance-section .compliance-card .rule-title {
    font-size: 0.95rem;
  }
  .compliance-section .compliance-card .pdf-link-wrapper {
    justify-content: center;
  }
  .compliance-section .compliance-card .country-image {
    max-width: 90%;
  }
}

.signup-section .form-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.form-floating .form-control,
.form-floating .form-select {
  border-radius: 10px;
  height: 58px;
  transition: 0.25s ease;
}
.form-floating > label {
  font-size: 14px;
}
.form-floating .form-control:focus,
.form-floating .form-select:focus {
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.25);
  border-color: #0a84ff;
}

.password-wrap {
  position: relative;
}
.password-wrap .toggle-password {
  position: absolute;
  right: 14px;
  top: 18px;
  cursor: pointer;
  font-size: 17px;
  opacity: 0.6;
  transition: 0.25s ease;
}
.password-wrap .toggle-password:hover {
  opacity: 1;
}

.btn-next {
  background: #0a84ff;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  color: #fff;
}
.btn-next:hover {
  background: rgb(0, 106.5632653061, 214);
}

@media (max-width: 767px) {
  .btn-next {
    width: 100%;
  }
}
.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.wizard-steps .step {
  text-align: center;
  font-size: 14px;
  width: 33%;
}
.wizard-steps .step.active .circle,
.wizard-steps .step.completed .circle {
  background: #0a84ff;
  color: #fff;
}
.wizard-steps .step .circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #0a84ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 8px;
  background: #fff;
}

.step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.step-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.submit-loader {
  display: none;
  width: 28px;
  height: 28px;
  border: 3px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.error-page {
  min-height: 90vh;
  background: #ffffff;
}

.error-code {
  font-size: 140px;
  font-weight: 900;
  color: #3d535b;
  line-height: 1;
  animation: fadeIn 0.9s ease-out forwards;
}

.oops-text {
  color: #5680a8;
  font-weight: 600;
  font-size: 32px;
  margin-top: -10px;
  animation: fadeIn 1.1s ease-in forwards;
}

.error-desc {
  color: #000;
  font-size: 16px;
  margin-bottom: 25px;
  animation: fadeIn 1.3s ease-in forwards;
}

.btn-home {
  font-weight: 500;
  animation: fadeIn 1.5s ease-in forwards;
}

.robot-wrapper {
  position: relative;
  display: inline-block;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes sparkle {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

@media (max-width: 992px) {
  .error-code {
    font-size: 100px;
    text-align: center;
  }
} /*# sourceMappingURL=style.css.map */
