@charset "UTF-8";
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

.home-body-main {
  background: #F7FAFC;
}

body {
  font-family: "Outfit", sans-serif;
  background: #F7FAFC;
}
body .searchbar {
  margin-bottom: 20px;
}
body .searchbar .container {
  background-color: transparent;
  border-radius: 12px;
  /*padding: 25px;*/
  /*padding-top: 50px;*/
  padding: 2em 11em 0em 11em;
}
@media (max-width: 500px) {
  body .searchbar .container {
    padding: 16px 16px 0px 15px;
    padding-top: 40px;
  }
}
body .searchbar .container .search-wrapper {
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px;
  gap: 12px;
}
@media (max-width: 767px) {
  body .searchbar .container .search-wrapper {
    flex-wrap: wrap;
    padding: 12px;
  }
}
body .searchbar .container .input-with-icon {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f7fafc;
  border-radius: 8px;
  padding: 16px 14px;
  gap: 12px;
}
@media (max-width: 767px) {
  body .searchbar .container .input-with-icon {
    width: 100%;
  }
}
body .searchbar .container .input-with-icon .search-icon {
  flex-shrink: 0;
  display: block;
}
body .searchbar .container .input-with-icon input {
  flex: 1;
  border: none;
  padding: 0;
  font-size: 16px;
  color: var(--Body-Text, #333);
  background: transparent;
  font-weight: 400;
  min-width: 0;
}
body .searchbar .container .input-with-icon input::-moz-placeholder {
  color: var(--Body-Text, #333);
  font-size: 16px;
  font-weight: 400;
}
body .searchbar .container .input-with-icon input::placeholder {
  color: var(--Body-Text, #333);
  font-size: 16px;
  font-weight: 400;
}
body .searchbar .container .input-with-icon input:focus-visible {
  outline: none;
}
body .searchbar .container .search-btn {
  background-color: #060682;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  body .searchbar .container .search-btn {
    width: 100%;
    margin-top: 8px;
  }
}
body .top-banner {
  background: #0077FF;
  padding: 9px 0;
}
body .top-banner .info-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
body .top-banner .info-btns i {
  padding-top: 5px;
  font-size: 0.91em;
}
@media (max-width: 992px) {
  body .top-banner .info-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}
body .top-banner .info-btns .info-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: white;
}
body .top-banner .main-address2 {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 992px) {
  body .top-banner .main-address2 {
    justify-content: center;
    margin-top: 10px;
  }
}
body .top-banner .main-address2 i {
  color: white;
}
body .top-banner .main-address2 a {
  text-decoration: none;
  color: white;
}
body .main-menu {
  padding: 15px 0;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}
body .main-menu.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
body .main-menu.hidden {
  animation: slideUp 0.3s ease;
}
@media (max-width: 1200px) {
  body .main-menu .nav-responsive-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
}
body .main-menu .navbar .container .navbar-brand img {
  max-width: 100%;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .nav-link {
  color: #121212;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  body .main-menu .navbar .container .collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  display: none !important;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .nav-link:focus-visible {
  box-shadow: none;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu {
  width: 100%;
  border-radius: 0;
  padding: 20px 0;
  border-top: 2px solid rgba(0, 0, 0, 0.7);
  top: -500px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .col-lg-4 {
  /*padding-left: 0;*/
  /*padding-right: 0;*/
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a {
  padding: 10px 3px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.7s;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a .mega-menu-title {
  text-align: center;
  width: 100%;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a:hover {
  background-color: #007aff;
  border-radius: 6px;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a:hover .mega-menu-title div {
  color:#fff;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a .mega-menu-title div {
  color: #25262A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 1400px) {
  body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a .mega-menu-title div {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a .mega-menu-title div {
    font-size: 16px;
  }
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a:hover .mega-menu-title .heading,
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu .container .row .mega-menu-item a:hover .mega-menu-title h5 {
  color: #060682;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 70px;
}
body .main-menu .navbar .container .collapse .navbar-nav .nav-item.active .nav-link {
  color: #121212;
  font-weight: 500;
}
body .main-menu .navbar .container .collapse .navbar-form {
  display: flex;
  gap: 15px;
  align-items: center;
}
body .main-menu .navbar .container .collapse .navbar-form .account-btn {
  background-color: #060682;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
}
body .main-menu .navbar .container .collapse .navbar-form .account-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn {
  background-color: white;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn:hover {
  border-color: #0077FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 119, 255, 0.15);
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn:hover::before {
  left: 100%;
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 119, 255, 0.1);
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
body .main-menu .navbar .container .collapse .navbar-form .talk-btn:hover a {
  color: #0077FF;
}
@media (max-width: 1200px) {
  body .main-menu .navbar .container .navbar-desktop {
    display: none !important;
  }
}
body .main-menu .mobile-nav .mobile-nav-burger-btn {
  background: transparent;
  border: none;
}
body .main-menu .mobile-nav .mobile-nav-burger-btn i {
  color: #060682;
  font-size: 35px;
}
body .main-menu .mobile-nav .offcanvas {
  z-index: 1050;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  max-height: 100vh !important;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body {
  height: 100% !important;
  max-height: calc(100vh - 60px) !important;
  overflow-y: auto !important;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar {
  display: flex;
  flex-direction: column;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .toggle-button-inner-dropdown {
  border: none;
  background-color: transparent;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar {
  position: fixed;
  top: 0;
  left: -200%;
  /* Initially hidden */
  width: 400px;
  height: 100vh;
  max-height: 100vh;
  background-color: #fff;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 1060;
}
@media (max-width: 400px) {
  body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar {
    width: 100%;
  }
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-header {
  padding: 10px;
  margin-bottom: 20px;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-header .close-button-inner-dropdown {
  border: none;
  background-color: transparent;
  cursor: pointer;
  margin: 10px;
  display: none;
  /* Initially hidden */
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 3px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: 0.7s;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a .mega-menu-title {
  padding-left: 10px;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a .mega-menu-title div {
  color: #121212;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 1400px) {
  body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a .mega-menu-title div {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a .mega-menu-title div {
    font-size: 16px;
  }
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a:hover .mega-menu-title .heading,
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar .inner-dropdown-body .mega-menu-item a:hover .mega-menu-title h5 {
  color: #060682;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar.active {
  left: 0;
  /* Show sidebar on toggle */
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-nav .nav-item .dropdown-sidebar .inner-dropdown-sidebar.active .close-button-inner-dropdown {
  display: block;
  /* Show close button only when sidebar is active */
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form {
  display: flex;
  gap: 15px;
  align-items: center;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .account-btn {
  background-color: #0077FF;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .account-btn a {
  color: white;
  text-decoration: none;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn {
  background-color: white;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn:hover {
  border-color: #0077FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 119, 255, 0.15);
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn:hover::before {
  left: 100%;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 119, 255, 0.1);
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
body .main-menu .mobile-nav .offcanvas .offcanvas-body .navbar-form .talk-btn:hover a {
  color: #0077FF;
}
body #about-us .we-aim {
  padding-bottom: 50px;
  padding-top: 23px;
}
@media (max-width: 500px) {
  body #about-us .we-aim {
    padding-bottom: 10px;
  }
}
body #about-us .we-aim .container .row {
  margin-top: 40px;
}
@media (max-width: 500px) {
  body #about-us .we-aim .container .row {
    margin-top: 20px;
  }
}
body #about-us .we-aim .container .row .aim-image {
  display: flex;
  justify-content: end;
  height: 100%;
  align-items: center;
}
@media (max-width: 992px) {
  body #about-us .we-aim .container .row .aim-image {
    justify-content: center;
  }
}
body #about-us .we-aim .container .row .main-aim {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 15px;
}
body #about-us .we-aim .container .row .main-aim .our-mission {
  padding: 21px 65px;
  background-color: #FFF;
  border-radius: 6px;
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  position: relative;
  right: 30px;
  transition: 0.7s;
}
@media (max-width: 992px) {
  body #about-us .we-aim .container .row .main-aim .our-mission {
    right: 0;
    padding: 20px 30px;
    display: block;
    gap: 20px;
  }
}
@media (max-width: 990px) {
  body #about-us .we-aim .container .row .main-aim .our-mission .icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  body #about-us .we-aim .container .row .main-aim .our-mission .icon img {
    width: 58px;
  }
}
body #about-us .we-aim .container .row .main-aim .our-mission:hover {
  background-color: #060682;
  transition: 0.5s;
}
body #about-us .we-aim .container .row .main-aim .our-mission:hover .mission-content h4 {
  color: white;
}
body #about-us .we-aim .container .row .main-aim .our-mission:hover .mission-content p {
  color: white;
}
body #about-us .we-aim .container .row .main-aim .our-mission .mission-content h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--Body-Text, #333);
}
@media (max-width: 767px) {
  body #about-us .we-aim .container .row .main-aim .our-mission .mission-content h4 {
    font-size: 28px;
  }
}
body #about-us .we-aim .container .row .main-aim .our-mission .mission-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--Body-Text, #121212);
  font-family: "Outfit", sans-serif;
}
body .inner-services .transfer {
  padding-top: 20px;
  padding-bottom: 25px;
}
body .inner-services .transfer .title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .inner-services .transfer .title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .inner-services .transfer .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .inner-services .transfer .title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .inner-services .transfer .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .inner-services .transfer .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .inner-services .transfer .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .inner-services .transfer .title .primary-heading {
    font-size: 30px;
  }
}
body .inner-services .transfer .title .primary-heading .heading-blue {
  color: #060682;
}
body .inner-services .transfer .title .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .inner-services .transfer .title .primary-description {
    font-size: 16px;
  }
  body .inner-services .transfer .title .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .inner-services .transfer .title .primary-description {
    font-size: 14px;
  }
}
body .inner-services .transfer .row .process-made {
  padding: 21px 35px;
  background-color: #fff;
  border-radius: 6px;
  transition: 0.5s;
  margin-bottom: 22px;
}
body .inner-services .transfer .row .process-made:hover {
  background-color: #060682;
  transition: 0.5s;
}
body .inner-services .transfer .row .process-made:hover h5 {
  color: white;
}
body .inner-services .transfer .row .process-made:hover p {
  color: white;
}
body .inner-services .transfer .row .process-made h5 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
  font-family: "Outfit", sans-serif;
  padding-bottom: 3px;
}
body .inner-services .transfer .row .process-made p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  font-family: "Outfit", sans-serif;
  margin-bottom: 4px;
}
body .inner-services .domain-transfer {
  padding-top: 55px;
  padding-bottom: 20px;
}
body .inner-services .domain-transfer .container .row .main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
body .inner-services .domain-transfer .container .row .main-content .dot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 119, 255, 0.12);
  border: 1px solid #060682;
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border-radius: 30px;
  padding: 8px 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 22px;
}
body .inner-services .domain-transfer .container .row .main-content .dot-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #060682;
  border-radius: 50%;
  flex-shrink: 0;
}
body .inner-services .domain-transfer .container .row .main-content .dot-badge .badge-title {
  font-size: 16px;
  font-weight: 500;
  color: #060682;
}
@media (max-width: 767px) {
  body .inner-services .domain-transfer .container .row .main-content .dot-badge .badge-title {
    font-size: 14px;
  }
}
body .inner-services .domain-transfer .container .row .main-content .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-heading {
    font-size: 30px;
  }
}
body .inner-services .domain-transfer .container .row .main-content .primary-heading .heading-blue {
  color: #060682;
}
body .inner-services .domain-transfer .container .row .main-content .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-description {
    font-size: 16px;
  }
  body .inner-services .domain-transfer .container .row .main-content .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .inner-services .domain-transfer .container .row .main-content .primary-description {
    font-size: 14px;
  }
}
body .inner-services .extensions {
  padding-top: 20px;
  padding-bottom: 25px;
}
body .inner-services .extensions .domains-cards {
  background: #fff;
  border-radius: 6px;
  padding: 20px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  margin-bottom: 23px;
}
body .inner-services .extensions .domains-cards:hover {
  background: #060682;
  transition: 0.5s;
}
body .inner-services .extensions .domains-cards:hover .pricing h3 {
  color: white;
}
body .inner-services .extensions .domains-cards:hover .pricing p {
  color: white;
}
body .inner-services .extensions .domains-cards:hover .arrow i {
  color: white;
}
body .inner-services .extensions .domains-cards:hover .arrow i::before {
  border-radius: 100%;
  background: #060682;
  transform: rotate(43deg);
}
body .inner-services .extensions .domains-cards .pricing h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #121212;
  padding-bottom: 6px;
}
body .inner-services .extensions .domains-cards .pricing p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}
body .inner-services .extensions .domains-cards .arrow i {
  font-size: 42px;
  color: #060682;
}
body .inner-services .domain-renewels .domain-tabs .nav-tabs {
  gap: 20px !important;
  --bs-nav-tabs-border-color: none !important;
  --bs-nav-tabs-border-radius: none !important;
}
body .inner-services .domain-renewels .domain-tabs .nav-tabs .nav-item .nav-link {
  border: 1px solid #07F !important;
  border-radius: 25px;
  padding: 10px 35px;
  color: #121212;
}
body .inner-services .domain-renewels .domain-tabs .nav-tabs .nav-item .nav-link.active {
  color: white !important;
  background-color: #060682;
  border: 1px solid #07F;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane {
  margin-top: 50px;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane .row .main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane .row .main-content h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #060682;
  padding-bottom: 15px;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane .row .main-content span {
  font-size: 14px;
  font-weight: 600;
  color: #0077ff;
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane .row .main-content p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  font-family: "Outfit", sans-serif;
}
body .inner-services .domain-renewels .domain-tabs .tab-content .tab-pane .row .about-image {
  display: flex;
  justify-content: end;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner {
  max-height: 220px;
  text-align: center;
  background-color: #fff;
  padding: 20px 5px;
  border-radius: 6px;
  margin: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner .cp1 {
  font-size: 30px;
  color: #333333;
  font-weight: 700;
  transition: color 0.3s ease;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner .cp2 {
  font-weight: 400;
  font-size: 18px;
  transition: color 0.3s ease;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner .reg-now {
  background-color: #060682;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  width: 95%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner:hover {
  background-color: #060682;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner:hover .cp1,
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner:hover .cp2 {
  color: #ffffff;
}
body .inner-services .domain-cards .center-aligned-cards .center-aligned-cards-inner:hover .reg-now {
  background-color: #ffffff;
  color: #060682;
}
body .bg-blue {
  background-color: #060682;
  padding-top: 60px;
  padding-bottom: 50px !important;
}
body .bg-blue .title {
  text-align: center;
}
body .bg-blue .title h2 {
  color: white !important;
  font-size: 48px;
  padding-bottom: 10px;
}
body .bg-blue .title p {
  color: white !important;
}
body .bg-blue .bg-blue-cards {
  padding: 23px 21px;
  background: #ffffff;
  margin: 10px 0;
  height: 260px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: 0.7s;
}
@media (max-width: 1199px) {
  body .bg-blue .bg-blue-cards {
    height: -webkit-fill-available;
  }
}
body .bg-blue .bg-blue-cards .text .title-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
body .bg-blue .bg-blue-cards .text i {
  color: #060682;
  background: rgba(0, 119, 255, 0.1019607843);
  border-radius: 6px;
  padding: 8px 10px;
}
body .bg-blue .bg-blue-cards .text h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--Grey, #333);
  padding-top: 20px;
  padding-bottom: 9px;
}
body .bg-blue .bg-blue-cards .text p {
  color: var(--Grey, #333);
  font-size: 16px;
  font-weight: 400;
}
body .main-cards-sec {
  margin: 20px 0;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  body .main-cards-sec {
    margin-bottom: 0px;
  }
}
body .main-cards-sec .title {
  text-align: center;
}
body .main-cards-sec .title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .main-cards-sec .title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .main-cards-sec .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .main-cards-sec .title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .main-cards-sec .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .main-cards-sec .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .main-cards-sec .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .main-cards-sec .title .primary-heading {
    font-size: 30px;
  }
}
body .main-cards-sec .title .primary-heading .heading-blue {
  color: #060682;
}
body .main-cards-sec .title .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .main-cards-sec .title .primary-description {
    font-size: 16px;
  }
  body .main-cards-sec .title .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .main-cards-sec .title .primary-description {
    font-size: 14px;
  }
}
body .main-cards-sec .main-inner-card {
  padding: 23px 21px;
  background: #ffffff;
  margin: 10px 0;
  height: 260px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.7s;
}
body .main-cards-sec .main-inner-card:hover {
  background: #060682 !important;
  transition: 0.7s;
}
body .main-cards-sec .main-inner-card:hover .text i {
  background: white;
}
body .main-cards-sec .main-inner-card:hover .text h5 {
  color: white;
}
body .main-cards-sec .main-inner-card:hover .text p {
  color: white;
}
@media (max-width: 1199px) {
  body .main-cards-sec .main-inner-card {
    height: -webkit-fill-available;
  }
}
body .main-cards-sec .main-inner-card .text i {
  color: #060682;
  background: rgba(0, 119, 255, 0.1019607843);
  border-radius: 6px;
  padding: 8px 10px;
}
body .main-cards-sec .main-inner-card .text h5 {
  font-size: 20px;
  font-weight: 500;
  color: #121212;
  padding-top: 20px;
  padding-bottom: 9px;
}
body .main-cards-sec .main-inner-card .text p {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
}
body .main-cards-sec .main-inner-card .text .title-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
body .stats-section {
  padding-top: 25px;
  padding-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 900px) {
  body .stats-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
body .stats-section .marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}
body .stats-section .marquee-content {
  display: flex;
  animation: marquee-animation 15s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
body .stats-section .marquee-content:hover {
  animation-play-state: paused;
}
body .stats-section .stat-item {
  width: 25vw;
  flex-shrink: 0;
  text-align: center;
  padding: 20px 10px;
}
@media (max-width: 991px) {
  body .stats-section .stat-item {
    width: 50vw;
  }
}
@media (max-width: 575px) {
  body .stats-section .stat-item {
    width: 100vw;
  }
}
body .stats-section .stat-item .stat-number {
  font-size: 40px;
  font-weight: 500;
  color: #000080;
  margin-bottom: 7px;
}
body .stats-section .stat-item .stat-label {
  font-size: 18px;
  color: #8f8f8f;
}
@keyframes marquee-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body .how-do-we-work {
  margin: 30px 0;
}
body .how-do-we-work .title {
  text-align: center;
}
body .how-do-we-work .title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .how-do-we-work .title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .how-do-we-work .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .how-do-we-work .title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .how-do-we-work .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .how-do-we-work .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .how-do-we-work .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .how-do-we-work .title .primary-heading {
    font-size: 30px;
  }
}
body .how-do-we-work .title .primary-heading .heading-blue {
  color: #060682;
}
body .how-do-we-work .work-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 4px 28.1px 0 rgba(0, 119, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid transparent;
}
body .how-do-we-work .work-card .card-img {
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
}
body .how-do-we-work .work-card .card-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
body .how-do-we-work .work-card .card-content .step-no {
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 10px;
}
body .how-do-we-work .work-card .card-content .card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--Black-400, #121f30);
  margin-bottom: 15px;
}
body .how-do-we-work .work-card .card-content .card-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--Body-Text, #121212);
  margin-bottom: 10px;
}
body .how-do-we-work .work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
body .how-do-we-work .text h3 {
  color: #121212;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 767px) {
  body .how-do-we-work .text h3 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  body .how-do-we-work .text {
    text-align: center;
  }
}
body .how-do-we-work .talk-btn {
  display: flex;
  justify-content: end;
  align-items: center;
}
body .how-do-we-work .talk-btn a {
  text-decoration: none;
  border-radius: 5px;
  background-color: #060682;
  font-size: 16px;
  font-weight: 400;
  color: white;
  padding: 10px 15px;
}
@media (max-width: 992px) {
  body .how-do-we-work .talk-btn {
    justify-content: center;
  }
}
body .services {
  margin: 30px 0;
}
body .services .title {
  text-align: center;
}
body .services .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .services .title h2 {
    font-size: 28px;
  }
}
body .services .title p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .services .title p {
    font-size: 14px;
  }
}
body .services .title span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body .services .content {
  height: 100%;
  display: flex;
  margin: 10px 0;
  flex-direction: column;
  justify-content: center;
}
body .services .content span {
  font-size: 14px;
  color: #07F;
  font-weight: 400;
}
body .services .content h4 {
  font-size: 36px;
  font-weight: 700;
  color: #060682;
}
@media (max-width: 767px) {
  body .services .content h4 {
    font-size: 28px;
  }
}
body .services .content p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
body .services .img {
  margin: 10px 0;
}
body .services .img img {
  width: 100%;
}
body .testimonials {
  margin: 30px 0;
}
body .testimonials .title {
  text-align: center;
}
body .testimonials .title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .testimonials .title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .testimonials .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .testimonials .title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .testimonials .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .testimonials .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .testimonials .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .testimonials .title .primary-heading {
    font-size: 30px;
  }
}
body .testimonials .title .primary-heading .heading-blue {
  color: #060682;
}
body .testimonials .title .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .testimonials .title .primary-description {
    font-size: 16px;
  }
  body .testimonials .title .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .testimonials .title .primary-description {
    font-size: 14px;
  }
}
body .testimonials .swiper {
  padding-bottom: 30px;
}
body .testimonials .swiper .swiper-wrapper {
  align-items: stretch;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box {
  margin-top: 23px;
  border-radius: 10px;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .teams-intro {
  display: flex;
  justify-content: space-between;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .teams-intro .teams-name {
  display: flex;
  gap: 10px;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .teams-intro .teams-name h6 {
  font-size: 20px;
  color: #121212;
  font-weight: 500;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .teams-intro .teams-name p {
  color: #8f8f8f;
  font-size: 16px;
  font-weight: 400;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .team-content {
  flex: 1;
}
body .testimonials .swiper .swiper-wrapper .swiper-slide .main-box .team-content p {
  color: #8f8f8f;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-top: 15px;
}
body .testimonials .swiper .swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  position: relative;
}
body .testimonials .swiper .swiper-button-prev,
body .testimonials .swiper .swiper-button-next {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #060682;
  cursor: pointer;
}
body .testimonials .swiper .swiper-button-prev i,
body .testimonials .swiper .swiper-button-next i {
  font-size: 17px;
}
body .testimonials .swiper .swiper-button-prev::after,
body .testimonials .swiper .swiper-button-next::after {
  display: none;
}
body .testimonials .swiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  width: auto !important;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
body .testimonials .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 1;
  margin: 0 5px !important;
  transition: 0.3s ease;
}
body .testimonials .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #060682;
  transform: scale(1.1);
}
@media (max-width: 575px) {
  body .testimonials .swiper .swiper-controls {
    gap: 10px;
    margin-top: 30px;
  }
  body .testimonials .swiper .swiper-button-prev,
  body .testimonials .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
body .ready-launch {
  padding-bottom: 50px;
}
body .ready-launch .container .row .main-content {
  text-align: center;
}
body .ready-launch .container .row .main-content .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .ready-launch .container .row .main-content .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .ready-launch .container .row .main-content .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .ready-launch .container .row .main-content .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .ready-launch .container .row .main-content .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .ready-launch .container .row .main-content .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .ready-launch .container .row .main-content .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .ready-launch .container .row .main-content .primary-heading {
    font-size: 30px;
  }
}
body .ready-launch .container .row .main-content .primary-heading .heading-blue {
  color: #060682;
}
body .ready-launch .container .row .main-content .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .ready-launch .container .row .main-content .primary-description {
    font-size: 16px;
  }
  body .ready-launch .container .row .main-content .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .ready-launch .container .row .main-content .primary-description {
    font-size: 14px;
  }
}
body .ready-launch .container .row .main-content .main-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: self-start;
}
body .ready-launch .container .row .main-content .main-btns .btn-view-plans {
  display: inline-block;
  background-color: #ffffff;
  color: #121212;
  border: 1px solid rgba(0, 119, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
body .ready-launch .container .row .main-content .main-btns .btn-view-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
body .ready-launch .container .row .main-content .main-btns .btn-view-plans:hover {
  border-color: #0077FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 119, 255, 0.15);
  color: #0077FF;
}
body .ready-launch .container .row .main-content .main-btns .btn-view-plans:hover::before {
  left: 100%;
}
body .ready-launch .container .row .main-content .main-btns .btn-view-plans:active {
  transform: translateY(0);
}
body .ready-launch .container .row .main-content .main-btns .account-btn {
  background-color: #060682;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}
body .ready-launch .container .row .main-content .main-btns .account-btn:hover {
  background-color: #1d6fef;
}
body .ready-launch .container .row .main-content .main-btns .account-btn a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
body .pricing-table {
  margin: 30px 0;
}
body .pricing-table .title {
  text-align: center;
}
body .pricing-table .title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .pricing-table .title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .pricing-table .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .pricing-table .title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .pricing-table .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .pricing-table .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .pricing-table .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .pricing-table .title .primary-heading {
    font-size: 30px;
  }
}
body .pricing-table .title .primary-heading .heading-blue {
  color: #060682;
}
body .pricing-table .title .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .pricing-table .title .primary-description {
    font-size: 16px;
  }
  body .pricing-table .title .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .pricing-table .title .primary-description {
    font-size: 14px;
  }
}
body .pricing-table .inner-table {
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  padding: 15px;
  margin: 10px 0;
  transition: 0.3s;
  background-color: white;
  height: -webkit-fill-available;
  cursor: pointer;
}
body .pricing-table .inner-table:hover {
  background: #060682;
  transition: 0.3s;
}
body .pricing-table .inner-table:hover div span {
  color: #fff;
}
body .pricing-table .inner-table:hover .text .popular-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .pricing-table .inner-table:hover .text .popular-plan .pricing-icon {
  margin-top: 20px;
  margin-bottom: 25px;
}
body .pricing-table .inner-table:hover .text .popular-plan .pricing-icon i {
  background-color: white;
}
body .pricing-table .inner-table:hover .text .popular-plan .primary-badge {
  background-color: #060682;
  border-color: white;
}
body .pricing-table .inner-table:hover .text .popular-plan .primary-badge .badge-title {
  color: white;
}
@media (max-width: 767px) {
  body .pricing-table .inner-table:hover .text .popular-plan .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .pricing-table .inner-table:hover .text .pricing-icon {
  margin-top: 20px;
  margin-bottom: 25px;
}
body .pricing-table .inner-table:hover .text .pricing-icon i {
  background-color: white;
}
body .pricing-table .inner-table:hover .text h5 {
  color: white;
}
body .pricing-table .inner-table:hover .saving-link h6 {
  border: 1px solid #07F;
  background-color: white;
  color: #07F;
}
body .pricing-table .inner-table:hover .saving-link p {
  color: white;
}
body .pricing-table .inner-table:hover .pricing-rate {
  border-top: 1px dashed white;
}
body .pricing-table .inner-table:hover .pricing-rate h4 {
  color: white;
}
body .pricing-table .inner-table:hover .pricing-rate h4 span {
  color: white;
}
body .pricing-table .inner-table:hover .pricing-rate p {
  color: white;
}
body .pricing-table .inner-table:hover p {
  color: white;
}
body .pricing-table .inner-table:hover .details p {
  color: white;
}
body .pricing-table .inner-table:hover .details i {
  color: white;
}
body .pricing-table .inner-table:hover .get-started-btn button {
  background-color: white;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  color: #060682;
  width: 231px !important;
  border: 1px solid transparent;
  text-align: center;
}
body .pricing-table .inner-table .text .popular-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px !important;
}
body .pricing-table .inner-table .text .popular-plan .pricing-icon {
  margin-top: 20px;
  margin-bottom: 25px;
}
body .pricing-table .inner-table .text .popular-plan .pricing-icon i {
  color: #060682;
  background: rgba(0, 119, 255, 0.1019607843);
  border-radius: 6px;
  padding: 8px 10px;
}
body .pricing-table .inner-table .text .popular-plan .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
body .pricing-table .inner-table .text .popular-plan .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .pricing-table .inner-table .text .popular-plan .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .pricing-table .inner-table .text .pricing-icon {
  margin-top: 20px;
  margin-bottom: 25px;
}
body .pricing-table .inner-table .text .pricing-icon i {
  color: #060682;
  background: rgba(0, 119, 255, 0.1019607843);
  border-radius: 6px;
  padding: 8px 10px;
}
body .pricing-table .inner-table .text .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
}
body .pricing-table .inner-table .text .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  body .pricing-table .inner-table .text .primary-badge .badge-title {
    font-size: 14px;
  }
}
body .pricing-table .inner-table .text h5 {
  font-size: 24px;
  font-weight: 600;
  color: #121f30;
}
body .pricing-table .inner-table .saving-link {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
body .pricing-table .inner-table .saving-link h6 {
  padding: 10px 20px;
  background-color: #0077FF;
  color: white;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #0077FF;
  border-radius: 5px;
}
body .pricing-table .inner-table .saving-link p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  text-decoration: line-through;
}
body .pricing-table .inner-table .pricing-rate {
  padding-bottom: 10px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px dashed grey;
}
body .pricing-table .inner-table .pricing-rate h4 {
  font-weight: 700;
  font-size: 27px;
  color: #333333;
}
body .pricing-table .inner-table .pricing-rate h4 span {
  font-weight: 400;
  color: #121212;
  font-size: 18px;
}
body .pricing-table .inner-table .pricing-rate p {
  font-weight: 500;
  color: #333333;
}
body .pricing-table .inner-table p {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 5px;
}
body .pricing-table .inner-table .details {
  display: flex;
  gap: 20px;
  line-height: 2;
  align-items: start;
}
body .pricing-table .inner-table .details i {
  color: #060682;
  font-size: 20px;
}
body .pricing-table .inner-table .details p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
body .pricing-table .inner-table .get-started-btn {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
body .pricing-table .inner-table .get-started-btn button {
  background-color: white;
  padding: 12px 16px;
  border-radius: 12px;
  color: #121f30;
  width: 231px;
  border: 1px solid #dedfe4;
  box-shadow: 0px -2px 1px 0px rgba(0, 0, 0, 0.1019607843) inset;
  box-shadow: 0px 1px 1px -3px rgba(0, 0, 0, 0.1215686275);
  box-shadow: 0px 0px 0px 1px #e1e1e1;
  text-align: center;
}
body .clients-logo {
  margin: 30px 0;
}
body .clients-logo .client-bg {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  body .clients-logo .client-bg {
    padding: 10px;
  }
}
body .clients-logo .client-bg .img img {
  width: 100%;
}
body .portfolio-header {
  text-align: center;
  margin: 70px 0;
}
@media (max-width: 767px) {
  body .portfolio-header {
    margin: 40px 0px;
  }
}
body .portfolio-header .title span {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 65px;
  border: 1px solid #060682;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0 4px 28.1px 0 rgba(0, 119, 255, 0.1);
  color: #060682;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
body .portfolio-header .title h1 {
  font-size: 48px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}
body .portfolio-header .title h1 span {
  color: #060682;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: inherit;
  font-weight: inherit;
  display: inline;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  body .portfolio-header .title h1 {
    font-size: 36px;
  }
}
@media (max-width: 490px) {
  body .portfolio-header .title h1 {
    font-size: 30px;
  }
}
body .portfolio-header .title p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body .portfolio-header .title p {
    font-size: 16px;
  }
}
@media (max-width: 490px) {
  body .portfolio-header .title p {
    font-size: 15px;
  }
}
body .portfolio-tabs .nav-tabs {
  justify-content: center !important;
  gap: 25px;
  border-bottom: none !important;
  --bs-nav-tabs-border-color: none !important;
  --bs-nav-tabs-border-radius: none !important;
}
@media (max-width: 767px) {
  body .portfolio-tabs .nav-tabs {
    gap: 10px;
  }
}
body .portfolio-tabs .nav-tabs li a {
  font-size: 16px;
  border: 1px solid #07F;
  border-radius: 10px;
  color: #121212;
  padding: 10px 15px;
}
body .portfolio-tabs .nav-tabs li a:hover {
  border: 1px solid #07F;
}
@media (max-width: 767px) {
  body .portfolio-tabs .nav-tabs li a {
    padding: 10px 10px;
    font-size: 15px;
  }
}
body .portfolio-tabs .nav-tabs li .active {
  color: white;
  background: #060682;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
}
body .portfolio-tabs .tab-content .portfolio-bg {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 20px;
}
body .portfolio-tabs .tab-content .portfolio-bg .img {
  height: 350px;
  /* Frame ki height set karein */
  overflow: hidden;
  /* Baqi image chhupane ke liye */
  border-radius: 10px;
  position: relative;
}
body .portfolio-tabs .tab-content .portfolio-bg .img img {
  width: 100%;
  height: auto;
  transition: transform 3s ease-in-out;
  /* Scroll ki speed control karein */
  transform: translateY(0);
}
body .portfolio-tabs .tab-content .portfolio-bg .img:hover img {
  /* Image ko upar move karein. 
  calc(-100% + 350px) ka matlab hai image end tak jaye 
  lekin frame se bahar na nikal jaye */
  transform: translateY(calc(-100% + 350px));
}
body .contact-page-form .title {
  text-align: start;
}
body .contact-page-form .title span {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 65px;
  border: 1px solid #060682;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0 4px 28.1px 0 rgba(0, 119, 255, 0.1);
  color: #060682;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
body .contact-page-form .title h1 {
  font-size: 48px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}
body .contact-page-form .title h1 span {
  color: #060682;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: inherit;
  font-weight: inherit;
  display: inline;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  body .contact-page-form .title h1 {
    font-size: 36px;
  }
}
@media (max-width: 490px) {
  body .contact-page-form .title h1 {
    font-size: 30px;
  }
}
body .contact-page-form .title p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body .contact-page-form .title p {
    font-size: 16px;
  }
}
@media (max-width: 490px) {
  body .contact-page-form .title p {
    font-size: 15px;
  }
}
@media (max-width: 490px) {
  body .contact-page-form .title {
    text-align: center;
  }
}
body .contact-page-form .contactForm {
  text-align: start;
}
body .contact-page-form .contactForm input {
  border-radius: 6px;
  border: 1px solid #ffffff;
  padding: 10px 14px;
  color: #222121;
  background: #ffffff;
  width: 100%;
}
body .contact-page-form .contactForm input:focus-visible {
  outline: none;
  border: 1px solid #060682;
}
body .contact-page-form .contactForm input::-moz-placeholder {
  color: #000;
}
body .contact-page-form .contactForm input::placeholder {
  color: #000;
}
body .contact-page-form .contactForm select {
  border-radius: 6px;
  color: #080808;
  border: 1px solid #ffffff;
  padding: 10px 14px;
  background: #ffffff;
  width: 100%;
}
body .contact-page-form .contactForm select:focus-visible {
  outline: none;
  border: 1px solid #060682;
}
body .contact-page-form .contactForm textarea {
  border-radius: 6px;
  border: 1px solid #ffffff;
  padding: 10px 14px;
  color: #080808;
  background: #ffffff;
  width: 100%;
}
body .contact-page-form .contactForm textarea:focus-visible {
  outline: none;
  border: 1px solid #060682;
}
body .contact-page-form .contactForm textarea::-moz-placeholder {
  color: #000;
}
body .contact-page-form .contactForm textarea::placeholder {
  color: #000;
}
body .contact-page-form .contactForm button {
  background-color: #060682;
  color: white;
  padding: 10px 0;
  border-radius: 5px;
  width: 100%;
}
body .contact-page-form .map iframe {
  height: 500px;
}
body .location-sec {
  position: relative;
  margin: 80px 0;
}
body .location-sec .container .title {
  text-align: center;
  margin-bottom: 50px;
}
body .location-sec .container .title span {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #d6e4ff;
  border-radius: 25px;
  color: #060682;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 65px;
  border: 1px solid #060682;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0 4px 28.1px 0 rgba(0, 119, 255, 0.1);
}
body .location-sec .container .title h1 {
  color: #000000;
  margin-top: 20px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
}
body .location-sec .container .title h1 span {
  color: #060682;
  background: none;
  border: none;
  padding: 0;
  border-radius: none;
  box-shadow: none;
  font-size: inherit;
  font-weight: inherit;
  display: inline;
}
@media (max-width: 768px) {
  body .location-sec .container .title h1 {
    font-size: 36px;
  }
}
@media (max-width: 490px) {
  body .location-sec .container .title h1 {
    font-size: 30px;
  }
}
body .location-sec .container .global-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body .location-sec .container .global-card:hover {
  box-shadow: 0 8px 30px rgba(6, 6, 130, 0.12);
  transform: translateY(-8px);
  border-color: #e0e8ff;
}
body .location-sec .container .global-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
body .location-sec .container .global-card .card-header .img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}
body .location-sec .container .global-card .card-header .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .location-sec .container .global-card .card-header .country-info {
  flex: 1;
}
body .location-sec .container .global-card .card-header .country-info .country-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
body .location-sec .container .global-card .card-header .country-info h4 {
  color: #060682;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 490px) {
  body .location-sec .container .global-card .card-header .country-info h4 {
    font-size: 18px;
  }
}
body .location-sec .container .global-card .content {
  margin-top: 0;
}
body .location-sec .container .global-card .content .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
body .location-sec .container .global-card .content .info-item:last-child {
  margin-bottom: 0;
}
body .location-sec .container .global-card .content .info-item i,
body .location-sec .container .global-card .content .info-item .icon {
  font-size: 18px;
  color: #060682;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .location-sec .container .global-card .content .info-item i.icon-phone::before,
body .location-sec .container .global-card .content .info-item .icon.icon-phone::before {
  content: "📞";
  font-style: normal;
}
body .location-sec .container .global-card .content .info-item i.icon-email::before,
body .location-sec .container .global-card .content .info-item .icon.icon-email::before {
  content: "✉️";
  font-style: normal;
}
body .location-sec .container .global-card .content .info-item i.icon-location::before,
body .location-sec .container .global-card .content .info-item .icon.icon-location::before {
  content: "📍";
  font-style: normal;
}
body .location-sec .container .global-card .content .info-item a {
  font-size: 15px;
  color: #333333;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
  flex: 1;
}
body .location-sec .container .global-card .content .info-item a:hover {
  color: #060682;
}
body .location-sec .container .global-card .content h6 {
  color: #acacac;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body .location-sec .container .global-card .content h4 {
  color: #060682;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
body .location-sec .container .global-card .content > a {
  display: block;
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  margin-bottom: 10px;
  text-decoration: none;
}
body .location-sec .container .global-card .content > a:hover {
  color: #060682;
}
@media (max-width: 767px) {
  body .location-sec .container .global-card {
    text-align: center;
    padding: 24px;
  }
  body .location-sec .container .global-card .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body .location-sec .container .global-card .card-header .img {
    margin: 0 auto;
  }
  body .location-sec .container .global-card .card-header .country-info {
    text-align: center;
  }
  body .location-sec .container .global-card .content .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  body .location-sec .container .global-card .content .info-item i,
  body .location-sec .container .global-card .content .info-item .icon {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  body .location-sec {
    margin: 50px 0;
  }
}
@media (max-width: 490px) {
  body .location-sec {
    margin: 40px 0;
  }
}
body .checkout-searchbar .checkout-tabs .title {
  text-align: center;
}
body .checkout-searchbar .checkout-tabs .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .checkout-searchbar .checkout-tabs .title h2 {
    font-size: 28px;
  }
}
body .checkout-searchbar .checkout-tabs .title p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .checkout-searchbar .checkout-tabs .title p {
    font-size: 14px;
  }
}
body .checkout-searchbar .checkout-tabs .title span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body .checkout-searchbar .checkout-tabs .nav-tabs {
  --bs-nav-tabs-border-color: none !important;
  --bs-nav-tabs-border-radius: none !important;
  margin: 30px 0;
  gap: 2%;
  border: none;
}
body .checkout-searchbar .checkout-tabs .nav-tabs .nav-item {
  margin: 10px 0;
}
body .checkout-searchbar .checkout-tabs .nav-tabs .nav-item .nav-link {
  border: 1px solid #07F !important;
  border-radius: 25px;
  padding: 10px 35px;
  color: #121212;
}
@media (max-width: 447px) {
  body .checkout-searchbar .checkout-tabs .nav-tabs .nav-item .nav-link {
    padding: 10px 15px;
  }
}
body .checkout-searchbar .checkout-tabs .nav-tabs .nav-item .nav-link.active {
  color: white !important;
  background-color: #060682;
  border: 1px solid #07F;
}
body .package-plan-sec .title {
  text-align: center;
}
body .package-plan-sec .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .package-plan-sec .title h2 {
    font-size: 28px;
  }
}
body .package-plan-sec .title p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .package-plan-sec .title p {
    font-size: 14px;
  }
}
body .package-plan-sec .title span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body .package-plan-sec .package {
  text-align: center;
  text-align: start;
}
body .package-plan-sec .package h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .package-plan-sec .package h2 {
    font-size: 28px;
  }
}
body .package-plan-sec .package p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .package-plan-sec .package p {
    font-size: 14px;
  }
}
body .package-plan-sec .package span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body .package-plan-sec .package h2 {
  color: #333;
}
body .package-plan-sec .package-tabs {
  background: #f7f7f7;
  border-radius: 10px;
  margin: 40px 0;
  padding: 25px;
}
body .package-plan-sec .package-tabs .nav-tabs {
  --bs-nav-tabs-border-color: none !important;
  --bs-nav-tabs-border-radius: none !important;
  margin: 20px 0;
  gap: 2%;
  border: none;
}
body .package-plan-sec .package-tabs .nav-tabs .nav-item {
  margin: 10px 0;
}
body .package-plan-sec .package-tabs .nav-tabs .nav-item .nav-link {
  border: 1px solid #07F !important;
  border-radius: 5px;
  padding: 10px 35px;
  width: 300px;
  color: #121212;
}
@media (max-width: 1199px) {
  body .package-plan-sec .package-tabs .nav-tabs .nav-item .nav-link {
    width: 200px;
  }
}
@media (max-width: 767px) {
  body .package-plan-sec .package-tabs .nav-tabs .nav-item .nav-link {
    width: 100%;
  }
}
@media (max-width: 447px) {
  body .package-plan-sec .package-tabs .nav-tabs .nav-item .nav-link {
    padding: 10px 20px;
  }
}
body .package-plan-sec .package-tabs .nav-tabs .nav-item .nav-link.active {
  color: white !important;
  background-color: #060682;
  border: 1px solid #07F;
}
body .package-plan-sec .package-tabs .inner-table {
  border-radius: 6px;
  border: 2px solid #060682;
  padding: 15px;
  margin: 10px 0;
  transition: 0.3s;
  background-color: white;
  cursor: pointer;
}
body .package-plan-sec .package-tabs .inner-table:hover {
  background-color: #060682;
}
body .package-plan-sec .package-tabs .inner-table:hover .text span {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .text h5 {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .saving-link h6 {
  border: 1px solid #07F;
  background-color: white;
  color: #07F;
}
body .package-plan-sec .package-tabs .inner-table:hover .saving-link p {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .pricing-rate {
  border-bottom: 1px dashed white;
}
body .package-plan-sec .package-tabs .inner-table:hover .pricing-rate h4 {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .pricing-rate h4 span {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .pricing-rate p {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .details p {
  color: white;
}
body .package-plan-sec .package-tabs .inner-table:hover .details svg {
  background-color: white;
  fill: #060682;
}
body .package-plan-sec .package-tabs .inner-table .text span {
  font-size: 12px;
  font-weight: 600;
  color: #121212;
}
body .package-plan-sec .package-tabs .inner-table .text h5 {
  font-size: 24px;
  font-weight: 600;
  color: #060682;
}
body .package-plan-sec .package-tabs .inner-table .saving-link {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
body .package-plan-sec .package-tabs .inner-table .saving-link h6 {
  padding: 10px 20px;
  background-color: #07F;
  color: white;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #07F;
  border-radius: 5px;
}
body .package-plan-sec .package-tabs .inner-table .saving-link p {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  text-decoration: line-through;
}
body .package-plan-sec .package-tabs .inner-table .pricing-rate {
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px dashed grey;
}
body .package-plan-sec .package-tabs .inner-table .pricing-rate h4 {
  font-weight: 700;
  font-size: 27px;
  color: #060682;
}
body .package-plan-sec .package-tabs .inner-table .pricing-rate h4 span {
  font-weight: 400;
  color: #121212;
  font-size: 18px;
}
body .package-plan-sec .package-tabs .inner-table .pricing-rate p {
  font-weight: 500;
}
body .package-plan-sec .package-tabs .inner-table .details {
  display: flex;
  gap: 20px;
  line-height: 2;
  align-items: baseline;
}
body .package-plan-sec .package-tabs .inner-table .details svg {
  fill: white;
  background-color: #060682;
  border-radius: 50%;
}
body .package-plan-sec .package-tabs .inner-table .details p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
body .package-plan-sec .package-tabs .proceed-btn {
  width: 100%;
}
body .package-plan-sec .package-tabs .proceed-btn button {
  width: 100%;
  background-color: #060682;
  padding: 10px 0;
  border-radius: 5px;
  color: white;
  text-align: center;
  border: 1px solid transparent;
}
body .cloud-account-sec {
  margin: 30px 0;
}
body .cloud-account-sec .title {
  text-align: center;
}
body .cloud-account-sec .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .cloud-account-sec .title h2 {
    font-size: 28px;
  }
}
body .cloud-account-sec .title p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .cloud-account-sec .title p {
    font-size: 14px;
  }
}
body .cloud-account-sec .title span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body .cloud-account-sec .login-tabs {
  margin: 30px 0;
}
body .cloud-account-sec .login-tabs .nav-pills {
  justify-content: center;
}
body .cloud-account-sec .login-tabs .nav-pills .row {
  width: 100%;
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item {
  width: 100%;
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link {
  background-color: #f7f7f7;
  width: 100%;
  margin: 10px 0;
  border-radius: 6px;
  padding: 20px 65px;
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link span {
  font-size: 16px;
  font-weight: 400;
  color: black;
}
@media (max-width: 992px) {
  body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link span {
    font-size: 14px;
  }
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link h1 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 1200px) {
  body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link h1 {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .nav-link h1 {
    font-size: 18px;
  }
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .active {
  background-color: #060682;
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .active span {
  color: white;
}
body .cloud-account-sec .login-tabs .nav-pills .row .nav-item .active h1 {
  color: white;
}
body .cloud-account-sec .login-tabs .tab-content {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 20px;
}
body .cloud-account-sec .login-tabs .tab-content .title {
  text-align: center;
}
body .cloud-account-sec .login-tabs .tab-content .title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #060682;
}
@media (max-width: 767px) {
  body .cloud-account-sec .login-tabs .tab-content .title h2 {
    font-size: 28px;
  }
}
body .cloud-account-sec .login-tabs .tab-content .title p {
  color: #121212;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 440px) {
  body .cloud-account-sec .login-tabs .tab-content .title p {
    font-size: 14px;
  }
}
body .cloud-account-sec .login-tabs .tab-content .title span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #07F;
}
body footer {
  background: #060682;
  padding: 50px 0;
}
body footer .container .row .footer-logo {
  padding-bottom: 25px;
}
body footer .container .row .footer-address {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
}
body footer .container .row .footer-address p {
  color: white;
}
body footer .container .row .footer-address .main-address a {
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
body footer .container .row .footer-head-title {
  margin-bottom: 30px;
}
body footer .container .row .footer-head-title h4 {
  color: white;
  font-size: 22px;
  font-weight: 700;
}
body footer .container .row .footer-content p {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}
body footer .container .row .footer-icons {
  line-height: 1;
}
body footer .container .row .footer-icons ul {
  padding-left: 0px;
}
body footer .container .row .footer-icons ul li {
  list-style: none;
  padding-bottom: 20px;
}
body footer .container .row .footer-icons ul li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}
body footer .container .row .footer-icons ul li a:hover {
  text-decoration: underline;
}
body footer .container .row .footer-icons ul li .text-decoration-icon {
  text-decoration: none;
  text-align: start;
}
body .footer-bar {
  background: #0077FF;
  padding: 8px 0px;
  text-align: center;
}
body .footer-bar a {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: white;
  text-decoration: none;
}
body .hero-section {
  padding: 55px 0px;
}
body .hero-section .dot-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 119, 255, 0.12);
  border: 1px solid #060682;
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border-radius: 30px;
  padding: 8px 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 22px;
}
body .hero-section .dot-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #060682;
  border-radius: 50%;
  flex-shrink: 0;
}
body .hero-section .dot-badge .badge-title {
  font-size: 16px;
  font-weight: 500;
  color: #060682;
}
@media (max-width: 767px) {
  body .hero-section .dot-badge .badge-title {
    font-size: 14px;
  }
}
body .hero-section .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  body .hero-section .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  body .hero-section .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  body .hero-section .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  body .hero-section .primary-heading {
    font-size: 30px;
  }
}
body .hero-section .primary-heading .heading-blue {
  color: #060682;
}
body .hero-section .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  body .hero-section .primary-description {
    font-size: 16px;
  }
  body .hero-section .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  body .hero-section .primary-description {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  body .hero-section {
    padding: 25px 0px;
  }
}
body .hero-section .main-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
body .hero-section .main-content .btn-view-plans {
  display: inline-block;
  background-color: #ffffff;
  color: #121212;
  border: 1px solid rgba(0, 119, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
body .hero-section .main-content .btn-view-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
body .hero-section .main-content .btn-view-plans:hover {
  border-color: #0077FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 119, 255, 0.15);
  color: #0077FF;
}
body .hero-section .main-content .btn-view-plans:hover::before {
  left: 100%;
}
body .hero-section .main-content .btn-view-plans:active {
  transform: translateY(0);
}
body .hero-section .main-content .primary-badge {
  width: -moz-max-content;
  width: max-content;
}
body .hero-section .about-image {
  display: flex;
  justify-content: end;
}
@media (max-width: 900px) {
  body .hero-section .about-image {
    justify-content: center;
    margin-top: 30px;
  }
}
body .hero-section .search-btn {
  display: flex;
  align-items: center;
  border: 1.5px solid #060682;
  border-radius: 10px;
  overflow: hidden;
  max-width: 505px;
  width: 100%;
  margin-top: 12px;
}
body .hero-section .search-btn .search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 20px;
  font-size: 16px;
  background: transparent;
  color: var(--Body-Text, #333);
  min-width: 0;
}
body .hero-section .search-btn .search-button {
  background-color: #060682;
  color: #ffffff;
  border: none;
  padding: 11px 35px;
  border-radius: 6px;
  font-size: 18px;
  font-family: sans-serif;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
body .hero-section .search-btn .search-button:hover {
  background-color: #0000a0;
}
@media (max-width: 480px) {
  body .hero-section .search-btn .search-input {
    padding: 11px 12px;
    font-size: 14px;
  }
  body .hero-section .search-btn .search-button {
    padding: 11px 20px;
    font-size: 16px;
  }
}

#faqs-new {
  position: relative;
  bottom: 70px;
}
#faqs-new .container .row .top-content {
  text-align: center;
}
#faqs-new .container .row .top-content .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
#faqs-new .container .row .top-content .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  #faqs-new .container .row .top-content .primary-badge .badge-title {
    font-size: 14px;
  }
}
#faqs-new .container .row .top-content .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  #faqs-new .container .row .top-content .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  #faqs-new .container .row .top-content .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  #faqs-new .container .row .top-content .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  #faqs-new .container .row .top-content .primary-heading {
    font-size: 30px;
  }
}
#faqs-new .container .row .top-content .primary-heading .heading-blue {
  color: #060682;
}
#faqs-new .container .row .top-content .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  #faqs-new .container .row .top-content .primary-description {
    font-size: 16px;
  }
  #faqs-new .container .row .top-content .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  #faqs-new .container .row .top-content .primary-description {
    font-size: 14px;
  }
}
#faqs-new .container .row .accordion .accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button {
  color: #121212;
  font-family: "Outfit", sans-serif;
  background: #FFF;
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
  padding: 20px 40px;
}
@media (max-width: 500px) {
  #faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 24px 14px;
  }
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: #FFF;
  background-repeat: no-repeat;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button {
  position: relative;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button i {
  margin-left: auto;
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #000;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button i::before {
  font-size: 20px;
}
@media (max-width: 500px) {
  #faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button i::before {
    font-size: 20px;
  }
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button i::after {
  display: none;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button.collapsed i {
  transform: rotate(0deg);
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
  color: #060682;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  content: "";
  display: none;
}
#faqs-new .container .row .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  display: none;
}
#faqs-new .container .row .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: #FFF;
  overflow: hidden;
  color: #707070;
  text-align: justify;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 64px;
  padding: 0 40px 20px;
  position: relative;
}
#faqs-new .container .row .accordion .accordion-item .accordion-collapse .accordion-body li {
  color: #707070;
  list-style: number;
  padding: 3px 0px;
}

.title {
  text-align: center;
}
.title .primary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.2);
  box-shadow: 0px 4px 28.1px 0px rgba(0, 119, 255, 0.1019607843);
  border: 1px solid #060682;
  border-radius: 25px;
  padding: 6px 18px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
.title .primary-badge .badge-title {
  font-size: 16px;
  font-weight: 400;
  color: #060682;
}
@media (max-width: 767px) {
  .title .primary-badge .badge-title {
    font-size: 14px;
  }
}
.title .primary-heading {
  font-size: 48px;
  font-weight: 500;
  color: #121212;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 1199px) {
  .title .primary-heading {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .title .primary-heading {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .title .primary-heading {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .title .primary-heading {
    font-size: 30px;
  }
}
.title .primary-heading .heading-blue {
  color: #060682;
}
.title .primary-description {
  font-size: 16px;
  color: var(--Body-Text, #333);
  font-weight: 400;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .title .primary-description {
    font-size: 16px;
  }
  .title .primary-description br {
    display: none;
  }
}
@media (max-width: 440px) {
  .title .primary-description {
    font-size: 14px;
  }
}

/* Cart Header Styles */
.cart-btn {
  cursor: pointer;
}

.cart-btn a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cart-btn a:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

.cart-dropdown {
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
}

.cart-items-list {
  max-height: 300px;
  overflow-y: auto;
}

.cart-item-dropdown {
  transition: background-color 0.2s;
}

.cart-item-dropdown:hover {
  background-color: #f8f9fa;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
}

#cartBadge,
#cartBadgeMobile {
  font-size: 0.7rem;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-dropdown {
    max-width: 100vw !important;
    min-width: 300px !important;
  }
}
.pricing-table {
  position: relative;
}
@media (max-width: 1024px) {
  .pricing-table {
    padding-bottom: 30px !important;
  }
}
@media (min-width: 992px) {
  .pricing-table .row.pricing-slider {
    display: flex !important;
    flex-wrap: wrap;
  }
  .pricing-table .row.pricing-slider .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    display: block !important;
  }
}
@media (max-width: 991px) {
  .pricing-table .row.pricing-slider {
    display: block;
    margin-bottom: 40px;
  }
}
.pricing-table .row.pricing-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.pricing-table .row.pricing-slider .col-lg-3 {
  padding: 0 10px;
  float: none;
  height: auto;
  display: flex !important;
}
.pricing-table .row.pricing-slider .col-lg-3 .inner-table {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-table .slick-dots {
  display: none !important;
}
@media (max-width: 991px) {
  .pricing-table .slick-dots {
    display: block !important;
    bottom: -50px;
  }
}
.pricing-table .slick-dots li button:before {
  font-size: 12px;
  color: #000;
  opacity: 0.2;
}
.pricing-table .slick-dots li.slick-active button:before {
  color: #007bff;
  opacity: 1;
}
@media (max-width: 768px) {
  .pricing-table .slick-prev,
  .pricing-table .slick-next {
    display: none !important;
  }
}
#currency-switcher:focus-visible {
  outline: none;
}
/*# sourceMappingURL=style.css.map */