@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #001bb7;
  --main-color-two: #e62727;
  --secondary-color: #cce5ff;
  --heading-color: #272b2e;
  --paragraph-color: #5b6880;
  --body-font-size: 15px;
  --line-height30: 30px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: "Inter" !important;
  scroll-behavior: smooth;

}

.sidebar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}


* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: "Inter" !important;
  font-size: var(--body-font-size);

}

/* Top navigation styling */
.top-nav {
  background-color: #f8f9fa;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
}

.top-nav a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #057a96;
}

.top-nav .divider {
  color: #dee2e6;
  margin: 0 5px;
}

.top-nav .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-nav .nav-right a {
  margin: 0 8px;
  white-space: nowrap;
}

.top-nav .speed-test {
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.top-nav .speed-test:hover {
  background-color: #0c3f7c;
  color: white;
}

.nav-right-content ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-right-content li {
  margin-left: 20px;
  position: relative;
}

.nav-right-content .search {
  margin-top: 6px !important;
}

/* h1 {
  font-size: 65px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 46px;
  line-height: 1.2380952381;
}

h3 {
  font-size: 36px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.2380952381;
}

h6 {
  font-size: 22px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  line-height: var(--line-height30);
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #0694B7;
} */

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

.desktop-center-item {
  display: flex;
  align-items: center;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

code {
  color: #faa603;
}

.border-none {
  border: 0 !important;
}

.gray-bg {
  background: #f5f8ff;
}

.blue-bg {
  background: #01358d;
}

.dark-bg {
  background-color: #111d5c;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #8f98a8;
}

.bg-none {
  background: none;
}

.bg-none:after {
  display: none;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}

.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "";
  color: var(--main-color-one);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
  color: var(--main-color-one);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-gray {
  background: #f5f8ff;
}

.pd-top-30 {
  padding-top: 30px;
}

.pd-top-40 {
  padding-top: 40px;
}

.pd-top-50 {
  padding-top: 50px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-top-90 {
  padding-top: 90px;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-top-105 {
  padding-top: 105px;
}

.pd-top-110 {
  padding-top: 110px;
}

.pd-top-112 {
  padding-top: 30px;
}

.pd-top-115 {
  padding-top: 115px;
}

.pd-top-120 {
  padding-top: 20px;
}

.pd-top-135 {
  padding-top: 135px;
}

.pd-top-150 {
  padding-top: 150px;
}

.pd-top-170 {
  padding-top: 170px;
}

.pd-top-190 {
  padding-top: 190px;
}

.pd-bottom-65 {
  padding-bottom: 65px;
}

.pd-bottom-90 {
  padding-bottom: 90px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}

.pd-bottom-120 {
  padding-bottom: 20px;
}

.pd-default-120 {
  padding: 20px 0;
}

.pd-default-two {
  padding: 110px 0 120px 0;
}

.mg-top-40 {
  margin-top: 40px;
}

.mg-top-45 {
  margin-top: 45px;
}

.mg-top-60 {
  margin-top: 60px;
}

.mg-top-65 {
  margin-top: 65px;
}

.mg-top-75 {
  margin-top: 75px;
}

.mg-top-80 {
  margin-top: 80px;
}

.mg-top-100 {
  margin-top: 10px;
}

.mg-top-105 {
  margin-top: 105px;
}

.mg-top-110 {
  margin-top: 110px;
}

.mg-top-120 {
  margin-top: 20px;
}

.mg-top-135 {
  margin-top: 135px;
}

.mg-top-170 {
  margin-top: 170px;
}

.mg-bottom-30 {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li+li {
  margin: 0 5px;
}

.blog-pagination {
  display: block;
  width: 100%;
}

.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type="submit"] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type="submit"]:hover {
  background-color: #121a2f;
}



@media all and (max-width: 1500px) {
  :root {
    --body-font-size: 14px;
    --line-height30: 1.9;
  }
}

@media all and (min-width: 1500px) {

  .custom-gutters-60>.col,
  .custom-gutters-60>[class*="col-"] {
    padding-right: 29px;
    padding-left: 29px;
  }
}

@media all and (min-width: 576px) {

  .custom-gutters-16>.col,
  .custom-gutters-16>[class*="col-"] {
    padding-right: 6px;
    padding-left: 6px;
  }

  .custom-gutters-18>.col,
  .custom-gutters-18>[class*="col-"] {
    padding-right: 9px;
    padding-left: 9px;
  }

  .custom-gutters-20>.col,
  .custom-gutters-20>[class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }

  .custom-gutters-28>.col,
  .custom-gutters-28>[class*="col-"] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content>.alignwide {
  max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
  margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
  border-left: 4px solid #000;
  padding-left: 1em;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

/*---------------------
    ## Breadcumb 
----------------------*/
.breadcrumb-area {
  position: relative;
  background-image: url(../img/bg/breadcrumb-bg.jpg);
  text-align: center;
  padding: 194px 0 114px;
  background-size: cover;
  z-index: 1;
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.breadcrumb-area .page-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 1.38px;
  color: white;
  margin-bottom: 15px;
}

.breadcrumb-area .page-list {
  margin: 0;
  padding: 0;

}

.breadcrumb-area .page-list li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.32px;
  color: white;
  list-style: none;
  display: inline-block;
  position: relative;
  padding-left: 10px;
}

.breadcrumb-area .page-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f054";
  font-size: 12px;
  line-height: 1;
  top: 7px;
  font-family: "fontawesome";
}

.breadcrumb-area .page-list li:first-child {
  padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
  display: none;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 45px;
}

.comments-area .comments-title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #01358d;
}

.comments-area .comments-title span {
  font-size: 18px;
  line-height: 24px;
  color: #97a1b3;
}

.comments-area .comment-list .comment-respond {
  margin-bottom: 30px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  margin-bottom: 20px;
}

.comments-area .comment-list li {
  margin-bottom: 55px;
}

.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.comments-area .comment-list li ul {
  list-style: none;
}

.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style-type: none;
  list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
  display: flex;
  align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 35px;
  height: 75px;
  width: 75px;
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.14px;
  margin-bottom: 18px;
  color: #97a1b2;
}

.comments-area .comment-list li .single-comment-wrap .content {
  flex: 1;
  position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 6px;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  color: #5b6880;
  word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
  transition: 0.4s;
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
  color: #01358d;
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.comments-area .form-submit {
  margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
  min-height: 160px;
  resize: none;
  line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  box-shadow: none;
}

.comment-form .form-group .form-control {
  height: 50px;
  line-height: 50px;
  border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
  height: 50px;
  width: auto;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--main-color-one);
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: #fff;
}

.comment-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.comment-respond {
  /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
  margin-top: 30px;
}

.comment-form-cookies-consent input[type="checkbox"] {
  margin-right: 5px;
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/


/******* site bar widget ********/
.sidebar-area {
  border: 1px solid #e4e7eb;
  padding: 55px 68px 0 68px;
}

.sidebar-area .widget {
  margin-bottom: 65px;
}

.widget-title {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.28;
  color: #0694B7;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}

.widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #e4e7eb;
}

.shop-sidebar .widget-title {
  font-size: 24px;
  margin-bottom: 25px;
}

.shop-sidebar .widget-title:after {
  display: none;
}

.widget_search .search-form {
  position: relative;
  background: #f5f5f5;
  border-radius: 4px;
}

.widget_search .search-form input {
  letter-spacing: 0.3px;
  color: #5b6880;
  width: 100%;
  font-size: var(--body-font-size);
  font-weight: 400;
  border: 0;
  background: transparent;
  padding: 0 60px 0 24px;
  height: 52px;
  line-height: 52px;
}

.widget_search .search-form button {
  position: absolute;
  right: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  padding: 0 23px;
  height: 52px;
  line-height: 52px;
  top: 0;
  right: 0;
}

.widget_search .search-form button i {
  color: #5b6880;
}

.widget_search .search-form button:active,
.widget_search .search-form button:focus {
  box-shadow: none;
  outline: 0;
}

.widget_search.style-two .search-form {
  border-radius: 35px;
}

.widget_search.style-two .search-form input {
  padding: 0 60px 0 28px;
}

.widget_search.style-two .search-form button {
  right: 4px;
}

.widget-recent-post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-recent-post ul li .media {
  margin-bottom: 30px;
  align-items: center;
}

.widget-recent-post ul li .media .media-body {
  margin-left: 16px;
}

.widget-recent-post ul li .media .media-body .title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0;
  color: #01358d;
  margin-bottom: 5px;
}

.widget-recent-post ul li .media .media-body .post-date {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

.widget-recent-post ul li:last-child .media {
  margin-bottom: 0;
}

.widget_categories ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 19px;
}

.widget_categories ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border: 2px solid #97a1b3;
  border-radius: 50%;
}

.widget_categories ul li a {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.96;
  color: #5b6880;
}

.widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget_categories.product_category ul {
  padding-left: 0;
}

.widget_categories.product_category ul li {
  padding-left: 0;
  margin-bottom: 10px;
}

.widget_categories.product_category ul li a {
  font-size: 15px;
  font-weight: 400;
}

.widget_categories.product_category ul li:before {
  display: none;
}

.widget_archive ul {
  list-style: none;
  margin: 0;
  padding: 0 14px;
}

.widget_archive ul li {
  border-bottom: 1px solid #e4e7eb;
  padding-bottom: 5.5px;
  margin-bottom: 12.5px;
  position: relative;
  padding-left: 34px;
}

.widget_archive ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  font-family: FontAwesome;
  background-repeat: no-repeat;
  background-size: 100%;
}

.widget_archive ul li a {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.96px;
  color: #5b6880;
}

.widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-gallery .thumb {
  margin-bottom: 16px;
  display: block;
}

.widget-newslatter .newsletter-subcribe {
  margin-top: 0px;
}

/********* shop sidebar *********/
.shop-sidebar {
  padding: 0 0 0 45px;
  border: 0;
}

.widget-product-sorting .slider-product-sorting {
  height: 3px;
  border-radius: 0;
  background: #e4e7eb;
  border: 0 !important;
  margin: 0 10px 25px 10px;
}

.widget-product-sorting .slider-product-sorting .ui-slider-range {
  background: var(--main-color-one);
}

.widget-product-sorting .slider-product-sorting .ui-slider-handle {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: var(--main-color-one);
  border: 0 !important;
  top: -4px;
  cursor: pointer;
}

.widget-product-sorting label,
.widget-product-sorting input {
  font-size: 15px;
  letter-spacing: 0.15px;
  color: var(--main-color-one);
  border: 0;
  background: transparent;
  margin-bottom: 0;
  line-height: 36px;
}

.widget-product-sorting label:focus,
.widget-product-sorting input:focus {
  border: 0;
}

.widget-product-sorting button {
  height: 35px;
  line-height: 37px;
  padding: 0 25px;
  background: var(--main-color-one);
  font-size: 14px;
  letter-spacing: 0.42px;
  color: #fff;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.widget-product-sorting button:focus {
  outline: 0;
}

.widget-product ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-product ul li .media {
  margin-bottom: 28px;
  align-items: center;
}

.widget-product ul li .media .media-body {
  margin-left: 25px;
}

.widget-product ul li .media .media-body .title {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4;
  color: #01358d;
  margin-bottom: 14px;
  font-weight: 400;
}

.widget-product ul li .media .media-body .product-price {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.widget-product ul li:last-child .media {
  margin-bottom: 0;
}

.widget_tag_cloud .tagcloud a {
  font-size: var(--body-font-size);
  font-style: italic;
  letter-spacing: 0.3px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.3s ease-in;
}

.widget-newslatter .newsletter-subcribe .form-group .subcribe-submit {
  font-size: 15px;
}

/********* widget job details *********/
.widget-job-details {
  background: #fff;
  box-shadow: 0px 2px 50px #97a1b229;
  border-radius: 8px;
  padding: 70px 38px;
}

.widget-job-details .widget-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding-bottom: 15px;
  margin-bottom: 32px;
}

.widget-job-details .single-job-details {
  margin-bottom: 25px;
}

.widget-job-details .single-job-details img {
  margin-top: 2px;
}

.widget-job-details .single-job-details .media-body {
  margin-left: 25.25px;
}

.widget-job-details .single-job-details .media-body h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #535764;
  margin-bottom: 10px;
}

.widget-job-details .single-job-details .media-body span {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.tagcloud a {
  background: #2b71e8;
  height: 26px;
  line-height: 26px;
  padding: 0 10px;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  border-radius: 3px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar.navbar-area.white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
  display: none;
}

.navbar {
  flex-direction: column;
}

.navbar-area {
  padding: 0;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 8;
  transition: all 0.3s ease-in;
}

.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 1;
}

.navbar-area .nav-container {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
  margin: 0 15px;
  line-height: 80px;
  cursor: pointer;
  color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li .cart-icon i {
  font-size: 26px;
  font-weight: 500;
}

.navbar-area.navbar-area-fixed .nav-container .responsive-mobile-menu .mobile-logo .logo {
  background-image: url(../img/logo/pocket-office-tm-final-logo.png);
}

.navbar-area .nav-container .responsive-mobile-menu .mobile-logo .custom-width {
  width: 150px;
}

.navbar-area .nav-container .responsive-mobile-menu .mobile-logo .logo {
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-image: url(../img/logo/pocket-office-tm-final-logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .desktop-logo .logo {
  background-image: url(../img/logo/pocket-office-tm-final-logo.png);
}

.navbar-area .nav-container .navbar-collapse .desktop-logo .custom-width {
  width: 280px;
}

.navbar-area .nav-container .navbar-collapse .desktop-logo .logo {
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-image: url(../img/logo/pocket-office-tm-final-logo.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;

}

.navbar-area .nav-container .nav-right-content.default-blue ul li i {
  color: #325ca3;
}

.navbar-area.navbar-area-fixed .nav-container .nav-right-content ul li i {
  color: #325ca3;
}

.navbar-area .nav-container .nav-right-content ul li i {
  color: #ffffff;
  transition: all 0.3s ease-in;
  font-weight: 700;
  font-size: 18px;
}

.navbar-area .nav-container .nav-right-content ul li li {
  line-height: normal;
  cursor: default;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
  margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
  color: #6a7795;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
  color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li:hover i {
  color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
  background-color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul .notification a {
  position: relative;
}

.navbar-area .nav-container .nav-right-content ul .notification .notification-count {
  background-color: var(--main-color-two);
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 9px;
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -9px;
}

.navbar-area .nav-container .navbar-brand .site-title {
  font-weight: 700;
  font-size: 30px;
  font-family: var(--heading-font);
  line-height: 80px;
  color: var(--heading-color);
}

.navbar-area .nav-container .desktop-logo {
  margin-right: 100px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0 23px;
  position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 61%;
  content: "";
  background: var(--main-color-two);
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.6s;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
  position: absolute;
  left: 0;
  top: 61%;
  content: "";
  background: var(--main-color-one);
  height: 1px;
  width: 100%;
  visibility: visible;
  opacity: 1;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 205px;
  margin: 0;
  list-style: none;
  left: 0;
  top: 100%;
  box-shadow: 0px 6px 20px #84848442;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  background: #fff;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 16px;
  margin-right: 0;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 5px 17px;
  font-size: 15px;
  white-space: nowrap;
  line-height: inherit;
  color: #5b6880;
  font-weight: 400;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
  padding-top: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  padding-bottom: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children a:after {
  position: absolute;
  right: 23px;
  top: 20px;
  content: "";
  font-family: "fontawesome";
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
  left: 100%;
  top: 0;
  box-shadow: 6px 6px 20px #84848442;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu a:after {
  display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.default-blue li a {
  color: #057A96;
}

.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
  color: #057A96;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  line-height: 80px;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: #0694B7;
  font-weight: 600;
}

.navbar-area-fixed {
  background: #fff;
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

@media only screen and (max-width: 991px) {

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: #01358d;
  }
}


.navbar-area-2 .nav-container .logo-wrapper .sticky-logo {
  display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .main-logo {
  display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .sticky-logo {
  display: block;
}

@media only screen and (min-width: 992px) {
  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav>li>a {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    background: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:before {
    background: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: #fff;
  }

  .navbar-area-2 .nav-container .nav-right-content ul li {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2 .nav-container .nav-right-content ul li a {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav>li>a {
    color: #01358d;
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    background: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:before {
    background: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li {
    color: #6a7795;
  }

  .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li a {
    color: #6a7795;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding-left: 6px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    padding-left: 3px;
  }

  .navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
  }

  .navbar-area .nav-container .navbar-brand {
    display: block;
  }

  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }

  .navbar-area .nav-container .mobile-logo {
    padding-left: 15px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
    padding: 0 15px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    overflow-y: auto;
    transition: height 500ms;
    scrollbar-color: #f5576c #f5f5f5;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
  }
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(151, 161, 179, 0.1);
  border-radius: 30px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar-thumb {
  background-color: #5b6880;
}

.responsive-mobile-menu .nav-right-content.default-blue li a {
  color: #01358d;
}

.responsive-mobile-menu .nav-right-content {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: inline-block;
    line-height: 80px;
  }

  .desktop-logo {
    display: none !important;
  }

  .responsive-mobile-menu {
    display: contents;
    width: 100%;
  }

  .responsive-mobile-menu .navbar-toggler {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 36px;
    outline: 0;
  }

  .nav-right-content {
    display: none;
  }

  .responsive-mobile-menu .nav-right-content {
    display: inline-block;
    float: right;
    margin-right: 55px;
    /* reduced space so icons align with toggle */
    padding-top: 6px;
  }

  .navbar-area .navbar-collapse .navbar-nav {
    background: #fff;
  }

  .navbar-area .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    display: none;
  }

  .navbar-area .navbar-collapse .navbar-nav li:before {
    display: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    border: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    line-height: 24px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
    margin-left: 0;
  }

  .navbar-area .nav-container {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    margin-top: 0;
    border-top: 1px solid rgba(151, 161, 179, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    padding: 6px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 0;
    top: 0;
    box-shadow: none;
    margin-left: 22px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 6px;
  }

  .navbar-area .navbar-toggle-icon.default-blue .line {
    background: #325ca3;
  }

  .navbar-area.navbar-area-fixed .navbar-toggle-icon .line {
    background: #325ca3;
  }

  .navbar-area .navbar-toggle-icon .line {
    height: 2px;
    width: 21px;
    background: #ffffff;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease-in;
  }

  .navbar-area .navbar-toggle-icon .line:nth-child(3) {
    margin-bottom: 0;
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    min-height: 70px;
  }

  .mobile-logo {
    display: inline-block;
    line-height: 70px;
  }

  .navbar-area .nav-container .nav-right-content ul li {
    line-height: 68px;
  }

  .responsive-mobile-menu .navbar-toggler {
    top: 31px;
  }
}

.responsive-mobile-menu .nav-right-content ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.responsive-mobile-menu .nav-right-content ul li {
  list-style: none;
  display: flex;
  align-items: center;
}

.responsive-mobile-menu .nav-right-content ul li i {
  font-size: 18px;
}

.navbar-area-2 .nav-container .nav-right-content ul li i {
  color: #fff;
}

.navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li i {
  color: #325ca3;
}

.navbar-area-2 .navbar-toggle-icon .line {
  background: #fff;
}

.navbar-area-2.navbar-area-fixed .navbar-toggle-icon .line {
  background: #325ca3;
}

.nav-style-02 {
  border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}

/*----------------------------
    Info Bar
----------------------------*/
.info-bar-area.style-three .info-bar-inner {
  padding: 10px 0 18px 0;
}

.info-bar-area.style-three .info-bar-inner .social-icon {
  margin-top: 15px;
}

.info-bar-area.style-two .info-bar-inner {
  padding: 0;
}

.info-bar-area .social-icon .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
}

.info-bar-inner {
  padding: 32px 0 35px 0;
}

.info-bar-inner div {
  display: inline-block;
}

.info-bar-inner .logo-wrapper .logo {
  margin-top: 5px;
  display: block;
}

.info-bar-inner .logo-wrapper .site-title {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
}

.info-bar-inner .right-content {
  display: inline-block;
  float: right;
}

.info-bar-inner .right-content .request-quote {
  margin-left: 40px;
}

.info-bar-inner .right-content .request-quote .rq-btn {
  padding: 15px 25px;
  background-color: var(--main-color-one);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  top: -5px;
  transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank {
  background-color: #f1f1f1;
  border-radius: 0;
  top: 0;
  padding: 15px 40px;
  color: var(--heading-color);
}

.info-bar-inner .right-content .request-quote .rq-btn.blank i {
  color: var(--main-color-one);
  transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover i {
  color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn:hover {
  background-color: var(--secondary-color);
}

.info-items {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items li {
  display: inline-block;
  margin: 0 30px;
}

.info-items li:hover .single-info-item .content .title {
  color: var(--main-color-one);
}

.info-items li:first-child {
  margin-left: 0;
}

.info-items li:last-child {
  margin-right: 0;
}

.info-items li .single-info-item {
  display: flex;
  align-self: flex-start;
}

.info-items li .single-info-item .icon {
  margin-right: 20px;
  font-size: 40px;
  line-height: 40px;
  color: var(--main-color-one);
}

.info-items li .single-info-item .content .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.3s ease-in;
}

.info-items li .single-info-item .content .details {
  font-size: 14px;
  line-height: 24px;
}

.info-items-two {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.info-items-two li {
  display: inline-block;
  margin: 0 30px;
}

.info-items-two li:hover .single-info-item .content .title {
  color: var(--main-color-one);
}

.info-items-two li:first-child {
  margin-left: 0;
}

.info-items-two li:last-child {
  margin-right: 0;
}

.info-items-two li .single-info-item {
  display: flex;
  align-self: flex-start;
}

.info-items-two li .single-info-item .icon {
  margin-right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: var(--main-color-one);
}

.info-items-two li .single-info-item .content {
  margin-top: 3px;
}

.info-items-two li .single-info-item .content .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.3s ease-in;
}

.info-items-two li .single-info-item .content .details {
  margin-left: 5px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-area {
  padding: 0 0 98px;
  position: relative;
  height: 96vh;
  overflow: hidden;
}

.header-area .slideshow-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-area .slideshow-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.header-area .slideshow-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* fade effect */
.header-area .slideshow-container .slide.active {
  opacity: 1;
  z-index: 1;
}

.header-inner {
  padding: 40px;
  max-width: 700px;
  position: absolute;
  top: 57%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.header-area .banner-slider-item {
  height: 96vh;
}

.header-area .header-inner-details {
  height: 100vh;
  display: flex;
  align-items: center;
}

.header-area .banner-thumb-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
}

.header-area .sub-title {
  font-size: 20px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 100;
  font-family: var(--poppins-font) !important;
}

.header-area .sub-title.style-two {
  color: var(--main-color-two);
}

.header-area .title {
  font-size: 65px;
  line-height: 74px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: var(--poppins-font) !important;
}

.header-area .title span {
  color: var(--main-color-two);
}

.header-area .title span.typed {
  color: inherit;
}

.header-area .title span.typed-cursor {
  color: inherit;
}

.header-area p {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 35px !important;
  visibility: visible;
}

.header-area .btn-wrapper .btn {
  font-weight: 400;
  cursor: pointer;
  color: white;
}

.header-area .btn-wrapper .btn-outline-light:hover {
  color: black;
}

.header-area .header-thumb {
  margin-top: 190px;
}

.banner-slider {
  height: 100vh;
}

.banner-slider .owl-prev {
  position: absolute;
  left: -106px;
  top: 50%;
  opacity: 0.3;
  transition: all 0.3s ease-in;
  font-size: 35px;
  color: #01358d;
}

.banner-slider .owl-prev:hover,
.banner-slider .owl-prev:active,
.banner-slider .owl-prev:focus {
  opacity: 1;
}

.banner-slider .owl-next {
  position: absolute;
  right: -106px;
  top: 50%;
  opacity: 0.3;
  transition: all 0.3s ease-in;
  font-size: 35px;
  color: #01358d;
}

.banner-slider .owl-next:hover,
.banner-slider .owl-next:active,
.banner-slider .owl-next:focus {
  opacity: 1;
}

.banner-slider .owl-dots {
  z-index: 2;
  text-align: center;
}

.banner-slider .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #e62727;
  display: inline-block;
  margin: 0 10px;
  border-radius: 50%;
  z-index: 2;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.banner-slider .owl-dots .owl-dot:after {
  content: "";
  border: 0.5px solid #e62727;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.banner-slider .owl-dots .owl-dot.active {
  background: #e62727;
}

.banner-slider .owl-dots .owl-dot.active:after {
  height: 14px;
  width: 14px;
  left: -3px;
  right: 3px;
  top: -3px;
  bottom: 3px;
  visibility: visible;
  opacity: 1;
}

.banner-slider .header-inner {
  padding-left: 10px;
}

.banner-slider .owl-item.active .s-animate-1 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-2 {
  animation: 1.5s 0.7s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-3 {
  animation: 1.5s 1s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-4 {
  animation: 1.5s 1.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-5 {
  animation: 1.5s 1.4s fadeInLeft both;
}

/********* banner one **********/
.banner-slider-one .banner-slider-item {
  margin-right: 30px;
}

.banner-slider-one .banner-thumb {
  position: relative;
}

.banner-slider-one .banner-thumb .banner-1-img2 {
  position: absolute;
  right: -30px;
  top: 0;
  width: auto !important;
  height: 58%;
}

.banner-slider-one .banner-thumb .banner-1-img3 {
  position: absolute;
  right: 50px;
  bottom: 35px;
  width: auto !important;
  z-index: -1;
  box-shadow: 0px 2px 69px #97a1b238;
}

.banner-slider-one .header-inner-img {
  width: auto !important;
  z-index: 2;
}

.banner-slider-one .owl-item.active .header-inner-img {
  animation: 1.5s 0.3s fadeInRight both;
}

.banner-slider-one .owl-item.active .banner-1-img2 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .owl-item.active .banner-1-img3 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .banner-thumb-wrap {
  float: right;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb {
  height: 88vh;
  margin-top: 60px;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb img {
  height: inherit;
}

.sba-header-area .btn-wrapper {
  margin-bottom: 35px;
}

.sba-header-area .hover a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 34px;
  padding-left: 2px;
  border: 2px solid var(--main-color-one);
  color: var(--main-color-one);
  background: #fff;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  margin-right: 22px;
}

.sba-header-area .hover a i {
  padding-left: 3px;
}

.sba-header-area .hover span {
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #01358d;
  font-weight: 500;
}

.sba-header-area .banner-thumbnail {
  margin-top: 130px;
}

.header-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/******** sbbs-header-area ********/
.sbbs-header-area {
  background-repeat: no-repeat;
  height: 104vh;
}

.sbbs-header-area .header-inner {
  padding-top: 130px;
}

.sbbs-header-area .header-inner .title {
  font-weight: 500;
  color: #fff;
  margin-bottom: 42px;
  font-size: 56px;
  line-height: 1.4;
}

.sbbs-header-area .header-inner .btn-wrapper {
  margin-bottom: 64px;
}

.sbbs-header-area .header-inner .btn-wrapper .btn {
  margin: 0 11px;
}

.sbbs-header-area .banner-thumbnail {
  position: relative;
  max-width: inherit;
  margin: 0 auto;
}

.sbbs-header-area .banner-thumbnail .hover {
  position: absolute;
  left: 50%;
  margin-left: -45px;
  top: 50%;
  margin-top: -60px;
}

.sbbs-header-area .banner-thumbnail .hover a {
  width: 90px;
  height: 90px;
  background: transparent linear-gradient(180deg, #32e2a9 0%, #29c3a2 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 16px #00644b7a;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 90px;
}

.sbbs-header-area .banner-thumbnail .hover a img {
  margin-left: 6px;
}

/********* sbtc-header-area ***********/
.sbtc-header-area {
  background-repeat: no-repeat;
  background-position: 100% 100%;
  padding: 0 0 85px;
  height: 103vh;
  background-size: cover;
}

.sbtc-header-area .header-inner .title {
  color: #fff;
}

.sbtc-header-area .header-inner p {
  color: #fff;
}

.banner-animate-thumb {
  margin-top: 295px;
  position: relative;
}

.banner-animate-thumb .header-img-2 {
  position: absolute;
  top: -160px;
  left: 0;
}

.banner-animate-thumb .header-img-3 {
  position: absolute;
  top: 81px;
  left: 30%;
}

.banner-animate-thumb .header-img-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner-animate-thumb .header-img-5 {
  position: absolute;
  left: 19px;
  bottom: 129px;
  width: 178px;
}

/********** header 6 style **********/
.sbtl-header-area {
  background: transparent radial-gradient(closest-side at 67% 50%, #01358d 0%, #002970 100%) 0% 0% no-repeat padding-box;
  padding: 0 0 60px;
}

.sbtl-header-area .banner-slider-item {
  padding-bottom: 0;
}

.sbtl-header-area .banner-slider-item .title,
.sbtl-header-area .banner-slider-item p {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-prev {
  opacity: 1;
}

.sbtl-header-area .banner-slider .owl-prev:hover {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-next {
  opacity: 1;
}

.sbtl-header-area .banner-slider .owl-next:hover {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot {
  background: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot.active {
  background: #f9556d;
}

/********** header 7 style **********/
.sbmc-header-area {
  padding: 0 0 60px;
}

.sbmc-header-area .banner-slider-item {
  padding-bottom: 0;
}

.shape1 {
  animation: MoveUpDown 20s linear infinite;
  position: absolute;
  left: 500px;
  opacity: 0.3;
}

@keyframes MoveUpDown {

  0%,
  100% {
    top: 35%;
  }

  50% {
    top: 80%;
  }
}

.shape2 {
  animation: MoveLeftRight 80s linear infinite;
  position: absolute;
  bottom: 10px;
  opacity: 0.3;
}

@keyframes MoveLeftRight {

  0%,
  100% {
    right: 25%;
  }

  50% {
    right: 75%;
  }
}

/**** home 8 ********/
.h8-banner-area {
  padding: 0 0 25px;
}

.h8-banner-area .banner-animate-thumb-2 {
  margin-top: 40px !important;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.h8-banner-area .banner-animate-thumb .header-img-2 {
  position: absolute;
  top: auto !important;
  left: auto;
}

.h8-banner-area.style-two {
  background-size: cover;
}

.h8-banner-area.style-two .title {
  font-size: 46px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 500;
}

.h8-banner-area.style-two .sub-title {
  line-height: 1.3;
}

.sbh-main-search {
  margin-top: 48px;
}

.sbh-main-search input {
  height: 50px;
  border: 0;
  width: 100%;
  padding: 0 24px;
  border-radius: 36px 0 0 36px;
}

.sbh-main-search input::placeholder {
  color: #97a1b2;
}

.sbh-main-search .search-input {
  width: 60%;
}

.sbh-main-search .single-select {
  height: 50px;
  line-height: 50px;
  width: 100px;
  border: 0;
  border-radius: 0;
  background: var(--main-color-one);
  color: #fff;
}

.sbh-main-search .single-select:after {
  border-color: #fff;
  right: 16px;
}

.sbh-main-search .single-select .list {
  width: 100%;
}

.sbh-main-search .single-select .list li {
  color: #97a1b3;
}

.sbh-main-search button {
  height: 50px;
  line-height: 50px;
  padding: 0 30px 0 20px;
  border: 0;
  cursor: pointer;
  background: var(--main-color-one);
  color: #fff;
  border-left: 1px solid #e24f65;
  border-radius: 0 36px 36px 0;
}

.sbh-main-search button:focus {
  outline: 0;
}

.domain-price {
  padding-left: 0;
  margin-top: 30px;
}

.domain-price li {
  display: inline-block;
  letter-spacing: 0.36px;
  color: #fff;
  font-family: var(--poppins-font);
  margin-right: 25px;
}

.domain-price li span {
  color: var(--main-color-two);
  margin-left: 2px;
}

/****** about header ********/
.about-header {
  background: transparent linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-area {
  height: 100vh;
  display: flex;
  align-items: center;
}

.error-page-left-img .top-image {
  animation: top-image-bounce 3s infinite ease-in-out;
  margin-bottom: 40px;
}

.error-page-left-img .top-image span {
  font-size: 66px;
  font-weight: 300;
  color: var(--main-color-one);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -20px;
}

@keyframes top-image-bounce {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.error-back-to-home a {
  background: #01358d;
  box-shadow: 0px 7px 19px #01358d7d;
  border-radius: 4px;
  font-size: var(--body-font-size);
  display: inline-block;
  padding: 0 80px;
  color: #fff;
  margin-top: 55px;
}

/*----------------------------------------
    shop style
----------------------------------------*/
.navbar-area .nav-container .nav-right-content ul li.cart {
  position: relative;
}

.navbar-area .nav-container .nav-right-content ul li.cart:hover .widget_shopping_cart_content {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.navbar-area .nav-container .nav-right-content ul li.cart .cart-icon {
  transform: rotateY(-180deg);
}

.widget_shopping_cart_content {
  position: absolute;
  right: -13px;
  top: 100%;
  margin-top: 30px;
  z-index: 99;
  width: 400px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 4px 26px #01358d17;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.widget_shopping_cart_content:after {
  content: "";
  position: absolute;
  right: 5px;
  top: -2px;
  background: #fff;
  height: 30px;
  width: 30px;
  transform: rotate(45deg);
  border-radius: 1px;
}

.widget_shopping_cart_content ul {
  margin-left: 0 !important;
  padding: 40px 25px !important;
}

.widget_shopping_cart_content ul li {
  margin: 0 0 25px !important;
  padding: 0;
  width: 100%;
  position: relative;
}

.widget_shopping_cart_content ul li .media {
  align-items: center;
}

.widget_shopping_cart_content ul li .media .media-left {
  margin-right: 18px;
}

.widget_shopping_cart_content ul li .media .title {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #5b6880;
}

.widget_shopping_cart_content ul li .media p {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.14px;
  color: #97a1b3;
  margin-bottom: 0;
}

.widget_shopping_cart_content ul li .media .price {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.28px;
  color: #5b6880;
}

.widget_shopping_cart_content ul li .remove-product {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
}

.widget_shopping_cart_content ul li:last-child {
  margin: 0 !important;
}

.widget_shopping_cart_content .total {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5b6880;
  font-weight: 500;
  border-top: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
  padding: 18px 25px;
}

.widget_shopping_cart_content .total strong {
  text-align: left;
}

.widget_shopping_cart_content .total .amount {
  float: right;
}

.widget_shopping_cart_content .buttons {
  text-align: center;
  padding: 38px 0 50px 0;
}

.widget_shopping_cart_content .buttons .button {
  height: 48px;
  line-height: 48px;
  background: #f0f0f0;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #5b6880 !important;
  display: inline-block;
  padding: 0 25px;
}

.widget_shopping_cart_content .buttons .button:hover {
  background: #ef4060;
  color: #fff !important;
  box-shadow: 0px 12px 18px #f9556d4d;
}

.riyaqas-pagination ul {
  padding-left: 0;
  margin-bottom: 0;
}

.riyaqas-pagination ul li {
  display: inline-block;
}

.riyaqas-pagination ul li .page-numbers {
  width: 36px;
  height: 36px;
  border: 1px solid #97a1b3;
  border-radius: 50%;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  letter-spacing: 0.51;
  color: #97a1b3;
  transition: all 0.3s ease-in;
  cursor: pointer;
  margin: 0 3px;
}

.riyaqas-pagination ul li .page-numbers.prev,
.riyaqas-pagination ul li .page-numbers.next {
  border: none;
}

.riyaqas-pagination ul li .page-numbers:hover,
.riyaqas-pagination ul li .page-numbers.current {
  background: #01358d;
  color: #fff;
  border: 1px solid #01358d;
}

.riyaqas-pagination ul li .page-numbers.prev:hover,
.riyaqas-pagination ul li .page-numbers.next:hover {
  background: none;
  color: #01358d;
  border: none;
}

.woocommerce-result-count {
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 0.28;
  color: #97a1b2;
}

.woocommerce-sorting-select {
  height: 42px;
  line-height: 44px;
  padding: 0 28px;
  background: #f7f7f7;
  border-radius: 35px;
  border: 0;
  font-size: 14px;
  letter-spacing: 0.28;
  color: #97a1b2;
}

.woocommerce-sorting-select span.current {
  width: 180px;
  display: block;
}

.woocommerce-sorting-select:after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  height: 7px;
  right: 28px;
  width: 7px;
}

.woocommerce-sorting-select .list {
  width: 100%;
}

.woocommerce-sorting-select .list li {
  font-size: 14px !important;
  letter-spacing: 0.28 !important;
  color: #97a1b2 !important;
  font-weight: 400 !important;
  transition: 0.4s !important;
}

.woocommerce-sorting-select .list li:hover,
.woocommerce-sorting-select .list li:focus,
.woocommerce-sorting-select .list li.selected {
  color: #01358d !important;
}

.woocommerce-sorting-select:hover,
.woocommerce-sorting-select:focus {
  border: 0;
  outline: 0;
}

.single-shop {
  text-align: center;
  margin-bottom: 50px;
}

.single-shop .thumb {
  overflow: hidden;
  position: relative;
}

.single-shop .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.single-shop .thumb .cart-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  align-items: center;
  display: inline-grid;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.single-shop .thumb .cart-btn a {
  box-shadow: 0px 14px 18px #80001369;
  border-radius: 26px;
  height: 46px;
  line-height: 46px;
  padding: 0 35px;
  display: inline-block;
}

.single-shop .thumb .cart-btn a i {
  margin-left: 10px;
}

.single-shop .thumb .product-badge {
  position: absolute;
  left: 0;
  top: 18px;
  height: 32px;
  line-height: 33px;
  padding: 0 14px 0 13px;
  font-size: var(--body-font-size);
  border-radius: 0px 16px 16px 0px;
  cursor: pointer;
  z-index: 3;
  transition: 0.4s;
  display: inline-block;
}

.single-shop .thumb:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.15);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-shop .thumb:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.15);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-shop:hover .thumb img {
  transform: rotate(6deg) scale(1.2);
}

.single-shop:hover .thumb:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.single-shop:hover .thumb:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.single-shop:hover .thumb .cart-btn {
  visibility: visible;
  opacity: 1;
}

.single-shop .content {
  padding-top: 22px;
}

.single-shop .content .rating {
  color: #ff9100;
  margin-bottom: 10px;
}

.single-shop .content a {
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.54px;
  color: #01358d;
  font-weight: 600;
  display: block;
  transition: 0.4s;
  font-family: var(--heading-font);
}

.single-shop .content a:hover {
  color: var(--main-color-one);
}

.single-shop .content .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.single-shop .content .price del {
  color: #c7cdd6;
  margin-left: 12px;
}

.single-shop.style-two {
  box-shadow: 0px 3px 18px #5b688029;
  background: #edf3f5;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 2px solid #fff;
}

.single-shop.style-two .thumb {
  padding: 20px 0;
}

.single-shop.style-two .thumb:before,
.single-shop.style-two .thumb:after {
  border-radius: 5px 5px 0 0;
}

.single-shop.style-two .content {
  padding-bottom: 20px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

/******* single product page ********/
.product-thumbnail-wrapper .product-thumbnail-carousel .single-thumbnail-item {
  margin-bottom: 16px;
  border: 0 !important;
}

.product-thumbnail-wrapper .product-thumbnail-carousel .slick-list {
  height: auto !important;
}

.product-description {
  padding: 20px 0 0;
}

.product-description .customer-review {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.28px;
  color: #97a1b3;
  margin-bottom: 20px;
  display: block;
}

.product-description .customer-review span {
  margin-left: 10px;
}

.product-description .customer-review i {
  color: #ff9100;
  margin-right: 8px;
}

.product-description .title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #01358d;
  margin-bottom: 20px;
}

.product-description .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 30px;
}

.product-description .price del {
  color: #c7cdd6;
  margin-left: 12px;
}

.product-description .content {
  font-size: var(--body-font-size);
  line-height: 27px;
  letter-spacing: 0.28px;
  color: #5b6880;
  margin-bottom: 55px;
}

.product-description .check-box-area {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.26px;
  color: #8a8a8a;
  margin-top: 50px;
  margin-bottom: 19px;
}

.product-description .check-box-area input {
  float: left;
  margin-right: 6px;
  margin-top: 1px;
}

.product-description .category {
  margin-top: 70px;
  margin-bottom: 20px;
}

.product-description .category span {
  font-size: var(--body-font-size);
  color: #01358d;
  font-weight: 500;
  margin-right: 4px;
  letter-spacing: 0.3px;
}

.product-description .category a {
  font-size: var(--body-font-size);
  color: #5b6880;
  letter-spacing: 0.3px;
}

.product-description .tags span {
  font-size: var(--body-font-size);
  color: #01358d;
  font-weight: 500;
  margin-right: 4px;
  letter-spacing: 0.3px;
}

.product-description .tags a {
  font-size: var(--body-font-size);
  color: #5b6880;
  letter-spacing: 0.3px;
}

.quantity {
  position: relative;
  display: inline-block;
}

.quantity input {
  height: 52px;
  width: 50px;
  border: 0;
  background: #f0f0f0;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: #5b6880;
  font-family: var(--raleway-font);
  text-align: center;
  margin: 0 52px;
}

.quantity .qty-button {
  height: 52px;
  width: 50px;
  border: 0;
  background: #f0f0f0;
  font-size: 33px;
  letter-spacing: 0.2px;
  color: #5b6880;
  font-family: var(--raleway-font);
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.quantity .qty-button.inc {
  position: absolute;
  right: 0;
  border-radius: 0 6px 6px 0;
  line-height: 53px;
}

.quantity .qty-button.dec {
  position: absolute;
  left: 0;
  border-radius: 6px 0 0 6px;
  line-height: 50px;
}

.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.product-information {
  padding-top: 64px;
}

.product-information ul.nav-tabs {
  border-bottom: 1px solid #e4e7eb;
  padding-bottom: 20px;
  margin-bottom: 31px;
}

.product-information ul.nav-tabs li a {
  height: 52px;
  line-height: 52px;
  background: #f0f0f0;
  border-radius: 6px;
  padding: 0 60px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #97a1b3;
  border: 0;
  transition: all 0.3s ease-in;
  margin-right: 25px;
}

.product-information ul.nav-tabs li a.active,
.product-information ul.nav-tabs li a:hover,
.product-information ul.nav-tabs li a:focus {
  background: #f9556d;
  color: #fff;
}

.product-information .tab-content .description-tab-content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  color: #5b6880;
}

.review-title {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  font-weight: 500;
  margin-bottom: 40px;
}

.single-review {
  margin-bottom: 60px;
}

.single-review .media {
  align-items: center;
  margin-bottom: 15px;
}

.single-review .media img {
  margin-right: 30px;
  box-shadow: 0px 3px 26px -8px #97a1b3;
  border-radius: 50%;
  height: 70px;
  width: 70px;
}

.single-review .media span {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  margin-bottom: 10px;
  display: block;
}

.single-review .media p {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12px;
  color: #97a1b3;
  margin-bottom: 0;
}

.single-review p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  color: #5b6880;
}

/****** checkout page ******/
.checkout-form-wrap {
  padding-right: 65px;
  position: relative;
}

.checkout-form-wrap:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #e4e7eb;
  right: -14px;
  top: 0;
}

.checkout-form-product {
  padding-left: 60px;
}

.checkout-form-product .single-cart-product .media-body p {
  font-size: 14px;
}

.checkout-title {
  border-bottom: 1px solid #d9dde4;
  margin-bottom: 35px;
}

.checkout-title h6 {
  letter-spacing: 0.22px;
  color: #5b6880;
  font-weight: 400;
}

.checkout-title span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-right: 8px;
}

.checkout-title a {
  font-size: var(--body-font-size);
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #01358d;
  font-weight: 500;
}

.payment-method ul li {
  font-size: var(--body-font-size);
  line-height: 18px;
  letter-spacing: 0.15px;
  color: #97a1b3;
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
}

.payment-method ul li img {
  margin-right: 14px;
}

.payment-method ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border: 1px solid #97a1b3;
}

.payment-method.style-two {
  box-shadow: 0px 24px 50px #4a4a4a1f;
  display: inline-block;
  padding: 20px;
  border-radius: 4px;
}

.payment-method.style-two ul,
.payment-method.style-two ul li {
  margin-bottom: 0;
  padding: 0;
}

.payment-method.style-two ul:before,
.payment-method.style-two ul li:before {
  display: none;
}

.single-cart-product {
  align-items: center;
}

.single-cart-product .media-left {
  margin-right: 25px;
}

.single-cart-product .media-body span {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #5b6880;
  margin-bottom: 9px;
  display: block;
}

.single-cart-product .media-body p {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #97a1b3;
  margin-bottom: 0;
}

.cart-close {
  cursor: pointer;
}

.cart-product-price {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.32px;
  color: #5b6880;
}

.table-responsive tr td {
  vertical-align: middle;
  padding: 0.75rem 0;
  padding-left: 24px;
  border-top: 0 !important;
  border-bottom: 1px solid #dee2e6;
}

.total-shapping-area {
  width: 300px;
  float: right;
}

.total-shapping-area .charge {
  padding-top: 25px;
}

.total-shapping-area .charge span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
}

.total-shapping-area .total-amount {
  border-bottom: 1px solid #dee2e6;
  padding-top: 30px;
  padding-bottom: 10px;
}

.total-shapping-area .total-amount span {
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #5b6880;
  font-weight: 500;
}

.total-shapping-area .total-amount span.amount {
  font-weight: 400;
}

.single-shop-related-product .section-title {
  margin-bottom: 57px;
}

/**job-position-area **/
.single-job-list {
  background: #fff;
  box-shadow: 0px 4px 20px #9398a11a;
  border-radius: 8px;
  padding: 22px 35px 22px 26px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  align-items: center;
}

.single-job-list:hover {
  box-shadow: 0px 7px 30px #9398a11c;
}

.single-job-list img {
  width: 66px;
  height: 66px;
}

.single-job-list .media-body {
  border-left: 1px solid #eeebf7;
  margin-left: 26.5px;
  padding-left: 25.5px;
}

.single-job-list .media-body h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  display: inline-block;
  margin-bottom: 12px;
}

.single-job-list .media-body span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #5b6880;
  display: block;
}

.job-apply-btn {
  background: #ffffff;
  border: 1px solid #d6dae1;
  border-radius: 4px;
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #97a1b3;
  height: 44px;
  line-height: 44px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 30px;
  display: inline-block;
  margin-bottom: 30px;
}

.job-apply-btn:hover {
  box-shadow: 0px 7px 16px #01358d6b;
  background: #01358d;
  color: #fff;
  border: 1px solid #01358d;
}

.job-apply-btn:focus,
.job-apply-btn:active {
  box-shadow: none;
  outline: 0;
}

/**job-details-area**/
.job-details-area .section-title .title {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.72px;
  border-bottom: 1px solid #01358d;
  padding: 0;
  display: inline-block;
}

.job-details-area h6.title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.24px;
  color: #0694B7;
  margin-bottom: 10px;
}

.job-details-area span {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: #5b6880;
}

.job-details-area .sub-title {
  margin-top: 26px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #0694B7;
  margin-bottom: 10px;
}

.job-details-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-details-area ul li {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  padding-left: 18px;
}

.job-details-area ul li:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  left: 0;
  top: 13px;
  border-radius: 50%;
  background: #5b6880;
}

.job-details-area .job-apply-btn {
  margin-top: 69px;
  border: 0;
  box-shadow: 0px 7px 16px #01358d6b;
  background: #0694B7;
  color: #fff;
}

.job-details-area .job-apply-btn:hover {
  opacity: 0.9;
}

.single-blog-content {
  border: 0;
  margin-bottom: 40px;
}

.single-blog-content .thumb {
  margin-bottom: 30px;
}

.single-blog-content .single-blog-details .post-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-blog-content .single-blog-details .post-meta li {
  font-size: var(--body-font-size);
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b3;
  margin-right: 3px;
  margin-bottom: 9px;
  display: inline-block;
}

.single-blog-content .single-blog-details .post-meta li i {
  margin-right: 5px;
  float: left;
  margin-top: 5px;
}

.single-blog-content .single-blog-details .post-meta li.admin {
  letter-spacing: 0.45px;
  color: #dfe5ef;
  background: #01358d;
  border-radius: 2px;
  height: 23px;
  line-height: 24px;
  padding: 0 15px;
  margin-right: 17px;
}

.single-blog-content .single-blog-details h5 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #01358d;
  margin-bottom: 21px;
  display: block;
}

.single-blog-content .single-blog-details h5 {
  margin-top: 12px;
}

.single-blog-content .single-blog-details h5 a {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #01358d;
  display: block;
}

.single-blog-content .single-blog-details p {
  font-size: var(--body-font-size);
  line-height: 27px;
  color: #5b6880;
  margin-bottom: 16px;
}

.single-blog-content .single-blog-details a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #01358d;
  transition: all 0.3s ease;
}

.single-blog-content .single-blog-details a span {
  transition: all 0.3s ease;
  position: relative;
}

.single-blog-content .single-blog-details a:hover {
  color: var(--main-color-one);
}

.single-blog-content .single-blog-details a:hover span {
  margin-left: 3px;
}

.single-blog-content .single-blog-details a i {
  font-size: 22px;
  position: absolute;
  bottom: -3px;
  right: -28px;
}

.single-blog-content.style-two .thumb img {
  width: 100%;
}

.single-blog-content.style-two .single-blog-details h5 a {
  font-size: 26px;
  line-height: 32px;
}

.single-blog-content .audio-player iframe {
  width: 100%;
  border: 0;
}

/* news css */
.clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2em;
}

.news-image-wrapper {
  height: 400px;
  overflow: hidden;
  border-radius: 5px;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-link {
  text-decoration: underline;
  color: #01358D;
  cursor: pointer;
}

/******* blog details style *******/
.post-share-area {
  border-top: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
  padding: 40px 0;
}

.post-share-area .sb-inner-title {
  font-size: 24px;
  line-height: auto;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: #01358d;
  margin-bottom: 0;
  margin-right: 30px;
}

.post-share-area .social-icon li:first-child {
  margin-left: 0;
}

.rq-blockquote {
  padding: 40px 30px 35px 30px;
  position: relative;
  margin: 13px 0 20px 0;
  background: #f1f2f6;
}

.rq-blockquote p {
  font-weight: 500;
  font-size: 18px !important;
  font-style: Italic;
  color: #515d73;
  font-family: var(--body-font);
}

/*--------------------------------------------------------------
	## content
--------------------------------------------------------------*/
/********** home 1 content **********/
.header-inner {
  padding-top: 40px;
}

.service-area {
  position: relative;
}

.service-area:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/service/bg.png");
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  background-size: auto;
  left: 94%;
  bottom: 0;
  margin-top: -150px;
  z-index: -1;
}

.sbs-what-riyaqas {
  background-repeat: no-repeat;
  background-size: 48% 100%;
}

.sbs-testimonial-section {
  margin-top: 90px;
}

.sbs-business-tool {
  background-repeat: no-repeat;
  background-size: 52% 100%;
  padding-top: 70px;
}

/********** home 2 content **********/
.sba-featute-area {
  margin-bottom: 70px;
}

.sba-header-area {
  position: relative;
  padding: 0px 0 104px;
}

.sba-header-area:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/app/banner/bg1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: 17%;
  right: 0;
  bottom: 0;
}

.sba-header-area:after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/app/banner/bg2.png);
  background-repeat: no-repeat;
  left: 0;
  top: -20px;
  background-size: 51%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.sba-manage-data-area {
  padding-top: 42px;
}

/******** home 3 centent *********/
/********* home 4 content **********/
.sbst-banner-area:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg/8h1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: contain;
  right: 0;
  bottom: 0;
}

.sbst-provide-security {
  background-repeat: no-repeat;
  background-size: 65% 100%;
  background-position: right;
  padding: 100px 0 70px 0;
}

.sbst-team-area-wrpper {
  margin-top: 92px;
}

.team-area-wrpper {
  padding: 80px 0 50px;
  position: relative;
}

.team-area-wrpper:after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/startup/team/4.png);
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/********* home 5 content *********/
.sbtc-goal-counter-area {
  position: relative;
}

.sbtc-goal-counter-area .thumb {
  position: relative;
}

.sbtc-goal-counter-area .goal-counter {
  background: #01358d;
  padding: 78px 76px 110px;
  position: absolute;
  right: -37%;
  top: 18%;
  z-index: 1;
  width: 674px;
  max-height: 454px;
}

.sbtc-goal-counter-area .goal-counter .section-title .title {
  color: #fff;
}

/********** home 6 ********/
.riyaqas-check-bg {
  position: absolute;
  z-index: -1;
  margin-top: -80px;
  width: 121%;
  margin-left: -150px;
}

.riyaqas-check-bg2 {
  position: absolute;
  z-index: -1;
  margin-top: -199px;
  width: 100%;
  margin-left: -150px;
}

.marketing-area .section-title {
  padding: 85px 80px 80px;
}

.marketing-area .section-title .title {
  color: #fff;
}

.marketing-area .section-title p {
  color: #fff;
  margin-top: 25px;
}

/*********** home 7 ***********/
.sbdm-image-gurd {
  position: relative;
}

.sbdm-image-gurd .sbdm-image-2 {
  position: absolute;
  left: 0;
  top: 90px;
}

.sbdm-image-gurd .sbdm-image-3 {
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 80%;
}

.sbdm-image-gurd2 {
  position: relative;
}

.sbdm-image-gurd2 .sbdm-image-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.sbdm-image-gurd2 .sbdm-image-3 {
  position: absolute;
  left: -40px;
  bottom: 0;
}

/******** home 8 *******/
.sb-animate-img {
  position: relative;
}

.sb-animate-img .thumb-2 {
  position: absolute;
  top: 0;
}

.h8-banner-area-bg {
  position: relative;
}

.h8-banner-area-bg:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg/8h1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: contain;
  right: 0;
  bottom: 0;
}

.comment-form-area .single-input-wrap .single-input.textarea {
  margin-bottom: 10px;
}

.comment-form-area .riyaqas-form-wrap .btn {
  padding: 0 30px;
}

.sbtc-success-section.sbst-provide-security {
  background-size: 48% 100%;
}

.accordion-h-five {
  border-top: 1px dashed #8f98a8;
  border-bottom: 1px dashed #8f98a8;
  padding-top: 70px;
  padding-bottom: 56px;
}

.about-area.sbst-provide-security {
  background-size: 50%;
}

.bg-img-right-area {
  background-position: 100%;
  background-repeat: no-repeat;
  padding: 150px 0;
  background-size: 41% 100%;
}

/*----------------------------------
    Footer Area
----------------------------------*/
.newsletter-subcribe .form-group {
  position: relative;
  margin-bottom: 0;
}

.newsletter-subcribe .form-group input {
  height: 60px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #97a1b2;
  border-radius: 30px;
  padding: 0 182px 0 38px;
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #97a1b2;
}

.newsletter-subcribe .form-group input::placeholder {
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #97a1b2;
  opacity: 0.51;
}

.newsletter-subcribe .form-group .subcribe-submit {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 54px;
  line-height: 56px !important;
  padding: 0 39px;
  font-size: 17px;
  letter-spacing: 1.02px;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 0 !important;
}

.newsletter-subcribe .form-group .subcribe-submit:hover,
.newsletter-subcribe .form-group .subcribe-submit:focus {
  opacity: 0.8;
  outline: 0;
}



.copyright-inner {
  padding-bottom: 20px;
}

.copyright-inner .copyright-text {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #acb4c1;
  line-height: 44px;
}

.copyright-inner .copyright-text a {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 500;
  display: inline-block;
  color: #acb4c1;
}

.copyright-inner .copyright-text a i {
  color: var(--main-color-one);
  padding: 0 3px 0 5px;
}

.copyright-inner .copyright-text a span {
  position: relative;
  color: #01358d;
}

.copyright-inner .copyright-text a span:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  content: "";
  background: #01358d;
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.6s;
}

.copyright-inner .copyright-text a span:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.social-icon {
  margin-bottom: 0;
  padding-left: 0;
}

.social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.social-icon li a {
  height: 42px;
  width: 42px;
  display: inline-block;
  box-shadow: 0px 3px 14px #666c752e;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  color: #5b6880;
  transition: all 0.3s ease-in;
  background: #fff;
  font-size: 16px;
}

.social-icon li .dribbble:hover {
  color: #ea4c89;
}

.social-icon li .facebook:hover {
  color: #3b5999;
}

.social-icon li .twitter:hover {
  color: #55acee;
}

.social-icon li .linkedin:hover {
  color: #0077b5;
}

.social-icon li .pinterest:hover {
  color: #c8232c;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: #0694B7;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(2, 48, 71, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color-one);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color-one);
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.search-popup .search-form {
  min-width: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  z-index: 9;
}

.search-results {
  position: absolute;
  top: 100%;
  /* directly below the input */
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  margin-top: 1px;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-results div {
  cursor: pointer;
}

.search-results div:hover {
  background: #f0f0f0;
}

.search-item {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  animation: searchFade .35s ease forwards;
  transition: .25s;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: #f6f8fc;
  transform: translateX(6px);
}

.search-title {
  font-weight: 600;
  font-size: 15px;
}

.search-desc {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}

.search-highlight {
  color: #0066ff;
  font-weight: 600;
}

@keyframes searchFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 54px;
  padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 54px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--main-color-two);
  color: #fff;
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.search-popup .search-form .submit-btn:hover {
  background-color: #5b6880;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(2, 48, 71, 0.8);
  z-index: 9;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.8;
}

/******** cart popup **********/
.cart-popup.active .order-table {
  visibility: visible;
  opacity: 1;
}

.cart-popup .order-table {
  width: 57%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0px 3px 26px #01358d0d;
  border-radius: 8px;
  z-index: 99;
  padding: 60px 44px;
}

.cart-popup .order-table .table {
  margin-bottom: 0;
}

.cart-popup .order-table .checkout-title h6 {
  color: #01358d;
  font-weight: 500;
  margin-bottom: 30px;
}

.login-register-popup.active {
  visibility: visible;
  opacity: 1;
}

.login-register-popup {
  background: #fff;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 56%;
  transition: 0.5s ease;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  overflow-y: auto;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 6px;
}

.login-register-popup .riyaqas-form-wrap {
  display: block;
  width: 100%;
  padding: 0 55px;
}

.login-register-popup .riyaqas-form-wrap .single-input-wrap label {
  line-height: unset;
}

.login-register-popup .riyaqas-form-wrap .widget-title {
  font-size: 20px;
}

.login-register-popup .riyaqas-form-wrap span,
.login-register-popup .riyaqas-form-wrap label {
  font-size: 12px;
  color: #97a1b3;
  letter-spacing: 0.24px;
}

.login-register-popup .riyaqas-form-wrap .check-box-area {
  overflow: hidden;
}

.login-register-popup .riyaqas-form-wrap .check-box-area input {
  margin-right: 5px;
  float: left;
}

.login-register-popup .riyaqas-form-wrap .check-box-area label {
  margin-bottom: 0;
  margin-top: -3px;
  float: left;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap {
  line-height: 41px;
  margin-top: 30px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap .btn {
  height: 40px;
  line-height: 41px;
  padding: 0 30px;
  border-radius: 0;
  margin-top: 0;
  margin-right: 15px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap a.signup {
  color: #01358d;
  font-size: 12px;
  border-bottom: 1px solid #01358d;
  margin-left: 5px;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.box-shadow {
  box-shadow: 0px 25px 70px #01358d1a;
}

.padding-60px {
  padding: 60px;
}

.btn-wrapper {
  display: block;
}

.btn-wrapper .btn-appstore {
  margin-right: 18px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease-in;
}

.btn-wrapper .btn-appstore:hover {
  box-shadow: 0px 15px 22px #5b68801c;
}

.btn-wrapper .btn-playstore {
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease-in;
}

.btn-wrapper .btn-playstore:hover {
  box-shadow: 0px 15px 22px #5b68801c;
}

.btn {
  height: 52px;
  line-height: 52px;
  padding: 0 48px;
  letter-spacing: 0.45px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}

.btn i {
  margin-left: 15px;
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn.btn-rounded {
  border-radius: 30px;
}

.btn.btn-radius {
  border-radius: 4px;
}

.btn-extra-small {
  height: 36px;
  line-height: 36px;
  padding: 0 30px;
  font-size: 14px;
}

.btn-small {
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  font-size: 14px;
}

.btn-large {
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
}

.btn-extra-large {
  height: 60px;
  line-height: 60px;
  padding: 0 70px;
}

.btn-transparent {
  border: 1px solid #fff;
  color: #fff;
}

.btn-transparent:hover,
.btn-transparent:focus {
  color: #5b6880;
  background: #fff;
}

.btn-no-border-radius {
  border-radius: 0;
}

.btn-border-radius {
  border-radius: 4px;
}

.btn-ex-border-radius {
  border-radius: 40px;
}

.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #5b6880;
}

.btn-white:hover,
.btn-white:focus {
  color: #fff;
  background: transparent;
}

.btn-normal {
  background: #fff;
  border: 1px solid #97a1b3;
  color: #5b6880;
}

.btn-normal:hover,
.btn-normal:focus {
  color: #97a1b3;
  background: transparent;
}

.btn-deactive {
  background: #fff;
  border: 1px solid #d6dae1;
  color: #d6dae1;
}

.btn-deactive:hover,
.btn-deactive:focus {
  color: #d6dae1;
  background: transparent;
}

.btn-green {
  background: #0694B7;
  box-shadow: 0px 11px 14px #001bb74d;
  color: #fff;
}

.btn-green:hover,
.btn-green:focus {
  opacity: 0.7;
  color: #fff;
}

.btn-blue {
  background: #0694B7;
  color: #fff;
}

.btn-blue:hover {
  opacity: 0.7;
  color: #fff;
}

.btn-red {
  background: var(--main-color-one);
  box-shadow: 0px 10px 14px #4038ea4f;
  color: #fff;
}

.btn-red:hover {
  opacity: 0.8;
  color: #fff;
}

.btn-red-border {
  background: #fff;
  border: 1px solid var(--main-color-one);
}

.btn-red-border:hover {
  opacity: 0.8;
  color: #fff;
  box-shadow: 0px 10px 14px #f524434f;
  background: var(--main-color-one);
}

.btn-gray {
  background: #f0f0f0;
  color: #97a1b3;
}

.btn-gray:hover {
  background: var(--main-color-one);
  color: #fff;
}

.single-video-play span {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.96px;
  color: #97a1b3;
  margin-right: 30px;
}

.single-video-play a {
  width: 52px;
  height: 52px;
  display: inline-block;
  background: #ff657c;
  box-shadow: 0px 10px 16px #f9556d45;
  border-radius: 50%;
  line-height: 57px !important;
  text-align: center;
  display: inline-block !important;
}

.single-video-play a i {
  color: #fff;
  font-size: 18px;
  padding-left: 5px;
}

.desktop-center {
  text-align: center;
}

.desktop-left {
  text-align: left;
}

.desktop-right {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .tablet-center {
    text-align: center;
  }

  .tablet-left {
    text-align: left;
  }

  .tablet-right {
    text-align: right;
  }
}

@media only screen and (max-width: 414px) {
  .mobile-center {
    text-align: center;
  }

  .mobile-left {
    text-align: left;
  }

  .mobile-right {
    text-align: right;
  }
}

/*----------------------------------------
  ## Section title
----------------------------------------*/
.section-title {
  margin-bottom: 16px;
}

.section-title .counting-number {
  font-size: 92px;
  font-weight: 500;
  letter-spacing: 1.84px;
  color: #5b6880;
  background: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  position: relative;
  display: inline-block;
}

.section-title .counting-number:after {
  content: "";
  position: absolute;
  height: 42px;
  width: 42px;
  background: rgba(216, 255, 243, 0.7);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -21px;
  margin-left: -21px;
  z-index: -1;
}

.section-title .title {
  letter-spacing: 0.92px;
  color: black;
  opacity: 1;
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--poppins-font);
}

.section-title .title span {
  color: var(--main-color-one);
}

.section-title .title-2 {
  font-size: 36px;
  line-height: 44px;
}

.section-title p {
  letter-spacing: 0.32px;
  color: #5b6880;
  opacity: 1;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-top: 18px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
}

.section-title a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  font-weight: 500;
  letter-spacing: 0.45px;
  color: #97a1b3;
  transition: all 0.3s ease-in;
  margin-top: 24px;
  display: inline-block;
  position: relative;
}

.section-title a img {
  margin-left: 6px;
  transition: 0.3s;
}

.section-title a:hover img {
  margin-left: 9px;
}

.section-title a.read-more i {
  font-size: 35px;
  position: absolute;
  right: -42px;
  bottom: -3px;
}

.section-title a:hover {
  color: var(--main-color-one);
}

.section-title.style-two {
  margin-bottom: 44px;
}

.section-title.style-three {
  max-width: 80%;
  margin-bottom: 45px;
}

.section-title.style-four .title {
  font-size: 36px;
  line-height: 1.2;
}

.order-now-btn {
  padding: 2px 13px;
  border-radius: 4px;
  color: #f4f4f4 !important;
  margin-right: 0 !important;
  white-space: nowrap;
}

.section-title.style-four p {
  line-height: 26px;
}

.section-title.style-five .sub-title {
  font-size: 18px;
  font-weight: 500;
}

.section-title.style-five .sub-title span {
  color: var(--main-color-one);
}

.section-title.ui-element-section-title {
  margin-bottom: 0;
}

.section-title.ui-element-section-title .title {
  font-size: 32px;
  line-height: 1.2;
  color: #5b6880;
}

.section-title.ui-element-section-title p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6880;
  position: relative;
  display: inline-block;
}

.section-title.ui-element-section-title p:after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  background: #4b4b4b;
  height: 1px;
  width: 30px;
}

.section-title-3 {
  max-width: 80%;
}

.riyaqas-check-list {
  margin-bottom: 25px;
}

.riyaqas-check-list img {
  margin-top: 5px;
  margin-right: 18px;
  width: 15px;
  height: 15px;
}

.riyaqas-check-list span {
  letter-spacing: 0.34px;
  color: #5b6880;
  font-size: 17px;
  line-height: 28px;
}

.client-slider-title {
  font-size: 32px;
  line-height: 28px;
  font-family: var(--poppins-font);
  letter-spacing: 0.64px;
  color: #5b6880;
  font-weight: 400;
}

.client-slider-title span {
  color: var(--main-color-one);
  font-weight: 500;
}

.newsletter-section {
  margin-bottom: 20px;
}

.newsletter-section .title {
  letter-spacing: 0.92px;
  color: black;
  opacity: 1;
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--poppins-font);
}

.newsletter-section p {
  letter-spacing: 0.32px;
  color: #5b6880;
  opacity: 1;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-top: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

/*-----------------------------------------
    Accordion Item
-----------------------------------------*/
/********* single accordion *********/
.single-accordion {
  border: 1px solid #f5f9ff;
  border-radius: 3px;
  margin-bottom: 14px;
}

.single-accordion .card-header {
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;

}

.single-accordion .card-header h2 button {
  font-size: 18px;
  letter-spacing: 0.32px;
  color: #0694B7;
  width: 100%;
  text-align: left;
  position: relative;
  background: #f5f9ff;
  border-radius: 3px;
  border: 0;
  padding: 19px 60px 19px 34px;
  height: auto;
  line-height: 34px;
  float: left;
  font-weight: 500;
  white-space: normal;
}

.single-accordion .card-header h2 button:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  background: #0694B7;
  top: 50%;
  right: 30px;
}

.single-accordion .card-header h2 button:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  background: #0694B7;
  top: 50%;
  transition: all 0.3s ease;
  right: 30px;
}

.single-accordion .card-header h2 button:hover,
.single-accordion .card-header h2 button:focus,
.single-accordion .card-header h2 button:active {
  text-decoration: none;
}

.single-accordion .card-header h2 button i {
  float: right;
}

.single-accordion .card-header h2 button.collapsed:before {
  transform: matrix(0, 1, -1, 0, 0, 0);
}

.single-accordion .card-body {
  padding: 21px 71px 23px 37px;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.accordion.style-two .single-accordion {
  box-shadow: 0px 10px 54px #97a1b224;
  border: 0;
}

.accordion.style-two .single-accordion .card-header h2 button {
  background: transparent;
  padding: 14px 35px 14px 55px;
  color: #5b6880;
}

.accordion.style-two .single-accordion .card-header h2 button:before,
.accordion.style-two .single-accordion .card-header h2 button:after {
  left: 30px;
  background: var(--main-color-one);
}

.accordion.style-two .single-accordion .card-header h2 button.collapsed:before,
.accordion.style-two .single-accordion .card-header h2 button.collapsed:after {
  background: #5b6880;
}

.accordion.style-two .single-accordion .card-body {
  padding: 10px 30px 35px 53px;
}

/*----------------------------------------
  ## list
----------------------------------------*/
.riyaqas-check-list {
  margin-bottom: 20px;
}

.riyaqas-check-list img {
  margin-right: 17px;
}

.riyaqas-check-list span {
  letter-spacing: 0.34px;
  color: #5b6880;
  font-size: var(--body-font-size);
  line-height: 24px;
}

.riyaqas-check-list.style-two {
  margin-bottom: 3px;
  list-style: none;
  position: relative;
}

.riyaqas-check-list.style-two:after {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  left: -15px;
  top: 9px;
  border: 1px solid var(--main-color-one);
}

.talented-pepole-list ul {
  margin-bottom: 0;
  padding-left: 0;
}

.talented-pepole-list ul li {
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0 34px;
}

.talented-pepole-list ul li h3 {
  font-size: 32px;
  font-weight: 600 !important;
  letter-spacing: 0.64px;
  color: #e62727;
  line-height: 24px;
  font-weight: 400;
}

.talented-pepole-list ul li span {
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #97a1b3;
  line-height: 24px;
}

.talented-pepole-list ul li:after {
  content: "";
  position: absolute;
  height: 50px;
  width: 1px;
  top: 0;
  right: 0;
  background: #97a1b3;
  opacity: 0.46;
}

.talented-pepole-list ul li:first-child {
  padding: 0 34 0 0px;
  padding-left: 0 !important;
}

.talented-pepole-list ul li:last-child:after {
  display: none;
}

.riyaqas-list-2 {
  padding-left: 0 !important;
}

.riyaqas-list-2 li {
  box-shadow: 0px 5px 22px #01358d2e;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 25px;
  background: #fff;
  transition: all 0.3s ease-in;
}

.riyaqas-list-2 li img {
  transition: 0.8s;
}

.riyaqas-list-2 li:first-child {
  margin-left: 0;
}

.riyaqas-list-2 li:last-child {
  margin-right: 0;
}

.riyaqas-list-2 li:hover {
  box-shadow: 0px 10px 22px #01358d2e;
}

.riyaqas-list-2 li:hover img {
  transform: rotateY(180deg);
}

.riyaqas-list-3 {
  padding-left: 0 !important;
}

.riyaqas-list-3 li {
  list-style: none;
  position: relative;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  padding-left: 34px;
  margin-bottom: 5px;
}

.riyaqas-list-3 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #01358d;
  background: #fff;
}

.riyaqas-check-list-wrap .riyaqas-check-list {
  margin-bottom: 10px;
}

.riyaqas-check-list-wrap .riyaqas-check-list img {
  margin-top: 6px;
}

.single-hosting-content {
  padding-left: 50px;
}

.single-hosting-content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
}

/******** image shape *********/
.shape-bg-image {
  padding-bottom: 30px;
}

.shape-bg-image .thumb {
  position: relative;
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../../assets/img/startup/skill/2.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}

.shape-bg-image .thumb img {
  width: 100%;
  height: 100%;
}

.shape-bg-image:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/startup/skill/3.png");
  background-repeat: no-repeat;
  left: 25px;
  top: 30px;
  background-size: 98%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.mask-bg-wrap {
  position: relative;
  padding-bottom: 30px;
}

.mask-bg-wrap .thumb {
  position: relative;
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}

.mask-bg-wrap .thumb img {
  width: 100%;
  height: 100%;
}

.mask-bg-wrap:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-size: 100%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.mask-bg-wrap.mask-bg-img-1 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-1:after {
  background-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-2 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/8h5.png");
}

.mask-bg-wrap.mask-bg-img-2:after {
  background-image: url("../../assets/img/bg/8h5.png");
  bottom: -20px;
  right: -15px;
}

/* .mask-bg-wrap.mask-bg-img-3 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/1.png");
} */

.mask-bg-wrap.mask-bg-img-3:after {
  background-image: url("../../assets/img/bg/1.png");
  bottom: -20px;
  right: -15px;
}

.riyaqas-stab .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}

.riyaqas-stab .nav-tabs .nav-link {
  border: 0 !important;
  background: transparent;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
  padding: 0 0 10px 0;
  margin: 0 50px 0 10px;
}

.riyaqas-stab .nav-tabs .nav-link:hover,
.riyaqas-stab .nav-tabs .nav-link.active {
  color: var(--main-color-one);
}

.riyaqas-stab .nav-tabs .nav-link:hover:after,
.riyaqas-stab .nav-tabs .nav-link.active:after {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.riyaqas-stab .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--main-color-one);
  height: 1px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.riyaqas-stab .riyaqas-stab-content {
  padding: 35px 0;
}

/*----------------------------------------
	## ui elements
----------------------------------------*/
.bs-popover-right {
  top: 85px !important;
  margin-left: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #424344 !important;
  box-shadow: 0px 15px 18px #00000029;
}

.bs-popover-right .arrow {
  display: none !important;
}

.bs-popover-right .popover-body {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.42px;
  color: #f6f6f6;
  padding: 30px;
}

.navbar-area-ui-element {
  position: inherit !important;
}

.single-alert {
  max-width: 536px;
  box-shadow: 0px 12px 50px #97a1b238;
  border-radius: 6px;
  padding: 70px 0 62px;
}

.single-alert .thumb {
  margin-bottom: 25px;
}

.single-alert p {
  font-size: 18px;
  letter-spacing: 0;
  color: #97a1b2;
  margin-bottom: 0;
}

.single-alert-mail-check {
  max-width: 536px;
  box-shadow: 0px 12px 50px #97a1b238;
  border-radius: 6px;
  padding: 100px 0;
  position: relative;
}

.single-alert-mail-check p {
  margin-bottom: 0;
}

.single-alert-mail-check .mail-alert-close {
  position: absolute;
  right: -22px;
  top: -20px;
  cursor: pointer;
}

.login-register-basic {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0);
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

/*--------------------------------
    ## All map 
----------------------------------*/
.worldmap-wrap {
  overflow: hidden;
  height: 360px;
}

.worldmap-wrap .world-map {
  height: 360px;
}

.worldmap-wrap .water {
  fill: none;
}

.worldmap-wrap .land {
  fill: #d9e3f1;
  stroke: #ffffff;
  stroke-width: 0.7px;
  width: 100% !important;
  margin: 0 auto;
}

/***** google map *****/
.map-area-wrap {
  box-shadow: 0px 25px 70px #01358d1a;
  border-radius: 6px;
  overflow: hidden;
}

#map {
  height: 610px;
}

.map-area-wrap .desktop-center-item {
  display: grid;
}

.contact-info {
  padding: 50px;
}

.contact-info .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.36px;
  color: #01358d;
  position: relative;
  margin-bottom: 15px;
  display: block;
}

.contact-info .sub-title {
  margin-bottom: 26px;
}

.contact-info p {
  font-size: var(--body-font-size);
  line-height: 28px;
  letter-spacing: 0.3px;
  color: #5b6880;
}

.contact-info p span {
  color: #01358d;
  font-weight: 500;
}

.more-question-area .single-service {
  padding: 96px 40px 78px 40px;
  height: 387.95px;
}

.more-question-area .single-service img {
  margin-bottom: 35px;
}

.more-question-area .single-service h6 {
  margin-bottom: 16px;
}

/*--------------------------------
    ## Video popup
----------------------------------*/
.img-with-video {
  background-position: center -2px;
  background-size: 83%;
  background-repeat: no-repeat;
}

.img-with-video .img-wrap {
  position: relative;
  text-align: center;
}

.img-with-video .img-wrap .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -33px;
  margin-top: -52px;
}

.img-with-video .img-wrap .hover img {
  width: 76px;
  height: 76px;
}

.img-with-video .img-wrap .hover a {
  position: relative;
  display: inline-block;
}

.img-with-video .img-wrap .hover a i {
  font-size: 75px;
  color: var(--main-color-one);
}

.img-with-video-2 {
  padding-top: 0;
  padding-bottom: 0;
}

/****** Vider Magnific-popup ***/
.mfp-zoom-in .mfp-container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.mfp-zoom-in {
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-in;
  transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-in;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*----------------------------------------
	## All slider
----------------------------------------*/
.sbs-testimonial-slider {
  height: 450px;
  margin-left: -250px;
  position: relative;
  padding-top: 75px;
}

.sbs-arrowleft {
  position: absolute;
  left: 120px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  color: #5B6880;
  z-index: 2;
}

.sbs-arrowleft i {
  transition: all 0.3s ease-in;
}

.sbs-arrowleft a {
  display: block;
}

.sbs-arrowleft:hover i {
  opacity: 0.7;
}

.sbs-arrowright {
  position: absolute;
  left: 140px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  color: #5B6880;
  z-index: 2;
}

.sbs-arrowright i {
  transition: all 0.3s ease-in;
}

.sbs-arrowright a {
  display: block;
}

.sbs-arrowright:hover i {
  opacity: 0.7;
}

.testimonial-slider-bg {
  background-image: url(../img/client/testimonial.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/********* home 1 client slider **********/
.choose_slider_items {
  position: relative;
}

.choose_slider_items ul {
  position: relative;
}

.choose_slider_items ul li {
  width: 500px;
  background: #ffffff;
  box-shadow: 0px 12px 36px #97a1b224;
  border-radius: 6px;
  padding: 67px 30px 55px 75px;
}

.choose_slider_items ul li img {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  background: #efefef;
  margin-right: 33px;
}

.choose_slider_items ul li .media {
  margin-bottom: 25px;
}

.testimonial-section .section-title {
  padding-left: 120px;
}

.choose_slider_items ul li .media-body h6 {
  font-size: 21px;
  letter-spacing: 0.21px;
  color: #001BB7;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 0;
}

.choose_slider_items ul li .media-body .designation {
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #808080;
  line-height: 25px;
  margin-bottom: 0;
}

.choose_slider_items ul li .media-body span i {
  color: #ffc82a;
  font-size: 12px;
}

.choose_slider_items ul li p {
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #000000;
}

.choose_slider_items .previous_item {
  top: 0;
  transform: scale(0.9, 0.9);
  left: 150px;
  padding: 67px 30px 55px 60px;
  z-index: 1;
}

.choose_slider_items .previous_item_2 {
  top: 0;
  padding: 67px 30px 55px 60px;
  transform: scale(0.7, 0.7);
  left: 32px;
}

.choose_slider_items .previous_hidden {
  top: 0;
  transform: scale(0.7, 0.7);
  padding: 67px 30px 55px 60px;
}

.choose_slider_items .current_item {
  transition: all 0.5s ease-in-out;
}

.testimonial-quote {
  position: absolute;
  left: 22%;
  top: -11%;
  color: #3E66DF33;
  font-size: 10rem;
}

/********* home 2 client slider **********/
.client-slider {
  margin-top: -10px;
  background-image: url(assets/img/client/testimonial.jpg);
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
}

.client-slider .owl-item.active.center .client-slider-item {
  box-shadow: 0px 10px 40px #97a1b238;
  transition: all 0.3s ease-in;
}

.client-slider .client-slider-item {
  background: #FFFFFF;
  box-shadow: 0px 28.93px 61.56px 0px #15151526;
  padding: 20px 45px 37px 45px;
  border-radius: 6px;
  margin: 30px 10px 45px 10px;
  transition: all 0.3s ease-in;
}

.client-slider .client-slider-item .star {
  color: #3E66DF;
  font-size: 1.5rem;
}

.client-slider .client-slider-item .testimonial-icon {
  background-color: #5D5DFF;
  color: white;
  border-radius: 50%;
  padding: 0.1rem 0.3rem;
  font-size: 0.8rem;
}

.client-slider .client-slider-item .media .media-left {
  position: relative;
  padding-top: 22px;
  margin-right: 9px;
  display: inline-block;
}

.client-slider .client-slider-item .media .media-left:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  height: 155px;
  width: 155px;
  top: -22px;
  left: -35px;
  z-index: -1;
  background-size: 100%;
}

.client-slider .client-slider-item .media .media-left.media-left-one:after {
  background-image: url("../img/client/1.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-two:after {
  background-image: url("../img/client/2.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-three:after {
  background-image: url("../img/client/3.svg");
}

.client-slider .client-slider-item .media img {
  padding-right: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
}

.client-slider .client-slider-item .media .media-body {
  margin-top: 25px;
}

.client-slider .client-slider-item .media .media-body h6 {
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin: 0px;
}

.client-slider .client-slider-item .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.42px;
  color: #5b6880;
  margin: 0px;
}

.client-slider .client-slider-item .client-content {
  font-size: var(--body-font-size);
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #000000;
}

.client-slider .owl-dots {
  text-align: center;
  line-height: initial;
}

.client-slider .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
}

.client-slider .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

/***** screenshot-slider ******/
.screenshot-slider {
  position: relative;
}

.screenshot-slider .thumb {
  box-shadow: 0px 2px 18px -7px #01358d2e;
  margin: 15px 10px;
  transition: all 0.3s ease-in;
}

.screenshot-slider .thumb img {
  width: auto !important;
  max-height: 563px;
  width: 100% !important;
  transition: all 0.3s ease-in;
}

.screenshot-slider:after {
  content: "";
  background-image: url(../../assets/img/screenshot/mockup.png);
  height: 100%;
  width: 311px;
  position: absolute;
  background-repeat: no-repeat;
  left: 50%;
  top: 0;
  margin-left: -155px;
  background-size: 100%;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
  border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
  border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
  border-radius: 0 !important;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
  border-radius: 0;
}

.screenshot-slider .owl-prev {
  position: absolute;
  left: 50%;
  margin-left: -55px;
  z-index: 2;
  margin-top: 25px;
}

.screenshot-slider .owl-next {
  position: absolute;
  left: 50%;
  margin-left: 15px;
  z-index: 2;
  margin-top: 25px;
}

/***** testimonial-slider-2- ******/
.testimonial-slider2-bg {
  position: relative;
}

.testimonial-slider2-bg:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/business/testimonial/5.png");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: 81% 0;
  width: 100%;
  right: 0;
  bottom: 0;
  top: 30px;
  z-index: -1;
}

.testimonial-slider-2 .media {
  margin: 60px;
}

.testimonial-slider-2 .media .media-left {
  margin-left: 65px;
}

.testimonial-slider-2 .media .media-left:before {
  content: "";
  position: absolute;
  left: 0;
  top: -56px;
  bottom: 0;
  width: 100%;
  background-size: 48%;
  background-image: url("../../assets/img/business/testimonial/1.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-left img {
  height: 370px;
  width: 370px;
  border-radius: 50%;
}

.testimonial-slider-2 .media .media-body {
  background: #fcfcfc;
  box-shadow: 0px 10px 34px #0000001c;
  border-radius: 6px;
  padding: 60px 65px 55px 65px;
  z-index: 1;
  margin-top: 85px;
}

.testimonial-slider-2 .media .media-body p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  color: #5b6880;
  padding: 0 22px;
  position: relative;
}

.testimonial-slider-2 .media .media-body p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-image: url("../../assets/img/business/testimonial/left.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body p:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 20px;
  width: 20px;
  background-image: url("../../assets/img/business/testimonial/right.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body h6 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.24px;
  color: #01358d;
  position: relative;
  display: inline-block;
}

.testimonial-slider-2 .media .media-body h6:after {
  content: "";
  background: #01358d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  opacity: 0.5;
}

.testimonial-slider-2 .media .media-body span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
  display: block;
}

.testimonial-slider-2 .owl-dots {
  text-align: center;
  margin-left: 36%;
  margin-top: -50px;
  background: transparent;
}

.testimonial-slider-2 .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
  position: relative;
}

.testimonial-slider-2 .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

/***** client-slider-2 *****/
.client-slider-2 {
  box-shadow: 0px 10px 46px #97a1b212;
  border-radius: 10px;
  padding: 28px 0;
  background: #fff;
}

.client-slider-2 .client-slider-2-item {
  text-align: center;
}

.client-slider-2 .thumb img {
  width: auto;
  filter: grayscale(10);
  opacity: 0.4;
  display: inherit;
  transition: all 0.3s ease-in;
}

.client-slider-2 .thumb:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.client-slider-2.style-two {
  box-shadow: none;
}

/***** team slider *****/
.team-slider .team-slider-item {
  display: flex;
  align-items: center;
}

.team-slider .team-slider-item .row {
  align-items: center;
}

.team-slider .team-slider-item .team-member-details {
  margin-right: 100px;
}

.team-slider .team-slider-item .team-member-details h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #01358d;
}

.team-slider .team-slider-item .team-member-details h3 span {
  color: var(--main-color-one);
}

.team-slider .team-slider-item .team-member-details p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 25px;
}

.team-slider .team-slider-item .team-member-details .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #01358d;
}

.team-slider .team-slider-item .team-member-details .designation {
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.52px;
  color: #97a1b3;
  margin-bottom: 43px;
}

.team-slider .team-slider-item .team-member-details .social-media-title {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.03px;
  color: #97a1b3;
  float: left;
  margin-right: 100px;
  position: relative;
}

.team-slider .team-slider-item .team-member-details .social-media-title:after {
  content: "";
  position: absolute;
  right: -44px;
  top: 16px;
  height: 1px;
  width: 34px;
  background: #97a1b2;
}

.team-slider .team-slider-item .team-member-details ul {
  padding-left: 0;
  margin-bottom: 0;
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li {
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a {
  margin: 0 7px;
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a img {
  width: auto !important;
}

.team-slider .team-slider-item .team-member-img {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 132px;
}

.team-slider .team-slider-item .team-member-img .thumb {
  max-width: 460px;
  height: auto;
  border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .thumb img {
  width: 100%;
  border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .team-shape1 {
  width: 200px;
  height: 60%;
  background: #ffd8de;
  border-radius: 20px;
  position: absolute;
  margin-left: -70px;
}

.team-slider .team-slider-item .team-member-img .team-shape2 {
  width: 88%;
  height: 100%;
  background: #01358d;
  border-radius: 20px;
  position: absolute;
  margin-right: -20px;
  bottom: 0;
  z-index: -1;
}

.team-slider .owl-item.active .team-member-img .team-shape1 {
  animation: 1.5s 0.3s fadeInRight both;
}

.team-slider .owl-item.active .team-member-img .team-shape2 {
  animation: 1.5s 0.3s fadeUpLeft both;
}

.team-slider .owl-prev {
  position: absolute;
  left: 35%;
  margin-top: -120px;
}

.team-slider .owl-next {
  position: absolute;
  right: -60px;
  margin-top: -120px;
}

.team-slider .owl-dots {
  text-align: center;
  padding-left: 492px;
  margin-top: 43px;
  line-height: normal;
}

.team-slider .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
}

.team-slider .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

.marketing-slider .owl-stage {
  right: 125px;
}

.marketing-slider .marketing-slider-details {
  overflow: hidden;
  position: relative;
}

.marketing-slider .marketing-slider-details .thumb {
  overflow: hidden;
}

.marketing-slider .marketing-slider-details .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.marketing-slider .marketing-slider-details:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.4);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
}

.marketing-slider .marketing-slider-details:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.4);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  padding: 20px 30px;
  z-index: 2;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a {
  width: 106px;
  height: 106px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  line-height: 106px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -35px;
  margin-left: -53px;
  transition: 0.4s;
  opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a img {
  width: auto !important;
  display: inline-block;
}

.marketing-slider .marketing-slider-details .marketing-slider-content p {
  position: absolute;
  bottom: 5px;
  color: #fff;
  opacity: 0;
  transition: 0.6s;
}

.marketing-slider .marketing-slider-details:hover:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .thumb img {
  transform: rotate(3deg) scale(1.1);
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content a {
  margin-top: -53px;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content p {
  bottom: 15px;
  opacity: 1;
}

.marketing-slider .owl-prev {
  position: absolute;
  bottom: -52px;
}

.marketing-slider .owl-next {
  position: absolute;
  left: 76px;
  bottom: -52px;
}

/***** blog-gallery-slider *******/
.blog-gallery-slider .owl-prev,
.blog-gallery-slider .owl-next {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffffff;
  width: 54px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  transition: 0.3s;
  color: #fff;
}

.blog-gallery-slider .owl-prev:hover,
.blog-gallery-slider .owl-next:hover {
  background: black;
}

.blog-gallery-slider .owl-prev {
  left: 0;
}

.blog-gallery-slider .owl-next {
  right: 0;
}

/*--------------------------------------------------------------
	## service section
--------------------------------------------------------------*/
.single-service {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 34px #97a1b21f;
  padding: 96px 40px 35px 40px;
  margin-bottom: 16px;
  transition: all 0.3s ease-in;
}

.single-service img {
  margin-bottom: 42px;
  width: auto !important;
}

.single-service h6 {
  margin-bottom: 26px;
  font-weight: 600;
  letter-spacing: 0.22px;
  color: #0694B7;
}

.single-service h6 a {
  color: #0694B7;
}

.single-service p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
}

.single-service .read-more {
  margin-top: 35px;
  position: relative;
  text-align: right;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.single-service .read-more img {
  margin-bottom: 0;
  width: auto !important;
}

.single-service .read-more a {
  margin-right: 10px;
  transition: all 0.3s ease-in;
}

.single-service .read-more:before {
  content: "";
  position: absolute;
  height: 32px;
  width: 2px;
  left: -29px;
  top: -4px;
  background: #32e2a9;
  transition: all 0.3s ease-in;
}

.single-service:hover {
  box-shadow: 0px 18px 34px #97a1b24f;
}

.single-service:hover .read-more {
  visibility: visible;
  opacity: 1;
}

.single-service:hover .read-more a {
  margin-right: 0;
}

.single-service:hover .read-more:before {
  left: -39px;
}

.service-carousel .owl-item {
  padding: 50px 7px;
}

/******* single-service-left *******/
.single-service-left {
  margin: 0 10px;
  background: #fff;
  padding: 57px 44px 60px;
  box-shadow: 0px 12px 34px #97a1b221;
  border-radius: 6px;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
}

.single-service-left:hover {
  box-shadow: 0px 15px 40px #97a1b247;
}

.single-service-left .media .thumb {
  height: 130px;
  width: 130px;
  border-radius: 50%;
}

.single-service-left .media .thumb img {
  width: 100%;
}

.single-service-left .media .media-body {
  margin-left: 38px;
}

.single-service-left .media .media-body h6 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: #01358d;
  margin-bottom: 25px;
}

.single-service-left .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.03px;
  color: #5b6880;
  margin-bottom: 20px;
}

.single-service-left .media .media-body a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  transition: all 0.3s ease-in;
}

.single-service-left .media .media-body a img {
  margin-left: 9px;
  transition: all 0.3s ease-in;
}

.single-service-left .media .media-body a i {
  font-size: 26px;
  position: absolute;
  right: -33px;
  bottom: -4px;
}

.single-service-left .media .media-body a:hover {
  color: var(--main-color-one);
}

.single-service-left .media .media-body a:hover img {
  margin-left: 13px;
}

/** single-service-area-2 **/
.single-service-2 {
  padding: 57px 44px 48px;
  box-shadow: 0px 3px 44px #97a1b238;
  border-radius: 8px;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
}

.single-service-2:hover {
  box-shadow: 0px 18px 69px #97a1b245;
}

.single-service-2 .thumb {
  margin-bottom: 30px;
}

.single-service-2 h6 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: #01358d;
  margin-bottom: 20px;
}

.single-service-2 p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #5b6880;
}

.single-service-2.style-two {
  box-shadow: none;
}

.single-service-2.style-two.active,
.single-service-2.style-two:hover {
  box-shadow: 0px 2px 69px #97a1b245;
  background: #fff;
}

.single-service-2.style-three {
  padding: 42px 40px 42px;
}

.single-service-2.style-three .thumb {
  margin-bottom: 14px;
}

.single-service-2.style-three h6 {
  margin-bottom: 18px;
}

.single-service-2.style-three a.arrow {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  padding-right: 25px;
  transition: all 0.3s ease-in;
}

.single-service-2.style-three a.arrow i {
  margin-left: 2px;
  transition: all 0.3s ease-in;
  position: absolute;
  right: -2px;
  top: 2px;
}

.single-service-2.style-three a.arrow:hover {
  color: var(--main-color-one);
}

.single-service-2.style-three a.arrow:hover i {
  right: -6px;
}

/** single-offer  **/
.single-offer {
  background: #fff;
  padding: 52px 46px 51px;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 18px;
  transition: all 0.3s ease-in;
  margin-bottom: 30px;
}

.single-offer .media .media-body {
  margin-left: 44px;
  display: flex;
  align-items: center;
}

.single-offer .media .media-body h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 0;
}

.single-work-processing {
  margin-bottom: 80px;
}

.work-processing-details .section-title {
  margin-bottom: 0;
}

/********* single-software-store style *********/
.bg-after {
  position: relative;
}

.bg-after:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #01358d;
  opacity: 0.7;
  z-index: 0;
}

.software-store-wrap {
  margin: 0;
  padding: 0;
}

.software-store-wrap li {
  width: 20%;
  display: inline-block;
  float: left;
  padding: 0 15px;
}

.single-software-store {
  background: #fff;
  padding: 50px 20px 37px 20px;
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in;
}

.single-software-store:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: 0;
}

.single-software-store .thumb {
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}

.single-software-store .thumb img {
  width: 90px;
  height: 90px;
}

.single-software-store h4 {
  color: #5b6880;
  position: relative;
  z-index: 1;
}

.single-software-store:hover {
  box-shadow: 0px 10px 30px #00000029;
}

.single-software-store:hover .thumb {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.single-software-store:hover:after {
  visibility: visible;
  opacity: 0.06;
}

/*----------------------------------------------
	## Feature
-----------------------------------------------*/
.single-feature {
  margin-bottom: 52px;
}

.single-feature .media {
  background: #fff;
  box-shadow: 0px 12px 50px #afafaf38;
  border-radius: 0px 100px 0px 0px;
  padding: 62px 57px 52px 52px;
}

.single-feature .media .media-left {
  margin-right: 26px;
}

.single-feature .media .media-body h6 {
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 12px;
  font-weight: 600;
}

.single-feature .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
}

.single-feature .border-radius-2 {
  border-radius: 0px 0px 0px 100px;
}

.single-feature .border-radius-3 {
  border-radius: 100px 0px 0px 0px;
}

.single-feature .border-radius-4 {
  border-radius: 0px 0px 100px 0px;
}

.single-feature-left {
  margin-right: 17px;
}

.single-feature-right {
  margin-left: 17px;
}

/*----------------------------------------
	## Pricing
----------------------------------------*/
.single-pricing {
  background: #fff;
  box-shadow: 0px 3px 26px #01358d0d;
  padding: 54px 50px 46px 50px;
  transition: all 0.3s ease-in;
}

.single-pricing .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: #5b6880;
  margin-bottom: 40px;
}

.single-pricing .thumb {
  margin-bottom: 40px;
}

.single-pricing .amount {
  border-bottom: 1px solid #e4e4e5;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.single-pricing .amount del {
  display: block;
  margin-bottom: 5px;
}

.single-pricing .amount p {
  color: var(--main-color-one);
}

.single-pricing .price {
  font-size: 36px;
  line-height: 43px;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #01358d;
  margin-bottom: 18px;
}

.single-pricing .price span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: #5b6880;
  margin-left: -9px;
}

.single-pricing ul {
  padding-bottom: 40px;
  padding-left: 0;
  transition: 0.4s ease-in-out;
}

.single-pricing ul li {
  font-size: var(--body-font-size);
  line-height: 40px;
  letter-spacing: 0.3px;
  color: #5b6880;
  list-style: none;
}

.single-pricing .btn {
  border-color: #97a1b2;
}

.single-pricing.style-two .title {
  margin-bottom: 30px;
}

.single-pricing.style-two .thumb {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: #fff7f8;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.single-pricing-active {
  background: #0041af !important;
  box-shadow: 0px 12px 20px #01358d57;
}

.single-pricing-active .title {
  color: #fff;
}

.single-pricing-active .thumb {
  margin-bottom: 40px;
}

.single-pricing-active .amount del {
  color: #fff;
}

.single-pricing-active .price {
  color: #fff;
}

.single-pricing-active .price span {
  color: #fff;
}

.single-pricing-active ul li {
  color: #fff;
}

.single-pricing-active .btn {
  border-color: #fff;
}

.sb-pricing-tabs {
  display: inline-block;
  border-bottom: 0;
  margin-bottom: 70px;
}

.sb-pricing-tabs .nav-item {
  display: inline-block;
}

.sb-pricing-tabs .nav-item a {
  border: 1px solid #f1e7e8;
  font-size: 14px;
  border-radius: 0;
  height: 46px;
  padding: 0 20px;
  line-height: 46px;
  margin: 0 2px;
  position: relative;
}

.sb-pricing-tabs .nav-item a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  background: var(--main-color-one);
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  margin-left: -5px;
  visibility: hidden;
  opacity: 0;
}

.sb-pricing-tabs .nav-item a.active {
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: #fff;
}

.sb-pricing-tabs .nav-item a.active:after {
  visibility: visible;
  opacity: 1;
}

.sb-hosting-tabs {
  border-bottom: 0;
}

.sb-hosting-tabs .nav-item {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.sb-hosting-tabs .nav-item a {
  border: 1px solid #f1e7e8;
  font-size: 20px;
  border-radius: 0;
  padding: 10px 20px;
  margin: 0 2px;
  position: relative;
  display: block;
  letter-spacing: 0.4px;
}

.sb-hosting-tabs .nav-item a img {
  margin-right: 10px;
}

.sb-hosting-tabs .nav-item a.active {
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: #fff;
}

.sb-hosting-tabs .nav-item a.active img {
  filter: brightness(200);
}

.sb-hosting-tabs .nav-item:last-child {
  margin-bottom: 0;
}

/********* progress bar style **********/
.progress-item {
  padding-top: 5px;
  padding-bottom: 18px;
}

.progress-item .progress-heading {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #01358d;
}

.progress-item .progress-count {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #01358d;
  float: right;
}

.progress-item .progress-bg {
  position: relative;
  height: 10px;
  border-radius: 5px;
  background: rgba(249, 85, 109, 0.2);
  margin-top: 12px;
}

.progress-item .progress-bg .progress-rate {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #f9556d;
  transition: 2.5s;
  border-radius: 5px;
}

/******* team style ********/
.single-team {
  padding: 0 30px;
  margin-bottom: 65px;
}

.single-team .thumb {
  max-height: 220px;
  max-width: 220px;
  margin: 0 auto;
}

.single-team .thumb:after {
  content: "";
  position: absolute;
  background-image: url("../img/startup/team/bg.svg");
  background-repeat: no-repeat;
  height: 300px;
  width: 300px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: -1;
}

.single-team .thumb img {
  border-radius: 50%;
  border: 12px solid #175198;
}

.single-team h6 {
  margin: 58px 0 5px;
}

.single-team h6 a {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.48px;
  color: #01358d;
}

.single-team span {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 1.02px;
  color: #97a1b3;
  font-family: var(--raleway-font);
  font-style: italic;
}

.single-team p {
  font-size: var(--body-font-size);
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-top: 18px;
  margin-bottom: 0;
}

/********* songle blog post **********/
.single-case-studies {
  box-shadow: 0px 10px 34px #97a1b21f;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in;
}

.single-case-studies .thumb {
  overflow: hidden;
}

.single-case-studies .thumb img {
  transform: scale(1);
  transition: 0.6s;
}

.single-case-studies .details {
  padding: 34px 28px 38px;
}

.single-case-studies .details h6 {
  margin-bottom: 0;
}

.single-case-studies .details h6 a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #01358d;
  line-height: 1.2;
}

.single-case-studies .details p {
  margin-top: 15px;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-bottom: 0;
}

.single-case-studies .details .read-more {
  color: #97a1b2;
  margin-top: 15px;
  display: inline-block;
  position: relative;
}

.single-case-studies .details .read-more i {
  position: absolute;
  bottom: 0px;
  right: -28px;
  transition: 0.3s;
  font-size: 22px;
}

.single-case-studies .details .read-more:hover {
  color: var(--main-color-one);
}

.single-case-studies .details .read-more:hover i {
  right: -33px;
}

.single-case-studies .details .admin {
  margin-top: 20px;
}

.single-case-studies .details .admin img {
  width: 30px;
  height: 30px;
  border: 1px solid #97a1b3;
  border-radius: 50%;
  margin-right: 5px;
}

.single-case-studies .details .admin span {
  color: #97a1b3;
}

.single-case-studies:hover {
  box-shadow: 0px 16px 42px #97a1b230;
}

.single-case-studies:hover .thumb img {
  transform: scale(1.1) rotate(2deg);
}

.single-case-studies.style-two {
  box-shadow: none;
}

.single-case-studies.style-two .details {
  padding: 28px 0 0 0;
}

.single-case-studies.style-two .details .admin {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 13px;
}

.single-post {
  margin-bottom: 50px;
}

.single-post .thumb {
  overflow: hidden;
}

.single-post .thumb img {
  transform: scale(1);
  transition: 0.6s;
}

.single-post:hover .thumb img {
  transform: scale(1.1) rotate(2deg);
}

.single-post h6 {
  margin: 17px 0 12px;
}

.single-post h6 a {
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #01358d;
}

.single-post p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 16px;
}

.single-post a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b2;
  transition: all 0.3s ease-in;
}

.single-post a span {
  transition: all 0.3s ease-in;
}

.single-post a:hover {
  color: #01358d;
}

.single-post a:hover span {
  padding-left: 3px;
  color: #01358d;
}

/*---------------------------------------
    ## Counter area
---------------------------------------*/
.single-counter .counting {
  font-size: 45px;
  line-height: 30px;
  font-weight: 300;
  letter-spacing: 1.04px;
  color: #fff;
}

.single-counter h6 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--raleway-font);
  letter-spacing: 0.36px;
  color: #fff;
  margin: 5px 0 0;
}

/******* comming soon count down ********/
.comming-soon-area {
  height: 100vh;
  display: flex;
  align-items: center;
}

.comming-soon-area .comming-soon-title {
  margin-bottom: 50px;
}

.comming-soon-area .newsletter-subcribe {
  margin-top: 200px;
}

.comming-soon-area .newsletter-subcribe p {
  font-size: 20px;
  color: #01358d;
  margin-bottom: 35px;
}

.comming-soon-title {
  font-size: 100px;
  font-weight: 300;
  letter-spacing: 0;
  color: #01358d;
}

.countdown-item {
  height: 160px;
  width: 160px;
  padding-top: 44px;
  margin-right: 40px;
  display: inline-block;
  border: 1px solid var(--main-color-one);
  border-radius: 50%;
  text-align: center;
}

.countdown-item h2 {
  margin: 0;
  line-height: 1.3;
  color: #5b6880;
  font-weight: 300;
  font-size: 36px;
}

.countdown-item span {
  margin: 0;
  line-height: 1.2;
  color: #5b6880;
  font-size: 18px;
  font-weight: 300;
}

.countdown-item:last-child {
  margin-right: 0;
}

/*----------------------------------------
    ## All form
------------------------------------------*/
.riyaqas-form-wrap .btn {
  height: 48px;
  line-height: 48px;
  padding: 0 60px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-top: 30px;
}

.single-input-wrap {
  position: relative;
}

.single-input-wrap .single-input {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1px solid #d9dde4;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

select {
  padding: 12px 40px 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23333\' height=\'20\' viewBox=\'0 0 20 20\' width=\'20\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M5 7l5 5 5-5z\'/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.single-input-wrap .single-input.textarea {
  min-height: 134px;
}

.single-input-wrap.input-checkbox {
  margin-bottom: 30px;
}

.single-input-wrap.input-checkbox .single-input {
  width: auto;
  height: auto;
}

.single-input-wrap .input-checkbox-text span {
  color: var(--main-color-one);
}

.single-input-wrap .single-select {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1px solid #d9dde4;
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
  cursor: pointer;
}

.single-input-wrap .single-select span.current {
  width: 180px;
  display: block;
}

.single-input-wrap .single-select:after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  height: 7px;
  right: 20px;
  width: 7px;
}

.single-input-wrap .single-select .list {
  width: 100%;
}

.single-input-wrap .single-select .list li {
  font-size: 14px !important;
  letter-spacing: 0.28 !important;
  color: #97a1b2 !important;
  font-weight: 400 !important;
  transition: 0.4s !important;
}

.single-input-wrap .single-select .list li:hover,
.single-input-wrap .single-select .list li:focus,
.single-input-wrap .single-select .list li.selected {
  color: #01358d !important;
}

.single-input-wrap label {
  position: absolute;
  top: 17px;
  left: 20px;
  color: #999;
  cursor: text;
  transition: all 0.15s ease-in-out 0s;
  z-index: -1;
  font-size: var(--body-font-size);
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

.single-input-wrap label.active {
  top: -6px;
  left: 17px;
  font-size: 11px;
  color: inherit;
  cursor: pointer;
  color: #97a1b2;
  background: #fff;
  z-index: 1;
  padding: 0 1px;
}

.riyaqas-file-input-wrap {
  margin-top: 10px;
  height: 100%;
}

.riyaqas-file-input-wrap .riyaqas-file-input {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  width: 100%;
}

.riyaqas-file-input-wrap label {
  cursor: pointer;
  border: 0;
  color: #fff;
  border-radius: 0;
  background: #32e2a9;
  height: 62px;
  line-height: 64px;
  text-align: center;
  padding: 0;
  cursor: cell;
}

.riyaqas-file-input-wrap label:after {
  display: none !important;
}

.job-apply-area {
  box-shadow: 0px 8px 30px #97a1b224;
  border-radius: 8px;
  padding: 120px 68px;
}

.job-apply-area .single-input-wrap .single-input {
  border: 0;
  border-bottom: 1px solid #d9dde4;
  border-radius: 0;
  padding: 0;
}

.job-apply-area .single-input-wrap textarea {
  padding: 10px 0 !important;
}

.job-apply-area .single-input-wrap label {
  left: 0;
}

.job-apply-area .btn-blue {
  margin-top: 70px;
}

/*------------------------------------------
    gallery Item
------------------------------------------*/
.gallery-menu {
  margin-bottom: 60px;
  padding-left: 0 !important;
}

.gallery-menu li {
  display: inline-block;
  font-size: 16px;
  color: #5b6880;
  margin: 0 27px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

.gallery-menu li:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  content: "";
  background: var(--main-color-one);
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.9s;
}

.gallery-menu li.active:before,
.gallery-menu li:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.gallery-menu li.active,
.gallery-menu li:hover {
  color: var(--main-color-one);
}




.single-work-item {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
}

.single-work-item .thumb {
  overflow: hidden;
}

.single-work-item .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.single-work-item .thumb:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 24, 64, 0.3);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-work-item .thumb:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 24, 64, 0.3);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-work-item .content-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  align-items: center;
  display: inline-grid;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.single-work-item .content-wrap .cats {
  font-size: 16px;
  color: #f9556d;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.single-work-item .content-wrap .title {
  font-size: 24px;
  color: #fff;
  padding: 0 35px;
  display: inline-block;
  letter-spacing: 0.48px;
  font-weight: 500;
  display: block;
}

.single-work-item:hover .thumb img {
  transform: scale(1.1) rotate(3deg);
}

.single-work-item:hover .thumb:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.single-work-item:hover .thumb:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.single-work-item:hover .content-wrap {
  visibility: visible;
  opacity: 1;
}

.mfp-bg {
  background-color: rgba(2, 48, 71, 0.8);
}

.mfp-zoom-out-cur {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer !important;
}

.partners-section-offer {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.partners-section-news {
  background: #fff;
  padding: 5px 20px;
  text-align: center;
}

.partners-section-use-case {
  background: #fff;
  padding: -80px 20px;
  text-align: center;
}

.partners-section-legal {
  background: #fff;
  padding: -70px 20px;
  text-align: center;
}

.partners-section-about {
  background: #fff;
  padding: 20px 20px;
  margin-top: -70px;
  text-align: center;
}


.partners-section-map-analytics {
  background: #fff;
  padding: 5px 20px;
  text-align: center;
}

.partners-section {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  border-radius: 6px;
}

.partners-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partners-title .partners-icon {
  width: 40px;
  height: 40px;
  color: #1e3a8a;
}

.partners-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #5b6880;
}

/* Marquee */
.partners-logos-wrapper {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.partners-marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners-logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.partners-logo-strip img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partners-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  border-radius: 6px;
}

.partners-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partners-title .partners-icon {
  width: 40px;
  height: 40px;
  color: #1e3a8a;
}

.partners-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #5b6880;
}

/* Marquee */
.partners-logos-wrapper {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.partners-marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners-logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.partners-logo-strip img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}



.main-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
}


.sidebar {
  background: #D6EEF3;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  /* top: 80px; */
  max-height: 500px;
  /* adjust if needed */
  overflow-y: auto;
  align-self: flex-start;
}

/* Scrollbar width */
.sidebar::-webkit-scrollbar {
  width: 4px;
}

/* Scrollbar track */
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

/* Scrollbar thumb */
.sidebar::-webkit-scrollbar-thumb {
  background: #0694B7;
  border-radius: 10px;
}

/* Firefox support */
.sidebar {
  scrollbar-width: thin;
  scrollbar-color: #0694B7 transparent;
}

.main {
  flex: 1;
  min-width: 0;
}



/* Sidebar title */
.sidebar h2 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #5b6880;

}

/* Sidebar links */
.sidebar a {
  display: block;
  padding: 10px;
  margin-bottom: 5px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  color: #5b6880;
}

.sidebar a:hover {
  background: #057A96;
  color: #fff;
}

.sidebar a.active {
  background: #057A96;
  box-shadow: 0px 11px 14px #7c7e854d;
  color: #fff;
}

/* ✅ Responsive: Sidebar above main on small screens */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex: none;
    position: static;
    /* remove sticky for mobile */
    margin-bottom: 20px;
    max-height: 350px;
  }

  .sidebar::-webkit-scrollbar {
    width: 4px;
  }

  /* Scrollbar track */
  .sidebar::-webkit-scrollbar-track {
    background: transparent;
  }

  /* Scrollbar thumb */
  .sidebar::-webkit-scrollbar-thumb {
    background: #0694B7;
    border-radius: 10px;
  }

  /* Firefox support */
  .sidebar {
    scrollbar-width: thin;
    scrollbar-color: #0694B7 transparent;
  }

  .main {
    width: 100%;
    flex: none;
  }
}


.promo-box {
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.promo-box h4 {
  margin: 0 0 10px;
  color: #fff;
}

.promo-box p {
  color: #ddd;
  margin: 0 0 10px;
  font-size: 14px;
}

.promo-box a {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

.promo-box a:hover {
  background: #db2777;
}



.section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section h1,
.section h2,
.section h3 {
  margin-top: 0;
  color: #111827;
  text-align: center;
  font-size: x-large;
  font-weight: bold;
}

@media (max-width:768px) {
  .section h2 {
    font-size: 20px;
  }

  .section p {
    font-size: 14px;
  }

  .feature h4 {
    font-size: 16px !important;
  }

  .feature h6 {
    font-size: 14px;
  }

  .feature p {
    font-size: 12px !important;
  }

  .service h3 {
    font-size: 20px !important;
  }

  .service p {
    font-size: 12px !important;
  }

  .services-heading h1 {
    font-size: 20px !important;
  }

  .services-heading p {
    font-size: 14px !important;
  }
}

.section p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
  text-align: center;
}

.hero {
  text-align: center;
  margin-bottom: 30px;

}

.services-heading h1 {
  text-align: center;
  font-size: xx-large;
  font-weight: bold;
  padding-top: 25px;
}

.services-heading p {
  text-align: center;
  font-size: large;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero h1 {
  font-size: 36px;
  font-weight: bold;
  color: black;
}

.hero span {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}


.banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.banner img {
  width: 100%;
  object-fit: cover;
  height: 200px;
  object-position: 40% 40%;
}

.banner-it {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.banner-it img {
  width: 100%;
  object-fit: cover;
  max-height: 200px;
  object-position: top;
}

.banner-it .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}




.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.overlay-text p {
  color: white;
}

.overlay-text h3 {
  color: white;
  font-size: x-large;
  font-weight: bold;
}

@media (max-width:640px) {
  .overlay-text h3 {
    font-size: 14px;
  }

  .overlay-text p {
    font-size: 10px;
  }
}

.overlay-text h1 {
  color: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 15px;
  padding-top: 10px;
}

@media (max-width:1023px) {
  .features {
    display: grid;
    grid-template-columns: repeat(1, minmax(220px, 1fr));
  }
}

.feature {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  transition: 0.3s;
}

.feature h4 {
  font-weight: 600;
  color: black;
  font-size: 20px;
}

.feature p {
  text-align: left;
}


.feature:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width:1023px) {
  .services {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.service {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.service h3 {
  font-weight: bold;
  font-size: x-large;
  color: black;
}

.services-heading h1 {
  color: black;
}

.service:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta {
  text-align: center;
}

.cta a {
  display: inline-block;
  background: #057A96;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(12, 63, 124, 0.3);

}

.cta a:hover {
  background: #0c3f7c;
}

/* Features Css */

.features-tabs {
  padding: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

}

.features-tabs .nav-underline {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: max-content;
  gap: 40px;

}

.features-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 400;
  padding: 10px 18px;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.tab-underline {
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1.8px solid #EBEBEB;
}

.tab-underline .active {
  border-bottom: 3px solid #057A96;
  color: #057A96;
}

@media (max-width:768px) {
  .tab-underline {
    gap: 8px;
    margin: 0 20px;
  }
}


.features-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Icon styling */
.tab-icon {
  font-size: 18px !important;
  line-height: 1;
  transition: transform 0.2s ease;
  color: #555555 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.features-tabs .nav-link.active .tab-icon {
  transform: scale(1.15);
  color: #057A96 !important;
}

.features-tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.features-tab-pane.active {
  display: block;
}

.features-tab-pane.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.features-tab-pane .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.features-tab-pane .content h2 {
  text-align: center;
  font-weight: 600;
  font-size: 36px !important;
}

@media (max-width:768px) {
  .features-tab-pane .content h2 {
    font-size: 26px !important;
  }

  .text-section h4 {
    font-size: 16px;
  }
}

/* Grid Layout */
.features-tab-pane .content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* Card Style */
.features-tab-pane .content .features-grid .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 9px;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 3px 16px 0px #001BB714;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.features-tab-pane .content .features-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon */
.features-tab-pane .content .features-grid .card .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Content */
.features-tab-pane .content .features-grid .card .card-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.features-tab-pane .content .features-grid .card .card-content p {
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 768px) {
  .features-tab-pane .content .features-grid {
    grid-template-columns: 1fr;
    /* Only 1 card per row */
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.signIn-btn,
.client-btn {
  cursor: pointer;
}

.remember-text {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: space-between;

}

.checkbox-area-popup {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox-area-popup .checkbox {
  cursor: pointer;
}

.btn-wrap {
  padding-top: 20px;
}

.dont-have-account-text {
  padding-left: 20px;
}

.forgot-password-text {
  cursor: pointer;
}

.popup-widget-title .forgot-heading {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.28;
  color: #01358d;
  font-weight: 500;
  position: relative;
}

.popup-widget-title {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d9dde4;
  margin-bottom: 20px;
}

.popup-widget-title .forgot-text {
  margin-bottom: 10px;
}

.forgot-form .btn-wrap {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
}

.back-to-login {
  padding-top: 20px;
  color: #001BB7;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#result-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

#result-div a {
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 20px #9398a11a;
  border-radius: 8px;
  padding: 22px 35px 22px 26px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  align-items: center;
  text-align: center;
}

#result-div a:hover {
  font-weight: 600;
  color: #01358d;
  text-decoration: underline;
}

.MapUI-stab-content {
  margin-top: 15px;
}

.counter-box {
  display: flex;
  justify-content: center;
}

.btn-wrap {
  display: flex;
  align-items: center;
}

@media (max-width:640px) {
  .pd-top-80 {
    padding-top: 10px;
  }

  .counter-box {
    display: flex;
    justify-content: flex-start;
  }

  .img-with-video {
    display: none;
  }

  .section-title .title {
    text-align: center;
  }

  .worldmap-wrap {
    margin-bottom: 100px;
  }

  .partners-title {
    font-size: 24px;
  }

  .btn-wrap {
    display: flex;
    padding-top: 0px;
  }

  .dont-have-account-text {
    padding-left: 10px;
    font-size: 10px;
    padding-top: 15px;
  }

  .remember-text {
    font-size: 12px;
  }

  .client-content {
    padding-top: 10px;
  }

  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 350px;
  }

  .client-slider {
    padding: 20px;
    width: auto;
  }

  .media {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }

  .client-slider .client-slider-item .media .media-left {
    padding-top: 0px;
  }

  .client-slider .client-slider-item .client-content {
    margin-bottom: 0px;
  }

}

@media (max-width:992px) {
  .top-nav {
    display: none;
  }

  .media {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }
}

@media (min-width:400px) and (max-width:500px) {
  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 450px;
  }
}

@media (min-width:400px) and (max-width:640px) {
  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 550px;
  }
}

/* LEFT image area business tool */

.leftside-image-area-business-tool {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* LEFT image area business tool */

.leftside-image-area-business-tool {
  padding-top: 80px;
  padding-bottom: 80px;
}


.placeholder-option {
  color: #ccc;
}

.pricing-section .thumb img {
  border-radius: 8px;
  max-width: 100%;
  max-height: 106px;
}


/* Mega Menu Styles */

/* ================= MEGA MENU ================= */
.mega-menu-item {
  position: relative;
  list-style: none;
}

.mega-menu-trigger {
  display: block;
  padding: 0 20px;
  text-decoration: none !important;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mega-menu-trigger:hover {
  color: #a0a0a0;
}

/* ================= DROPDOWN BOX ================= */
.mega-menu-dropdown {

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@media (min-width:1090px) and (max-width:1440px) {
  .mega-menu-dropdown {
    left: 23%;

  }
}

@media (min-width: 1024px) {
  .mega-menu-item:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

/* Mobile/Tablet: class-based toggle */
@media (max-width: 1023px) {
  .mega-menu-item.is-open .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

/* ================= CONTAINER ================= */
.mega-menu-container {
  background-color: #1a1a1a;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

  padding: 20px 10px;
}

@media (max-width:1700px) {
  .products-mega-menu {
    width: 700px;
  }
}

@media (max-width:1700px) {
  .solutions-mega-menu {
    width: 700px;

  }

  .mega-section-heading {
    font-size: 11.5px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
    text-align: center;
  }

  /* ================= LIST ================= */
  .mega-section-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }

}

/* ================= GRID LAYOUT ================= */
.mega-menu-content {
  display: flex;
  gap: 10px;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

/* ================= COLUMN ================= */
.mega-menu-section {
  /* DECREASED from 28px */
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid #333;
  text-align: left;
  padding-right: 16px;
  white-space: normal;
}

.mega-menu-section:last-child {
  border-right: none;

}



/* ================= HEADING ================= */
.mega-section-heading {
  font-size: 11.5px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  text-align: center;
}

/* ================= LIST ================= */
.mega-section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
}

/* ================= LIST ITEM ================= */
.mega-section-item {
  margin-bottom: 8px;
  width: 100%;
  /* Ensure items take full column width */
}

.mega-section-item:last-child {
  margin-bottom: 0;
}

/* ================= LINK ================= */
.mega-item-link {
  display: block;
  padding: 8px 6px;
  /* Slightly decreased padding */
  text-decoration: none !important;
  transition: all 0.2s ease;
  border-radius: 5px;

  text-wrap: wrap !important;
}

.mega-item-link:hover {
  background-color: rgba(255, 255, 255, 0.07);
  /* Simplified hover effect for centered layout */
  transform: scale(1.02);
}

/* ================= TITLE ================= */
.mega-item-title {
  font-size: 13.5px;
  /* Slightly smaller for narrower width */
  font-weight: 500;
  color: #dddddd;
  line-height: 1.4;
  margin: 0;
  word-spacing: 0.01em;
  /* Slightly reduced */
  letter-spacing: 0.005em;
  /* Slightly reduced */
  white-space: normal;
  display: block;
  width: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  text-align: left;
}

.mega-item-link:hover .mega-item-title {
  text-decoration: none !important;
  color: #ffffff;
}

.mega-item-title.whitespace-nowrap {
  white-space: nowrap;
  word-spacing: 0.02em;
  /* Slightly reduced */
}


.mega-menu-dropdown li:before {
  display: none !important;
  content: none !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1023px) {

  /* Make the menu item the positioning anchor */
  .mega-menu-item {
    position: relative;
  }

  .mega-menu-dropdown {
    position: absolute;
    /* relative to the parent .mega-menu-item */
    top: 100%;
    /* directly below the trigger link */
    left: 0;
    transform: none;
    width: 70vw;
    /* wide enough to be readable */
    max-height: 50vh;
    overflow-y: auto;
    border-radius: 8px;
    z-index: 9999;
    /* reset any fixed-positioning offsets */
    right: auto;
    bottom: auto;
  }

  .mega-menu-dropdown::-webkit-scrollbar {
    width: 16px;
  }

  .mega-menu-dropdown::-webkit-scrollbar-track {
    background: black;
    border-radius: 16px;
  }

  .mega-menu-dropdown::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 18px;
  }

  .mega-menu-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  /* Firefox */
  .mega-menu-dropdown {
    scrollbar-width: thin;
    /* "auto" | "thin" | "none" */
    scrollbar-color: #057A96 black;
    /* thumb color | track color */
  }

  .mega-menu-container {
    border-radius: 8px;
    min-height: 100%;
    padding: 20px;
  }

  .mega-menu-content {
    flex-direction: column;
    gap: 0;
  }

  .mega-menu-section {
    border-right: none;
    border-bottom: 1px solid #333;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .mega-menu-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mega-section-heading {
    text-align: left;
  }

  .products-mega-menu {
    width: 70vw !important;
  }
}

/* ================= NAVIGATION ================= */
.main-navigation {
  background-color: #000000;
  position: relative;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.navbar-nav>li {
  position: relative;
}

.navbar-nav>li>a {
  display: block;
  padding: 0 20px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav>li>a:hover {
  color: #a0a0a0;
  text-decoration: none;
}

/* Optional description styling */
.mega-item-desc {
  font-size: 11.5px;
  /* Slightly smaller */
  color: #999;
  line-height: 1.3;
  margin-top: 3px;
  display: block;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-align: center;
}

.hero-bg img {
  width: 100%;
  height: 820px;
  object-fit: cover;
  padding-right: 3rem;

}




/* ================= WRAPPER ================= */
.hero-wrapper {
  position: absolute;
  z-index: 2;
  display: flex;
  top: 30%;

}

@media (max-width:768px) {
  .hero-wrapper {
    top: 15%;
  }


  .hero-bg img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    padding-right: 0;
  }


}

@media (min-width:1700px) {
  .hero-wrapper {
    position: absolute;
    z-index: 2;
    display: flex;
    top: 20%;
    left: 20%;

  }

  .hero-bg {
    width: 1700px;
    margin: 0 auto;
  }
}

/* ================= CONTENT ================= */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 60px;

}

.highlight-text {
  background: linear-gradient(90deg, #0EA5C6, #057A96);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width:768px) {
  .hero-content {
    padding-left: 0;
    margin: 20px;
  }
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: black;

}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: black;
  max-width: 560px;

}

/* ================= TAGLINE ================= */
.hero-tagline {
  font-size: 13px;
  color: black;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  gap: 16px;
  /* flex-wrap: wrap; */
}

.btn-primary {
  background: linear-gradient(90deg, #0EA5C6, #057A96);
  color: #fff;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary:hover {
  background: #0b8faa;
  color: #fff;
}

.btn-secondary {
  background: white;
  border: 1px solid #057A96;
  color: black;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}


/* ================= TRUSTED SECTION ================= */

.hero-trusted {
  text-align: center;
  margin-top: 60px;
}

.hero-trusted h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFAFA;
}

.hero-trusted p {
  color: #FFFAFA;
  margin-bottom: 40px;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 800px;
  margin: 40px auto 0;
  gap: 30px 40px;
  text-align: center;
}

.trusted-logos div {
  font-size: 20px;
  font-weight: 500;
  color: #F5F5F5;
  transition: 0.3s ease;
}

.trusted-logos div:hover {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .hero-header {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-header {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }


  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .trusted-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 70%;
    gap: 15px;
    margin: 0 auto;
  }

  .hero-tagline {
    text-align: center;
  }
}


/* Hide on desktop */
@media (min-width:1024px) {
  .mobile-buttons {
    display: none;
  }
}

/* Mobile & small screens */
/* Hide buttons on large screens */
@media (min-width: 981px) {
  .mobile-buttons {
    display: none;
  }
}

/* Show buttons on screens below 980px */
@media (max-width: 980px) {
  .mobile-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 18px;
  }

  .mobile-buttons .order-now-btn {
    flex: 1;
    /* each button takes equal width */
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .mobile-buttons {
    gap: 8px;
  }

  .mobile-buttons .order-now-btn {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* ================= SECTION ================= */

.how-section {
  background: linear-gradient(180deg, #dff3f9 0%, #bfe3ee 100%);
  padding: 20px 0 20px;
}

.how-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
}


/* ================= HEADER ================= */

.how-header {
  text-align: center;
  margin: 20px 0;
  /* equal spacing */
}

.how-header h2 {
  font-size: 36px;
  /* Desktop */
  font-weight: 600;
  color: #111111;
  line-height: 1.2;
  margin: 0;
}


/* ================= GRID ================= */

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 20px;
}


/* ================= CARD ================= */

.how-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}


/* ================= IMAGE ================= */


/* ================= MEDIA ================= */

.how-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* image */
.how-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ video */
.how-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= TEXT ================= */

.how-card h3 {
  font-size: 20px;
  /* Desktop */
  font-weight: 600;
  color: #2d3561;
  margin: 10px 30px 12px;
}

.how-card p {
  font-size: 15px;
  /* Desktop */
  color: #555b7c;
  line-height: 1.6;
  margin: 0 30px 30px;
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

  .how-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .how-wrapper {
    padding: 0 20px;
  }

  .how-header {
    margin: 20px 0;
  }

  /* ✅ MAIN HEADER */
  .how-header h2 {
    font-size: 26px;
  }

  .how-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 20px;
  }

  /* ✅ CARD HEADER */
  .how-card h3 {
    font-size: 18px;
  }

  /* ✅ CARD PARAGRAPH */
  .how-card p {
    font-size: 14px;
  }

}


/* Small mobile (NO FONT CHANGE — keep same) */
@media (max-width: 480px) {

  .how-wrapper {
    padding: 0 16px;
  }

}

/* ================= CORE_FEATURES SECTION ================= */


/* ================= SECTION ================= */
.core-feature-section {
  background: #F5F5F5;
  padding: 20px 0 20px;
}

/* ================= WRAPPER ================= */

.core-feature-wrapper {
  max-width: 1250px;
  margin: auto;
  padding: 0 40px 40px;
}

/* ================= HEADER ================= */

.core-feature-header {
  text-align: center;
  margin: 20px 0;
  /* equal spacing */
}

.core-feature-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 14px;
}

.core-feature-header p {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
  max-width: 650px;
  margin: auto;
}

/* ================= MAIN GRID ================= */

.core-feature-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 20px;
}

/* ================= LEFT ================= */

.core-feature-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  min-width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f6fa;
  border-radius: 50%;
  color: #0694B7;
  font-size: 18px;
}

.feature-item h4 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #2d3561;
}

.feature-item p {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
}

/* ================= RIGHT IMAGE ================= */

.core-feature-right {
  display: flex;
  justify-content: center;
}

.feature-image-wrapper {
  width: 100%;
  max-width: 420px;
  height: 560px;
}

.feature-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

/* ================= LARGE TABLET ================= */

@media(max-width:1024px) {

  .core-feature-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .core-feature-left {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width:1028px) {

  .core-feature-content {
    grid-template-columns: 1fr;
  }

  .core-feature-right {
    display: none;
  }

}


/* ================= TABLET ================= */

@media(max-width:768px) {

  .core-feature-header h2 {
    font-size: 34px;
  }

  .core-feature-left {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    gap: 12px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:576px) {

  .core-feature-header h2 {
    font-size: 26px;
  }

  .feature-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-item h4 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 14px;
  }

  /* HIDE IMAGE ON SMALL SCREENS */
  .core-feature-right {
    display: none;
  }

}

@media (max-width: 480px) {

  .core-feature-wrapper {
    padding: 0 16px;
  }

}



/* ================= DISCOVER SECTION ================= */

.discover-section {
  background: linear-gradient(180deg, #f5f6fa 0%, #eef1f7 100%);
  padding: 40px 0 80px;
}

.discover-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= HEADING ================= */

.discover-heading {
  font-size: 46px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 70px;
}

/* ================= GRID ================= */

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* ================= CARD ================= */

.discover-card {
  display: flex;
  flex-direction: column;
}

/* ================= IMAGE ================= */

.discover-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.discover-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ================= TITLE ================= */

.discover-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d3561;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ================= PARAGRAPH ================= */

.discover-text {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
  max-width: 95%;
}

/* ================= RESPONSIVE ================= */

/* ================= EXTRA RESPONSIVE FIXES ================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .discover-heading {
    font-size: 52px;
  }
}

/* Tablets */
@media (max-width: 992px) {

  .discover-wrapper {
    padding: 0 30px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .discover-heading {
    font-size: 42px;
  }

  .discover-image img {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .discover-section {
    padding: 60px 0;
  }

  .discover-wrapper {
    padding: 0 20px;
  }

  .discover-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .discover-title {
    font-size: 22px;
  }

  .discover-text {
    font-size: 15px;
    max-width: 100%;
  }

  .discover-image img {
    height: 220px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .discover-heading {
    font-size: 26px;
  }

  .discover-title {
    font-size: 20px;
  }

  .discover-text {
    font-size: 14px;
  }

  .discover-image img {
    height: 200px;
  }
}




/* =====================================================
   CORE FEATURES SECTION
===================================================== */
.core-features-section {
  padding: 30px 0 40px;
  background: #f5f5f5;
}

/* =====================================================
   WRAPPER
===================================================== */

.core-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =====================================================
   MAIN HEADING
===================================================== */

.core-features-main-heading {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #232323;
  margin-bottom: 20px;
}

.core-features-subtext {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* =====================================================
   TABS
===================================================== */

.core-features-tabs-wrapper {
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
}

.core-features-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  width: 100%;
}

.core-features-tab {
  background: transparent;
  border: none;
  outline: none;
  font-size: 12.5px;
  padding: 10px 6px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  flex: 1 1 auto;
}

.core-features-tab.active {
  background: #0694B7;
  color: #fff;
  border-radius: 6px 6px 0 0;
}

.core-features-tab:focus,
.core-features-tab:focus-visible,
.core-features-tab:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* =====================================================
   PANELS
===================================================== */

.core-features-panel {
  display: none;
}

.core-features-panel.active {
  display: block;
}

/* =====================================================
   SUBHEADINGS
===================================================== */

.core-features-subheading {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #232323;
}

/* =====================================================
   GRID
===================================================== */

.core-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =====================================================
   CARD
===================================================== */

.core-features-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.core-features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   CARD IMAGE  ✅ FIXED AREA
===================================================== */

.core-features-card-img {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 210px;
  /* SAME SPACE FOR ALL */
  padding: 0px 5px;
}

.core-features-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =====================================================
   CARD CONTENT ✅ CONTROLLED GAP
===================================================== */

.core-features-card-content {
  padding: 0px 28px 24px;
}

.core-features-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 10px;
  line-height: 1.4;
}

.core-features-card-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* =====================================================
   VIEW ALL
===================================================== */

.core-features-view-main-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 30px;
  margin-top: 50px;
}

.core-features-view-subtext {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

#view-all .core-features-subheading {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 35px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

  .core-features-wrapper {
    padding: 0 30px;
  }

  .core-features-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .core-features-tabs {
    justify-content: flex-start;
    gap: 10px;
    width: max-content;
  }

  .core-features-tab {
    flex: 0 0 auto;
    padding: 10px 12px;
  }

  .core-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .core-features-main-heading {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .core-features-wrapper {
    padding: 0 20px;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .core-features-main-heading {
    font-size: 26px;
  }

  .core-features-subtext {
    font-size: 14px;
  }

  .core-features-card-img {
    height: 190px;
  }

  .core-features-card-content {
    padding: 8px 20px 22px;
  }

  .core-features-card-content h3 {
    font-size: 18px;
  }

  .core-features-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .core-features-main-heading {
    font-size: 26px;
  }

  .core-features-card-img {
    height: 170px;
  }
}

/* ===============================
   COLLABORATION SECTION
================================= */
.collaboration-section {
  padding: 30px 0 0 0;
  background: #f5f5f5;
  overflow-x: hidden;
}

.collaboration-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===============================
   MAIN HEADING
================================= */

.collaboration-main-heading {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #232323;
  margin-bottom: 20px;
}

.collaboration-main-subtext {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* ===============================
   TABS
================================= */

.collaboration-tabs-wrapper {
  margin-bottom: 40px;
  overflow: hidden;
  text-align: center;
}

.collaboration-tabs {
  display: inline-flex;
  gap: 8px;
  border-bottom: 1px solid #ddd;
}

.collaboration-tab {
  background: transparent;
  border: none;
  font-size: 14px;
  padding: 12px 18px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px 6px 0 0;
  white-space: nowrap;
}

.collaboration-tab.active {
  background: #0694B7;
  color: #fff;
}

.collaboration-tab:focus,
.collaboration-tab:active,
.collaboration-tab:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* ===============================
   PANELS
================================= */

.collaboration-panel {
  display: none;
}

.collaboration-panel.active {
  display: block;
}

.collaboration-panel.active .collaboration-highlight-layout:last-child {
  margin-bottom: 0;
}

/* ===============================
   HIGHLIGHT CONTAINERS
================================= */

.collaboration-highlight-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 40px;

  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  padding-left: calc((100vw - 1200px)/2);
  padding-right: calc((100vw - 1200px)/2);
  padding-top: 50px;
  padding-bottom: 50px;
}

.collaboration-highlight-layout:nth-of-type(1) {
  background: #e8e1d8;
}

.collaboration-highlight-layout:nth-of-type(3) {
  background: linear-gradient(180deg, #dff3f9 0%, #bfe3ee 100%);
}

.collaboration-reverse {
  flex-direction: row-reverse;
}

/* ===============================
   IMAGES / VIDEO
================================= */

.collaboration-highlight-image {
  flex: 1;
  padding: 40px 0;
  max-width: 600px;
}

.collaboration-highlight-image img,
.collaboration-highlight-image video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: block;
}

.video-box {
  display: flex;
  justify-content: flex-start;
  /* IMPORTANT */
  align-items: center;
  width: 700px;
  height: 350px;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===============================
   CONTENT
================================= */

.collaboration-framed-content {
  flex: 1;
  padding: 40px 0;
}

.collaboration-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #232323;
}

.collaboration-subheading {
  font-size: 18px;
  margin-bottom: 22px;
  color: #333;
}

.collaboration-description {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

/* ===============================
   FEATURE SECTION
================================= */

.collaboration-feature-section {
  background: #f5f5f5;
  padding: 30px 40px 40px;
}

.collaboration-feature-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.collaboration-feature-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 30px;
}

/* ================= GRID ================= */

.collaboration-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* ================= CARD ================= */

.collaboration-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ================= IMAGE ================= */

.collaboration-feature-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.collaboration-feature-image img {
  max-height: 120px;
  width: 90%;
  object-fit: contain;
}

/* ================= TITLE ================= */

.collaboration-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* ================= TEXT ================= */

.collaboration-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ================= LINK ================= */

.collaboration-feature-link {
  font-size: 15px;
  font-weight: 600;
  color: #0694B7;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
}

.collaboration-feature-link:hover {
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .collaboration-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .collaboration-feature-section {
    padding: 50px 40px;
  }

  .collaboration-feature-heading {
    font-size: 34px;
    margin-bottom: 40px;
  }

}

/* Tablet */

@media (max-width: 992px) {

  .collaboration-wrapper {
    padding: 0 30px;
  }

  .collaboration-feature-section {
    padding: 40px 30px;
  }

  .collaboration-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .collaboration-highlight-layout {
    flex-direction: column;
    gap: 35px;
    text-align: center;
    padding: 50px 30px;
  }

  .collaboration-reverse {
    flex-direction: column;
  }

  .collaboration-description {
    margin: 0 auto;
  }

  .collaboration-highlight-image {
    max-width: 500px;
    padding: 30px 0 15px 0;
  }

  .collaboration-framed-content {
    padding: 0 0 30px 0;
  }

}

/* Mobile */

@media (max-width: 760px) {

  .collaboration-main-heading {
    font-size: 26px;
  }

  .collaboration-main-subtext {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .collaboration-heading {
    font-size: 18px;
  }

  .collaboration-description {
    font-size: 14px;
  }

  .collaboration-highlight-layout {
    padding: 40px 20px;
    gap: 25px;
  }

  .collaboration-highlight-image {
    max-width: 100%;
  }

  .collaboration-feature-section {
    padding: 30px 20px;
  }

  .collaboration-feature-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .collaboration-feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
  }

  .collaboration-feature-title {
    font-size: 18px;
    text-align: center;
  }

  .collaboration-feature-text {
    font-size: 14px;
    text-align: center;
  }

  .collaboration-feature-card {
    text-align: center;
  }

  .collaboration-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 transparent;
  }

  /* Tabs should not wrap */
  .collaboration-tabs {
    width: max-content;
    display: flex;
    gap: 10px;
  }

  /* Prevent tab shrinking */
  .collaboration-tab {
    flex: 0 0 auto;
  }

  .video-box {
    width: 550px;
    height: 200px;
  }

  .video-box video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
}

/* Small Mobile */

@media (max-width: 480px) {

  .collaboration-feature-section {
    padding: 25px 15px;
  }

  .collaboration-feature-heading {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .collaboration-highlight-layout {
    margin-bottom: 20px;
  }

  .collaboration-feature-image {
    padding: 15px;
  }

  /* MOBILE VIDEO FIX */

  .video-box {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }







}


/*Pricing Page*/

.pricing-subheading {
  font-weight: 600;
  color: black;
  font-size: 16px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 10px 0;
  margin-top: 8px;
}

.feature-list {
  font-weight: 400;
  color: black;
  font-size: 12px;
}

.feature-list-subheading {
  font-weight: 600;
  color: black;
  font-size: 14px;
}

.user-text {
  font-weight: 400;
  color: black;
  font-size: 16px;

}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e9e9e9;
  padding: 2px 8px;
  border-radius: 12px;
}

.qty-btn {
  background: transparent;
  border: none !important;
  font-size: 22px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: none !important;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width:640px) {
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

@media (min-width:641px) and (max-width:1023px) {
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Wrapper approach - most reliable */
.select-wrapper {
  position: relative;
  display: block;
}

.select-wrapper select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
  background: #fff;
}

.select-wrapper::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-70%) rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
  pointer-events: none;
}

/* Toggle Switch Styles */
/* ── SHARED BILLING TOGGLE ──────────────────────────────────── */
.shared-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  /* center horizontally */
  background: #d6d6d6;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  width: fit-content;
  margin: 0 auto 28px;
  /* center block */
}

.billing-pill-btn {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-radius: 999px;
  padding: 9px 26px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.billing-pill-btn:focus,
.billing-pill-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.billing-pill-btn:hover:not(.active) {
  background: #c4c4c4;
  color: #222;
}

.billing-pill-btn.active {
  background: #0694B7;
  color: #fff;
  font-weight: 600;
}

.billing-pill-btn .save-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 9px;
  line-height: 1.4;
}

.billing-pill-btn.active .save-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── ANNUAL DISCOUNT BADGE inside cards ─────────────────────── */
.annual-discount-badge {
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  margin-top: 10px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  display: none;
}

/* ── HIDE per-card toggle wrappers (keep inputs in DOM) ──────── */
.teams-section-wrapper .billing-toggle-wrapper {
  display: none !important;
}

/* ── TOGGLE SWITCH (used outside teams section e.g. personal) ── */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.toggle-slider {
  background-color: #0694B7;
}

input:checked+.toggle-slider:before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
}


/* Button row styling */
.pricing-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.pricing-buttons .btn {
  flex: 1;
  white-space: nowrap;
}

.pricing-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 18px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.pricing-table thead th {
  font-size: 20px;
  font-weight: 600;
}

.pricing-table tbody tr {
  border-top: 1px solid #e9ecef;
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  background: #fdfdfd;
}

.section-title td {
  font-weight: 600;
  background: #f1f3f5;
}

.column-hover {
  background-color: #eef3ff !important;
}

.check {
  color: #0694B7;
  font-size: 18px;
}

.cross {
  color: #adb5bd;
  font-size: 18px;
}

.btn-custom {
  border-radius: 8px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* ================================================================
   pricing_personal.css
   ================================================================ */


/* ── Section wrappers ───────────────────────────────────────── */
.personal-section-wrapper {
  margin-bottom: 32px;
}

.teams-section-wrapper {}

/* ── Section labels ("For Individuals" / "For Teams") ────────── */
.personal-section-label,
.teams-section-label {
  font-size: 13px;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════════════════════════
   PERSONAL CARD  — matches the screenshot exactly
   ══════════════════════════════════════════════════════════════ */

.personal-card {
  background: #f8f9fa !important;
  border: 1px solid #6c757d !important;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.personal-card__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px !important;
  flex-wrap: wrap;
}

.personal-card__left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Title row: icon + bold name + subtitle */
.personal-card__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.personal-card__icon {
  font-size: 20px;
  color: #343a40;
  flex-shrink: 0;
}

.personal-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
}

.personal-card__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
}

/* ══════════════════════════════════════════════════════════════
   PERSONAL CARD — feature list 3-column proper gap & alignment
   ══════════════════════════════════════════════════════════════ */

.personal-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.personal-card__features li {
  font-size: 13px;
  color: #343a40;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  margin-bottom: 6px;
  /* control gap between items */
}

.personal-features-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Tablet */
@media (max-width: 900px) {
  .personal-features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .personal-features-wrapper {
    grid-template-columns: 1fr;
  }

  .personal-card__features li {
    font-size: 14px;
  }
}

.personal-card__check {
  color: #198754;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── RIGHT column ── */
.personal-card__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Price + CTA on same row */
.personal-card__price-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Price */
.personal-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #212529;
}

.personal-card__symbol {
  font-size: 18px;
  font-weight: 700;
}

.personal-card__amount {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.personal-card__period {
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
  margin-left: 2px;
}

/* CTA button */
.personal-card__btn {
  background-color: #0694B7;
  border-color: #0694B7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Billing toggle row: Monthly ●toggle Yearly (Save 10%) */
.personal-card__toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.personal-card__toggle-label {
  font-size: 13px;
  font-weight: 500;
  color: #343a40;
}

.personal-card__save-badge {
  font-size: 12px;
  font-weight: 600;
  color: #0a6640;
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 2px;
}

/* ── Annual savings strip (inside personal card, below columns) ── */
.personal-annual-strip {
  background: #d1fae5;
  color: #065f46;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 6px 24px;
  border-top: 1px solid #a7f3d0;
}

/* ══════════════════════════════════════════════════════════════
   ANNUAL DISCOUNT BADGE  — for the 4 team plan cards
   ══════════════════════════════════════════════════════════════ */
.annual-discount-badge {
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  margin-top: -14px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* Large tablets / small desktops */
@media (max-width: 992px) {
  .personal-card__features {
    grid-template-columns: repeat(3, auto);
    gap: 4px 16px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .personal-card__body {
    gap: 16px;
    padding: 16px 18px !important;
  }

  .personal-card__features {
    grid-template-columns: repeat(2, auto);
    gap: 4px 16px;
  }

  .personal-card__name {
    font-size: 18px;
  }

  .personal-card__amount {
    font-size: 26px;
  }
}

/* Large phones */
@media (max-width: 640px) {
  .personal-card__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .personal-card__right {
    align-items: flex-start;
    width: 100%;
  }

  .personal-card__price-cta {
    flex-wrap: wrap;
  }

  .personal-card__features {
    grid-template-columns: repeat(2, auto);
    gap: 4px 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .personal-card__features {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .personal-card__body {
    padding: 14px 14px !important;
  }

  .personal-card__amount {
    font-size: 24px;
  }

  .personal-card__btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   GET STARTED BUTTON HOVER — cards + table
   ══════════════════════════════════════════════════════════════ */

.pricing-buttons .btn-outline-secondary:hover,
.pricing-buttons .btn-outline-secondary:focus,
#pricingTable .btn-outline-secondary:hover,
#pricingTable .btn-outline-secondary:focus {
  background-color: #0694B7 !important;
  border-color: #0694B7 !important;
  color: #ffffff !important;
}

.personal-card__btn:hover,
.personal-card__btn:focus {
  background-color: #057A96 !important;
  border-color: #057A96 !important;
  color: #ffffff !important;
}

/* =========================================
   SECURITY SECTION 
========================================= */
/* ================= SECURITY SECTION ================= */

.security-section {
  background: #f9fbff;
  padding: 40px 40px;
}

.security-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


/* ================= MAIN HEADING ================= */

.security-heading {
  text-align: center;
  font-size: 36px;
  /* Desktop */
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}


/* ================= SUB HEADING ================= */

.security-subheading {
  text-align: center;
  font-size: 17px;
  /* Desktop */
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: #475569;
}


/* ================= GRID ================= */

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
}


/* ================= CARD ================= */

.security-card {
  background: linear-gradient(180deg, #eef4ff 0%, #e6efff 100%);
  padding: 35px;
  border-radius: 20px;
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 90, 255, 0.06);
  height: 100%;
}

.security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 90, 255, 0.10);
}


/* ================= ICON ================= */

.security-icon {
  font-size: 34px;
  margin-bottom: 20px;
}


/* ================= CARD TITLE ================= */

.security-title {
  font-size: 20px;
  /* Desktop */
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}


/* ================= CARD TEXT ================= */

.security-text {
  font-size: 15px;
  /* Desktop */
  line-height: 1.7;
  color: #475569;
}



/* =====================================================
   ✅ TABLET RESPONSIVE (1024px)
===================================================== */

@media (max-width: 1024px) {

  .security-section {
    padding: 40px 25px;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .security-subheading {
    margin-bottom: 40px;
  }
}



/* =====================================================
   ✅ MOBILE RESPONSIVE (768px)
===================================================== */

@media (max-width: 768px) {

  .security-section {
    padding: 35px 20px;
  }

  /* Heading Rule */
  .security-heading {
    font-size: 26px;
  }

  /* Sub text rule */
  .security-subheading {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .security-card {
    padding: 28px;
  }

  /* Card Heading rule */
  .security-title {
    font-size: 18px;
  }

  /* Card Paragraph rule */
  .security-text {
    font-size: 14px;
  }

  .security-icon {
    font-size: 30px;
  }
}



/* =====================================================
   ✅ SMALL MOBILE (480px)
===================================================== */

@media (max-width: 480px) {

  .security-section {
    padding: 30px 16px;
  }

  .security-heading {
    font-size: 26px;
  }

  .security-subheading {
    font-size: 16px;
  }

  .security-card {
    padding: 24px;
    border-radius: 16px;
  }
}

.security-features-wrapper {
  display: block;
  width: 100%;
  padding-bottom: 40px;
  /* Adds bottom spacing after cards */
}




/* =========================================
   INTEGRATION SECTION
========================================= */
/* =====================================================
   INTEGRATION SECTION
===================================================== */

.integration-section {
  background: #f9fbff;
  padding: 30px 20px;
}

.integration-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.integration-header {
  text-align: center;
  margin-bottom: 40px;
}

/* ✅ RULE: 36 desktop / 26 mobile */
.integration-main-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}

.integration-main-subheading {
  font-size: 17px;
  color: #64748b;
}


/* =====================================================
   BODY LAYOUT
===================================================== */

.integration-body {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}


/* =====================================================
   SIDEBAR
===================================================== */

/* Sidebar container */
.integration-sidebar {
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-height: 500px;
  overflow-y: auto;
  padding: 8px 0;
}

/* Scrollbar */
.integration-sidebar::-webkit-scrollbar {
  width: 4px;
}

.integration-sidebar::-webkit-scrollbar-thumb {
  background: #0694B7;
  border-radius: 10px;
}

.integration-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

/* Sidebar button */
.integration-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #5f6b7a;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* Left section (icon + text) */
.integration-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Sidebar icon */
.integration-sidebar-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Arrow icon */
.integration-arrow {
  font-size: 14px;
  opacity: 0;
  transition: all 0.2s ease;
  margin-left: auto;
}

/* Hover state */
.integration-tab:hover {
  background: #e8f7fb;
  color: #0694B7;
}

.integration-tab:hover .integration-arrow {
  opacity: 1;
  color: #0694B7;
}

/* Active state */
.integration-tab.active {
  background: #e8f7fb;
  color: #0694B7;
}

.integration-tab.active .integration-arrow {
  opacity: 1;
  color: #0694B7;
}

/* Sticky sidebar for desktop */
@media (min-width: 993px) {
  .integration-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

/* Tabs */
.integration-tab {
  background: transparent;
  border: none !important;
  outline: none;
  text-align: left;
  padding: 12px 14px;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
  /* ← needed for pseudo-element */
  transition: background 0.2s ease, color 0.2s ease;
}

.integration-tab:not(.active):hover {
  background: #D6EEF3;
  color: #0694B7;
  border-radius: 10px;
}

.integration-tab.active {
  background: #D6EEF3;
  color: #0694B7;
  font-weight: 600;
  border-radius: 10px;
}



.integration-tab:focus,
.integration-tab:focus-visible {
  outline: none;
}

/* =====================================================
   CONTENT
===================================================== */

.integration-content {
  flex: 1;
  min-width: 0;
}

.integration-panel {
  display: none;
}

.integration-panel.active {
  display: block;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */


.integration-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #232323;

  display: flex;
  align-items: center;
  gap: 10px;
  /* space between image and text */
}

.integration-subheading {
  font-size: 17px;
  margin-bottom: 30px;
  color: #0694B7;
}


/* =====================================================
   CARDS
===================================================== */

.integration-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.integration-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid #0694B7;
  transition: 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.integration-icon {
  font-size: 26px;
  color: #0694B7;
  margin-bottom: 14px;
}


/* ✅ Card Heading
   Desktop 20 | Mobile 18 */
.integration-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #232323;
}

/* ✅ Card Paragraph
   Desktop 15 | Mobile 14 */
.integration-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}



/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width:1200px) {

  .integration-body {
    gap: 40px;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width:992px) {

  .integration-section {
    padding: 20px 25px;
  }

  .integration-body {
    flex-direction: column;
    gap: 25px;
    /* ✅ gap fixed */
  }

  /* ✅ Scrollable Sidebar */
  .integration-sidebar {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    position: relative;
  }

  .integration-sidebar::-webkit-scrollbar {
    width: 6px;
  }

  .integration-sidebar::-webkit-scrollbar-thumb {
    background: #0694B7;
    border-radius: 10px;
  }

  .integration-cards {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px) {

  .integration-section {
    padding: 20px 20px;
  }

  /* ✅ Main heading */
  .integration-main-heading {
    font-size: 26px;
  }

  .integration-main-subheading {
    font-size: 16px;
  }

  /* ✅ Alibaba heading */
  .integration-heading {
    font-size: 20px;
  }

  .integration-subheading {
    font-size: 16px;
  }

  .integration-card {
    padding: 22px;
  }

  /* ✅ Card rules */
  .integration-card h3 {
    font-size: 18px;
  }

  .integration-card p {
    font-size: 14px;
  }

  .integration-sidebar {
    max-height: 260px;
    overflow-y: auto;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px) {

  .integration-heading {
    font-size: 20px;
  }

  .integration-main-heading {
    font-size: 26px;
  }

  .integration-tab {
    font-size: 13px;
    padding: 10px 12px;
  }

  .integration-sidebar-icon {
    width: 20px;
    height: 20px;
  }

  .integration-tab:not(.active):hover {
    background: #D6EEF3;
    color: #0694B7;
    border-radius: 10px;
  }


}

/* =========================================
   DOCUMENTATION
========================================= */
/* =====================================================
   GLOBAL
===================================================== */

html {
  scroll-behavior: smooth;
}


/* =====================================================
   WRAPPER
===================================================== */

.docs-wrapper {
  display: flex;
  background: #ffffff;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  gap: 40px;

}


/* =====================================================
   SIDEBAR
===================================================== */

.docs-sidebar {
  width: 260px;
  position: sticky;
  top: 100px;
  height: fit-content;
  background: #D6EEF3;
  padding: 25px;
  border-radius: 12px;
}

.docs-sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.docs-sidebar ul {
  list-style: none;
  padding: 0;
}

.docs-sidebar li {
  margin-bottom: 12px;
}

.docs-sidebar a {
  text-decoration: none;
  color: #054F5E;
  font-size: 15px;
  transition: 0.3s ease;
}

.docs-sidebar a:hover {
  color: #0694B7;
  transform: translateX(4px);
}

.docs-sidebar a.active {
  color: #0694B7;
  font-weight: 600;
  position: relative;
}

.docs-sidebar a.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 3px;
  height: 16px;
  width: 3px;
  background: #0694B7;
  border-radius: 2px;
}


/* =====================================================
   CONTENT
===================================================== */

.docs-content {
  flex: 1;
  max-width: 850px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
  margin-bottom: 35px;
}

/* ✅ MAIN HEADER RULE */
.hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0694B7;
}

/* ✅ SUB HEADER RULE */
.hero p {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
}


/* =====================================================
   SECTION
===================================================== */

.doc-section {
  margin-bottom: 10px;
  scroll-margin-top: 170px;
}


/* ✅ MAIN SECTION HEADER */
.doc-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
  border-left: 4px solid #0694B7;
  padding-left: 12px;
}

/* related intro */
.section-intro {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 25px;
}


/* =====================================================
   ITEMS
===================================================== */

.doc-item {
  margin-bottom: 20px;
}

/* ✅ SUB HEADERS */
.doc-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}



/* ✅ SUB POINTS */
.doc-item p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.note {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  margin-top: 5px;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width:992px) {

  .docs-wrapper {
    flex-direction: column;
    padding: 50px 25px;
  }

  .docs-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    max-height: 260px;
    overflow-y: auto;
  }

  .docs-content {
    max-width: 100%;
  }
}



/* =====================================================
   MOBILE TYPOGRAPHY
===================================================== */

@media (max-width:768px) {

  /* Main Header */
  .hero h1 {
    font-size: 26px;
  }

  /* Hero sub */
  .hero p {
    font-size: 15px;
  }

  /* Section headers */
  .doc-section h2 {
    font-size: 18px;
  }

  /* sub headers */
  .doc-item h3 {
    font-size: 16px;
  }

  /* points */
  .doc-item p {
    font-size: 14px;
  }

  .section-intro {
    font-size: 16px;
  }

  .docs-wrapper {
    padding: 40px 20px;
  }

  .doc-section {
    margin-bottom: 5px;

  }
}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px) {

  .docs-wrapper {
    padding: 35px 16px;
  }

  .docs-sidebar {
    padding: 18px;
  }

}

.sidebar-section {
  height: 85vh;
  overflow-y: auto;
}

.sidebar-section .sidebar {
  width: 100%;
  height: 480px;
  overflow-y: auto;
}

.terms-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
  height: calc(100vh - 80px);
  overflow: hidden;
}


.content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  scroll-behavior: smooth;
  max-height: 100%;
  padding-right: 10px;
  border-bottom: 1px solid rgb(226, 232, 240);
}

/* Sidebar fixed width */
.sidebar-section {
  width: 280px;
  flex-shrink: 0;
}




/* =============================================
   RESPONSIVE ADDITIONS — Terms & Conditions
   Add these rules AFTER your existing CSS block
   ============================================= */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  .terms-container {
    padding: 24px;
    gap: 16px;
  }

  .sidebar-section {
    width: 230px;
  }
}

/* Mobile landscape + small tablet: up to 768px */
@media (max-width: 768px) {
  .terms-container {
    flex-direction: column;
    height: auto;
    /* let the page scroll naturally */
    overflow: visible;
    padding: 16px;
    gap: 16px;
  }

  /* Sidebar spans full width above the content */
  .sidebar-section {
    width: 100%;
  }

  /* Sidebar list scrolls horizontally on small screens */
  .sidebar-section .sidebar {
    height: auto;
    max-height: 250px;
    /* keeps it compact */
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Content area loses the fixed height and scrolls with the page */
  .content-section {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

/* Small phones: up to 480px */
@media (max-width: 480px) {
  .terms-container {
    padding: 12px;
  }

  .sidebar-section .sidebar {
    max-height: 250px;
  }
}

html {
  scroll-behavior: smooth;
}

/* ===== Card Container ===== */
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #057A96;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.card-header h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  color: #0f172a;
  width: 100%;
}

.card-header p {
  font-size: 14px;
  margin: 4px 0 0;
  color: #475569;
}

/* ===== Card Body ===== */
.card-body {
  padding: 30px;
}

.card-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #334155;
}

/* ===== Info / Notice Boxes ===== */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.info-box h3 {
  margin: 0 0 8px;
  font-weight: 600;
  color: #1e3a8a;
  font-size: x-large;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #1e40af;
}

.info-icon {
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 2px;
}

.notice-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  gap: 10px;
}



.notice-box h3 {
  margin: 0 0 8px;
  font-weight: 600;
  color: #78350f;
  font-size: x-large;
}

.notice-box p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
}

.notice-icon {
  flex-shrink: 0;
  color: #d97706;
  margin-top: 2px;
}

.promo-box-terms {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-box-terms h4 {
  margin: 0 0 10px;
  color: black;
}

.promo-box-terms p {
  color: black;
  margin: 0 0 10px;
  font-size: 14px;
}

.card-body ul.list-unstyled li {
  margin-bottom: 0.5rem;
}

.privacy-sub-heading {
  color: black !important;
  font-weight: 600;
}




/* ===============================
   POCKET FOOTER MAIN
================================*/
.pocket-footer {
  background: #000000;
  padding: 60px 60px 20px;
  /* reduced bottom padding */
  color: #ffffff;
}

/* Grid Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  /* slightly reduced gap */
  max-width: 1400px;
  margin: 0 auto 40px;
  /* space before bottom section */
}

/* Column Titles */
.footer-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 13px;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

/* ===============================
   FOOTER BOTTOM
================================*/
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0 0;
  /* removed extra bottom padding */
  display: flex;
  align-items: center;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.6;
}

/* Center Copyright */
.copyright-text {
  position: absolute;
  right: 0;
  font-size: 14px;
  color: #aaaaaa;
}

h5.footer-sub-heading {
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;

}

/* ===============================
   RESPONSIVE
================================*/

/* Large Laptop */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .pocket-footer {
    padding: 50px 40px 20px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .pocket-footer {
    padding: 45px 30px 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  .pocket-footer {
    padding: 40px 20px 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .copyright-text {
    position: static;
    transform: none;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    font-size: 18px;
  }
}

/* ===============================
   ABOUT SECTION
================================*/
/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
  padding: 60px 0 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  gap: 40px;
  /* controls space between sections */
}


/* =====================================================
   ROW LAYOUT
===================================================== */

.about-row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 30px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}


/* =====================================================
   IMAGE
===================================================== */

.about-image {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.about-image video {
  width: 100%;
  max-width: 520px;
  height: 340px;

  display: block;
  object-fit: cover;

  border-radius: 16px;
}

/* =====================================================
   CONTENT
===================================================== */

.about-content {
  flex: 1;
}


/* ✅ MAIN TITLE RULE
   Desktop 36 | Mobile 26 */
.about-main-title {
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}


/* ✅ SUBTITLE RULE
   Desktop 20 | Mobile 18 */
.about-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}


/* ✅ PARAGRAPH RULE
   Desktop 15 | Mobile 14 */
.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}



/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

  .about-row {
    gap: 50px;
  }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

  .about-section {
    padding: 60px 0 30px;
  }

  .about-container {
    padding: 0 30px;
  }

  .about-row {
    flex-direction: column;
    text-align: center;
    gap: 35px;
    margin-bottom: 30px;
    /* ✅ reduced */
  }

  .about-row.reverse {
    flex-direction: column;
  }

  .about-content p {
    max-width: 100%;
  }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .about-container {
    padding: 0 20px;
  }

  /* Typography scaling */
  .about-main-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-image {
    padding: 25px;
  }

  .about-row {
    gap: 28px;
    margin-bottom: 20px;
    /* ✅ smaller */
  }

  .about-image video {

    height: auto;


  }

  .about-image video {

    height: auto;


  }

  .about-image video {

    height: auto;


  }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .about-section {
    padding: 50px 0 25px;
  }

  .about-row {
    gap: 24px;
    margin-bottom: 10px;
    /* ✅ final spacing */
  }

  .about-image {
    padding: 20px;
    border-radius: 14px;
  }

}

/* Contact CSS */
.contact-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0 20px;
}

.contact-container {
  width: 70%;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;

}

.contact-header .heading {
  font-size: 36px;
  letter-spacing: 0.92px;
  color: black;
  font-weight: 600;
  text-align: center;
}

.contact-header span {
  letter-spacing: 0.32px;
  color: #5b6880;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  max-width: 450px;
  width: 100%;
}

.support-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.support-cards .card {
  min-height: 205px;
  /* keeps desktop size */
  max-width: 500px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;

  display: flex;
  flex-direction: column;

  box-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.05),
    0px 4px 12px rgba(0, 0, 0, 0.06);
}

.support-cards .card-2 {
  height: 205px;
  max-width: 408px;
  width: 100%;
  padding: 32px;
}

.card-head-2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.card-head-2 .card-heading {
  font-size: 20px;
  font-weight: 500;
  color: black;
}

.card-head-2 .card-info {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.mail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-head .card-heading {
  font-size: 20px;
  font-weight: 500;
  color: black;
}

.card-head .card-info {
  padding: 5px 0 8px 0;
  font-size: 15px;
  font-weight: 400;
}

.card-btn {
  padding: 5px 0;
  border: 1px solid #E5E7EB;
  border-radius: 5px;
  cursor: pointer;
  outline: none !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.card-btn:hover {
  background: #0694B7;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
  transform: translateY(-2px);
}

.card-btn a {
  color: black !important;
}

.card-btn a:hover {
  color: white !important;
}

.card-2 span:hover {
  cursor: pointer;
  color: #0694B7;
  font-weight: 500;
}

@media (max-width: 786px) {
  .support-cards .card {
    height: auto;
  }

  .support-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-header .heading {
    font-size: 26px;
  }

  .card-head-2 .card-heading {
    font-size: 18px;
    font-weight: 500;
    color: black;
  }

  .card-head-2 .card-info {
    font-size: 14px;
    font-weight: 400;
  }

  .card-head .card-heading {
    font-size: 18px;
    font-weight: 500;
    color: black;
    padding-top: 10px;
  }

  .card-head .card-info {
    padding: 5px 0 8px 0;
    font-size: 14px;
    font-weight: 400;
  }

  .contact-header span {
    font-size: 15px;
  }

}

@media (max-width:500px) {
  .contact-header {
    width: 90%;
  }
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.contact-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  transform: scale(0.95);
  transition: all 0.25s ease;
  height: 85vh;
  overflow-y: auto;

  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #0694B7 transparent;

  position: relative;
}

/* Chrome / Edge / Safari scrollbar */
.contact-modal::-webkit-scrollbar {
  width: 2px;
}

.contact-modal::-webkit-scrollbar-track {
  background: transparent;
}

.contact-modal::-webkit-scrollbar-thumb {
  background: #0694B7;
  border-radius: 4px;
}

/* Close button */
.contact-support {
  position: absolute;
  top: 20px;
  right: 22px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Title */
.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.form-group label {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 6px;
  display: block;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}

/* Footer */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.modal-note {
  font-size: 13px;
  color: #6B7280;
}

.modal-note a {
  color: #0694B7;
  text-decoration: none;
}

/* Button */
.modal-btn {
  padding: 10px 18px;
  background: #0694B7;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.modal-btn:hover {
  background: #1D4ED8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .contact-modal {
    padding: 20px;
  }

  .modal-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-btn {
    width: 100%;
    text-align: center;
  }

  /* thinner scrollbar */
  .contact-modal::-webkit-scrollbar {
    width: 3px;
  }

  .contact-modal::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}

.modal-overlay:visible .contact-modal {
  transform: scale(1);
  opacity: 1;
}

/* Overlay */
.support-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.support-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.support-modal {
  width: 100%;
  max-width: 560px;
  min-height: 260px;

  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;

  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Main Text */
.support-text {
  font-size: 16px;
  color: #111827;
  line-height: 1.5;
}

/* Login Button (Same style as first popup button) */
.support-login-btn {
  align-self: center;
  padding: 10px 22px;

  background: #0694B7;
  color: #ffffff;

  border: none;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.support-login-btn:hover {

  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

/* Footer Text */
.support-alt {
  font-size: 14px;
  color: #6B7280;
}

.support-alt a {
  color: #0694B7;
  text-decoration: none;
}

.support-alt a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
  .support-modal {
    padding: 28px 20px;
  }

  .support-text {
    font-size: 15px;
  }

}

/*Solutions by use case*/
.use-case-content {
  background-color: #FAFAFA;
  padding: 60px 0;
}

.text-section {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 0 16px;
  /* prevent edge clipping on small screens */
  box-sizing: border-box;
}

.text-section p {
  text-align: center;
}

.use-case-heading {
  color: #232323;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 80px;
  padding: 0 24px;
  box-sizing: border-box;
  margin-right: 80px;
  margin-left: 80px;
}

.usecase-card {
  display: flex;
  flex-direction: column;

  border-radius: 10px;
  width: 100%;
  /* was fixed 600px — now fluid */

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.usecase-card:nth-child(1) {
  transition-delay: 0s;
}

.usecase-card:nth-child(2) {
  transition-delay: 0.15s;
}

.usecase-card:nth-child(3) {
  transition-delay: 0.3s;
}

.usecase-card:nth-child(4) {
  transition-delay: 0.45s;
}

.usecase-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-video video {
  width: 100%;
  /* fill the card */
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.usecase-card h1 {
  font-size: 32px;
  font-weight: 600;
  color: #232323;
  padding-top: 24px;
  padding-bottom: 8px;
}

.usecase-card h6 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}

.usecase-card p {
  font-size: 14px;
  font-weight: 400;
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .usecase-grid {
    gap: 40px;
    margin-top: 60px;
    margin-right: 0;
    margin-left: 0;
  }

  .usecase-card h1 {
    font-size: 28px;
  }

  .card-video video {
    height: 240px;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .use-case-content {
    padding: 40px 0;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    /* single column */
    gap: 40px;
    margin-top: 40px;
    margin-right: 0;
    margin-left: 0;
    padding: 0 16px;
  }

  .usecase-card h1 {
    font-size: 24px;
    padding-top: 16px;
  }

  .usecase-card h6 {
    font-size: 17px;
  }

  .card-video video {
    height: 300px;
  }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .usecase-grid {
    gap: 28px;
    padding: 0 12px;
    margin-right: 0;
    margin-left: 0;
  }

  .usecase-card h1 {
    font-size: 20px;
  }

  .usecase-card h6 {
    font-size: 15px;
  }

  .card-video video {
    height: 180px;
  }
}




/*Solutions by team type*/
.team-container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-left: 20px;
  margin-right: 20px;
}

.team-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* Main heading */
.card-heading {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

/* Subheading */
.card-subheading {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin: 0;
}

/* Description text */
.card-desc {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin-top: 6px;
}

/* Image container */
.card-image {
  margin-top: 2px;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width:768px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
}

@media (max-width:640px) {
  .team-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*careers section*/
.careers-section {
  background-color: #f5f7fa;
  padding: 100px 0;
}

.careers-title {
  font-size: 36px;
  font-weight: 500;

  color: black;
}

.careers-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  max-width: 600px;
}

.btn-careers {
  background-color: #057A96;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-careers:hover {
  color: #fff;
}

.careers-image {
  border-radius: 6px;
  object-fit: cover;

}

@media (max-width: 991px) {
  .careers-title {
    font-size: 26px;
  }

  .careers-section {
    padding: 60px 0;
  }

  .careers-text {
    font-size: 15px;
  }

  .roles-section h2 {
    font-size: 26px !important;
  }

}

.cultures-section {
  background-color: #D6EEF3;
  padding: 20px;
}

.cultures-title {
  font-size: 36px;
  font-weight: 500;
  color: black;
  padding-bottom: 10px;
}

.cultures-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  max-width: 600px;
}

.defines-heading {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

.cultures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 15px;
}

@media (min-width:300px) and (max-width:640px) {
  .cultures-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width:640px) and (max-width:768px) {
  .cultures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.cultures-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.cultures-card img {
  height: 220px;
  object-fit: cover;
}

.cultures-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cultures-card .card-body {
  padding: 20px;
}

.cultures-card .card-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.cultures-card .card-text {
  font-size: 15px;
  color: #555;
}

/* ================= BENEFITS SECTION ================= */

.benefits-section {
  background-color: #EBEBEB;
  padding: 40px;
}

/* container stays column */
.benefits-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= MAIN HEADING ================= */

.benefits-title {
  font-size: 36px;
  color: black;
  margin-bottom: 40px;
  text-align: center;
}

/* ================= LEFT RIGHT LAYOUT ================= */

.benefits-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
}

/* ================= IMAGE FIXED SIZE ================= */

.benefits-image {
  width: 600px;
  height: 420px;
  flex-shrink: 0;
}

.benefits-image img {
  width: 600px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ================= CONTENT ================= */

.benefits-content {
  max-width: 520px;
}

/* ================= BENEFITS LIST ================= */

.benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

  .benefits-section {
    padding: 20px;
  }

  .benefits-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .benefits-image {
    width: 100%;
    height: auto;
  }

  .benefits-image img {
    width: 100%;
    height: auto;
  }

  .benefits-title {
    font-size: 26px;
    margin-bottom: 20px;
  }


  .benefit {
    align-items: flex-start !important;
  }

  .cultures-title {
    font-size: 26px;
  }
}


.roles-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.roles-section h2 {
  color: black;
  font-size: 36px;
}

.table-header {
  border-bottom: 1px solid #EBEBEB;
  padding-top: 20px;
  padding-bottom: 12px;
  color: black;
}

.roles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}

.role-table {
  width: 100%;


  border-collapse: collapse;
}

.role-table tbody tr {
  border-bottom: 2px dashed gray;
  transition: background 0.3s ease;
}

.role-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.role-table td {
  padding: 28px 10px;
  font-size: 16px;
}

.role-table td:first-child {
  color: black;
  font-weight: 600;
  width: 50%;
}

.role-table td:nth-child(2) {
  color: #8b949e;
  width: 30%;
}

.role-table td:last-child {
  text-align: right;
  width: 20%;
}

.role-table a {
  color: #4f7cff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.role-table a:hover {
  color: #7fa2ff;
}

.integration-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.industry-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 400px;
}

@media (max-width:1023px) {
  .industry-menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 360px;
  }
}


/****** NEWS and BLOG LAYOUT *******/

.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}

/* Tablet */
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Screens */
@media (min-width: 1600px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modern-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modern-card .thumb {
  position: relative;
  overflow: hidden;
}

.modern-card .thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.modern-card:hover .thumb img {
  transform: scale(1.08);
}

.modern-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modern-card:hover .thumb::after {
  opacity: 1;
}

.single-blog-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Date */
.post-meta {
  padding: 0;
  margin: 0 0 8px 0;
}

.post-meta li {
  font-size: 13px;
  color: #6b7280;
  list-style: none;
}

/* Title */
.modern-card h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  color: #0694B7;
}

/* Description */
.modern-card p {
  font-size: 14px;
  color: #232323;
  line-height: 1.6;
  margin-bottom: 18px;
}

.article-link {
  margin-top: auto;
  font-weight: 500;
  color: #0694B7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.article-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-wrapper {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.article-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111827;
}

/* Meta */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 40px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-image {
  margin-bottom: 40px;
}

.article-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.article-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #374151;
}

@media (max-width: 768px) {

  .article-wrapper {
    margin: 40px auto;
  }

  .article-title {
    font-size: 26px;
  }

  .article-content p {
    font-size: 16px;
  }
}

/*Sector Adaptive section*/
/* ================= SECTION ================= */

.sector-adaptive-section {
  background: linear-gradient(180deg, #dff3f9 0%, #bfe3ee 100%);
  padding: 20px 0;
}

.sector-adaptive-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px 40px;
}


/* ================= MAIN HEADER ================= */

.sector-main-header {
  text-align: center;
  margin: 20px 0;
}

.sector-main-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: #111111;
  line-height: 1.15;
  margin: 0;
}


/* ================= TABS ================= */

.sector-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.sector-tab {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: #444;
  transition: all 0.3s ease;

  /* ✅ remove mobile tap highlight */
  -webkit-tap-highlight-color: transparent;
}

/* ✅ REMOVE UGLY BLACK BORDER */
.sector-tab:focus,
.sector-tab:active,
.sector-tab:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Hover */
.sector-tab:hover {
  background: #f3f4f6;
}

/* Active Tab */
.sector-tab.active {
  color: #0694B7;
  border-bottom: 2px solid #0694B7;
}


/* ================= CONTENT ================= */

.sector-content-area {
  width: 100%;
}

.sector-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sector-content.active {
  display: flex;
}

.sector-left {
  flex: 1;
}

.sector-number {
  font-size: 40px;
  color: #0694B7;
  margin-bottom: 10px;
}

/* CONTENT HEADING */

.sector-heading {
  font-size: 20px;
  font-weight: 600;
  color: #2d3561;
  margin-bottom: 20px;
}

/* CONTENT TEXT */

.sector-text {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
  margin-bottom: 12px;
}


/* ================= IMAGE ================= */

.sector-right {
  flex: 1;
}

.sector-right video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ================= TABLET ================= */

@media (max-width:992px) {

  .sector-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .sector-number {
    font-size: 30px;
  }

}


/* ================= TAB SCROLL ================= */

@media (max-width:930px) {

  .sector-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 5px;
  }

  .sector-tabs::-webkit-scrollbar {
    display: none;
  }

  .sector-tab {
    flex: 0 0 auto;
  }

}


/* ================= MOBILE ================= */

@media (max-width:768px) {

  .sector-adaptive-wrapper {
    padding: 0 20px 40px;
  }

  .sector-main-header h2 {
    font-size: 26px;
  }

  .sector-tab {
    font-size: 18px;
    padding: 8px 14px;
  }

  .sector-heading {
    font-size: 18px;
  }

  .sector-text {
    font-size: 14px;
  }

  .sector-number {
    font-size: 20px;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px) {

  .sector-adaptive-wrapper {
    padding: 0 16px 40px;
  }

}

/*Storage */
/* ================= SECTION ================= */

.storage-integration-section {
  background: #F5F5F5;
  padding: 20px 0;
}

.storage-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px 40px;
}


/* ================= MAIN HEADING ================= */

.storage-main-heading {
  font-size: 36px;
  font-weight: 600;
  color: #111111;
  line-height: 1.15;
  margin: 20px 0;
  text-align: left;
}


/* ================= LAYOUT ================= */

.storage-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.storage-left {
  flex: 1;
}


/* ================= ACCORDION ITEM ================= */

.storage-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}


/* HEADER */

.storage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 20px;
  font-weight: 600;
  color: #2d3561;

  transition: 0.3s ease;
}

/* hover polish */
.storage-header:hover {
  color: #0694B7;
}


/* ARROW */

.arrow {
  transition: transform 0.3s ease;
}

.storage-item.active .arrow {
  transform: rotate(180deg);
}


/* ================= BODY ================= */

.storage-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.storage-body-content {
  padding-top: 10px;
}

.storage-body-content p {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
}


/* ================= MOBILE VIDEO (hidden on desktop) ================= */

.storage-video-mobile {
  display: none;
}


/* ================= IMAGE ================= */

.storage-right {
  flex: 1;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 11 / 8;
  overflow: hidden;
}

.storage-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================= TABLET ================= */

@media (max-width:992px) {

  .storage-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .storage-main-heading {
    text-align: center;
  }

}


/* ================= MOBILE ================= */

@media (max-width:768px) {

  .storage-wrapper {
    padding: 0 20px 40px;
  }

  /* MAIN HEADING */
  .storage-main-heading {
    font-size: 26px;
    text-align: center;
  }

  /* ACCORDION HEADER */
  .storage-header {
    font-size: 18px;
  }

  /* PARAGRAPH */
  .storage-body-content p {
    font-size: 14px;
  }

  /* Hide desktop video panel */
  .storage-right {
    display: none;
  }

  /* Show mobile video inside active accordion only */
  .storage-item.active .storage-video-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 11 / 8;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 14px;
  }

  .storage-item.active .storage-video-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px) {

  .storage-wrapper {
    padding: 0 16px 40px;
  }

}

.pricing-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.industry-list {
  border-left: 1px solid #333;
  /* margin-left: 10px; */
}

.panel {
  border-radius: 8px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
  border: none;
}

.panel-heading {
  background: #fff !important;
  border-bottom: 2px solid #e8f6f9;
  border-radius: 8px 8px 0 0 !important;
  padding: 14px 20px;
}

.panel-heading h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #057A96;
}

.panel-heading h4 .badge {
  background: #057A96;
  margin-right: 6px;
  font-size: 11px;
}

.panel-body {
  padding: 20px;
}

.btn-brand {
  background-color: #057A96;
  border-color: #046a83;
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: #046a83;
  border-color: #035e74;
  color: #fff;
}

.btn-brand:active {
  background-color: #035e74;
  color: #fff;
}

.btn-brand:disabled,
.btn-brand[disabled] {
  background-color: #7ab5c4;
  border-color: #7ab5c4;
}

.req {
  color: #057A96;
}

.plan-box {
  background: #e8f6f9;
  border: 1px solid #057A96;
  border-radius: 6px;
  padding: 14px 16px;
}

.plan-box .plan-price {
  font-size: 22px;
  font-weight: 700;
  color: #057A96;
}

.plan-box ul {
  padding-left: 0;
  list-style: none;
  margin: 10px 0 0;
}

.plan-box ul li {
  font-size: 13px;
  color: #2c5a68;
  padding: 2px 0;
}

.plan-box ul li:before {
  content: '✓ ';
  color: #057A96;
  font-weight: 700;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0f4f6;
  color: #777;
  font-size: 14px;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0 14px;
  border-top: 2px solid #ddd;
  margin-top: 4px;
}


.sidebar-sticky {
  background-color: #314F7217;
  border: 1px solid #00000000;
  border-radius: 16px;
}

@media (min-width: 992px) {
  .sidebar-sticky {
    position: sticky;
    top: 20px;
  }
}

#toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: #057A96;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
  font-size: 14px;
}

#toast.show {
  display: block;
}

.bank-link {
  text-align: center;
  font-size: 13px;
  color: #057A96;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 10px;
  display: block;
}

/* Hide feedback icons until validation has run */
.form-control-feedback {
  display: none;
}

.has-success .form-control-feedback,
.has-error .form-control-feedback {
  display: block;
}

.review-field {
  margin-bottom: 14px;
}

.review-label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  display: block;
}

.review-value {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid #f0f4f6;
}

#reviewView .panel {
  animation: fadeInUp 0.35s ease both;
}

#reviewView .panel:nth-child(2) {
  animation-delay: 0.08s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-block {
  font-size: 12px !important;
}

.discount-text {
  font-size: 12px;
  font-weight: 600;
  color: green;
}

/* =============================
           MAP SECTION STYLES
        ============================= */
.map-section {
  padding: 60px 0 80px;
  background: #f8f9fb;
}

.map-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.map-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.map-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.map-section-header p {
  color: #666;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Map Container */
#office-map {
  width: 100%;
  height: 460px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 2px solid #e8ecf0;
  position: relative;
  z-index: 0;
}

/* Info Panel */
.map-info-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.map-office-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #eaedf2;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.map-office-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #057A96;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.map-office-card:hover,
.map-office-card.active {
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
  transform: translateY(-2px);
}

.map-office-card:hover::before,
.map-office-card.active::before {
  opacity: 1;
}

.map-office-card .office-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.map-office-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.map-office-card h1 {
  font-size: 20px;
  font-weight: 600;
  color: #057a96;
  padding-bottom: 6px;
}

.map-office-card .office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
}

.map-office-card .office-detail i {
  color: #057a96;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
  border: 1.5px solid #4CAF50;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.map-directions-btn:hover {
  background: #4CAF50;
  color: #fff;
  text-decoration: none;
}

/* Custom Leaflet Popup */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
}

.custom-popup {
  padding: 16px 18px;
  min-width: 200px;
}

.custom-popup h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.custom-popup p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.custom-popup .popup-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }

  #office-map {
    height: 350px;
  }

  .map-info-panel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .map-office-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 600px) {
  .map-section-header h2 {
    font-size: 1.5rem;
  }

  .map-info-panel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

#open-positions {
  scroll-margin-top: 120px;
}

.custom-tooltip {
  background: #fff;
  border: none !important;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  width: 220px !important;
  max-width: 220px !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  pointer-events: none;
}

.custom-tooltip::before {
  border: none !important;
}

.leaflet-tooltip-left::before,
.leaflet-tooltip-right::before,
.leaflet-tooltip-top::before,
.leaflet-tooltip-bottom::before {
  display: none !important;
}

.custom-tooltip h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.custom-tooltip p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ===============================
   FAQ CARDS WRAPPER
================================ */
/* ===============================
   FAQ CARDS WRAPPER
================================ */

.faq-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
}

/* ===============================
   PHONE & EMAIL CARD (full width)
================================ */

.faq-card-contact {
  width: 100%;
  max-width: 860px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;

  box-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.05),
    0px 4px 12px rgba(0, 0, 0, 0.06);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card-contact:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 12px 30px rgba(0, 0, 0, 0.12),
    0px 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===============================
   ADDRESS CARDS ROW (3 cards)
================================ */

.faq-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 860px;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 30px;
  min-height: 160px;

  display: flex;
  /* justify-content: center; */
  align-items: center;

  box-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.05),
    0px 4px 12px rgba(0, 0, 0, 0.06);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 12px 30px rgba(0, 0, 0, 0.12),
    0px 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===============================
   CARD CONTENT
================================ */

.faq-card-head {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
}

.faq-card-heading {
  font-size: 20px;
  font-weight: 600;
  color: #0694B7;
  margin-bottom: 12px;
}

.faq-card-info {
  font-size: 15px;
  font-weight: 400;
  color: #6B7280;
  margin: 2px 0;
  line-height: 1.6;
}

.region-heading {
  font-weight: 600;
  padding-bottom: 6px;
  color: black;
}

.faq-contact-divider {
  width: 1px;
  height: 80px;
  background-color: #E5E7EB;
}

/* On mobile, switch to horizontal divider */
@media (max-width: 900px) {
  .faq-contact-divider {
    width: 80px;
    height: 1px;
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .faq-cards-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .faq-card-contact {
    flex-direction: column;
    gap: 30px;
  }

  .faq-card-heading {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faq-cards {
    gap: 20px;
    margin: 10px 0;
  }

  .faq-card,
  .faq-card-contact {
    padding: 20px;
  }

  .faq-card-info {
    font-size: 14px;
  }
}

/* Pricing Title Row */
.pricing-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-title-row .title {
  margin: 0;
}

/* Currency Dropdown */

.pricing-header {
  position: relative;
}

.currency-dropdown-wrapper {
  position: absolute;
  left: 120%;
  width: 200px;
}


.currency-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  width: 100%;
  outline: none;
  /* ADD THIS */
}

.currency-btn:focus {
  outline: none;
}

.currency-btn:hover,
.currency-btn.open {
  border-color: #057A96;
  box-shadow: 0 0 0 3px rgba(5, 122, 150, 0.12);
}

.currency-chevron {
  color: #6b7280;
  transition: transform 0.25s ease;
}

.currency-btn.open .currency-chevron {
  transform: rotate(180deg);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 6px;
  margin: 0;

  z-index: 999;
  display: none;
  animation: currencyFadeIn 0.18s ease;

  text-align: left;
  width: 200px;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #b6c2cc transparent;
}

/* Scrollbar styling (optional but cleaner) */
.currency-menu::-webkit-scrollbar {
  width: 2px;
}

.currency-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

.currency-menu::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.currency-menu.open {
  display: block;
}

@keyframes currencyFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.currency-menu li {
  padding: 9px 14px;
  font-size: 13.5px;
  color: #374151;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  list-style: none;
}

.currency-menu li:hover {
  background: #f0f9fb;
  color: #057A96;
}

.currency-menu li.selected {
  background: #e0f4f8;
  color: #057A96;
  font-weight: 600;
}

@media (max-width:768px) {
  .currency-dropdown-wrapper {
    position: absolute;
    left: 68%;
    top: 100%;
  }
}

@media (min-width:640px) and (max-width:767px) {
  .currency-dropdown-wrapper {
    position: absolute;
    left: 58%;
    top: 100%;
  }
}

@media (max-width : 640px) {
  .currency-dropdown-wrapper {
    left: 34%;
  }
}

@media (max-width : 480px) {
  .currency-dropdown-wrapper {
    left: 22%;
  }
}

@media (min-width:1024px) and (max-width:1400px) {
  .currency-dropdown-wrapper {
    left: 115%;
  }
}

#sales-enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  animation: seOverlayIn 0.25s ease;
}

@keyframes seOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Modal box */
#sales-enquiry-modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: seModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  /* contact-modal already has padding */
}

@keyframes seModalIn {
  from {
    transform: translateY(30px) scale(0.97);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Close button */
#sales-enquiry-close {
  position: absolute;
  top: 14px;
  right: 28px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  z-index: 10;
  transition: color 0.15s;
}

#sales-enquiry-close:hover {
  color: #000;
}

/* Scrollbar styling inside modal */
#sales-enquiry-modal::-webkit-scrollbar {
  width: 6px;
}

#sales-enquiry-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#sales-enquiry-modal::-webkit-scrollbar-thumb {
  background: #0694B7;
  border-radius: 4px;
}

#sales-enquiry-modal::-webkit-scrollbar-thumb:hover {
  background: #057c98;
}

/* ============================================================
   payment.css
   ============================================================
   These are ONLY the new styles needed for the payment page.
   All existing site styles (panel, plan-box, summary-row,
   sidebar-sticky, btn-brand, form-control, etc.) are already
   in your site CSS and are NOT redefined here.

   Every new class is prefixed with "pay-" to avoid collisions.

   Primary palette: #057A96 (matching your site's --primary).
   ============================================================ */


/* ============================================================
   .line — DIVIDER (primary palette gradient)
   Usage: <hr class="line"> or <div class="line"></div>
   ============================================================ */


/* ============================================================
   PAY-PLAN-SELECTOR
   The "Change Plan" edit section inside the order summary.
   Contains a label and a 2×2 grid of clickable plan tiles.
   ============================================================ */

/* Wrapper — small bottom margin before the hr divider */
.pay-plan-selector {
  margin-bottom: 4px;
}

/* Section label above the tiles */
.pay-plan-selector__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin: 0 0 8px;
}

/* 2-column grid of plan tiles */
.pay-plan-selector__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Individual plan tile — default (unselected) state */
.pay-plan-tile {
  border: 2px solid #d1e8ef;
  border-radius: 6px;
  padding: 9px 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  user-select: none;
  background: #fff;
  line-height: 1.3;
}

.pay-plan-tile:hover {
  border-color: #7ecadb;
  background: #f0f9fc;
}

/* Active / selected plan tile */
.pay-plan-tile.selected {
  border-color: #057A96;
  background: #e8f6f9;
  color: #057A96;
}

/* Price sub-label inside each tile (e.g. "₹499") */
.pay-plan-tile__price {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin-top: 2px;
}

/* Price sub-label colour inside selected tile */
.pay-plan-tile.selected .pay-plan-tile__price {
  color: #057A96;
}


/* ============================================================
   PAY-MODAL-OVERLAY
   Full-screen backdrop that dims the page behind the modal.
   Hidden by default; JS adds .open to show it.
   ============================================================ */
.pay-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 35, 0.52);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Show state toggled by JS */
.pay-modal-overlay.open {
  display: flex;
}


/* ============================================================
   PAY-MODAL-BOX
   The white floating card in the centre of the modal overlay.
   ============================================================ */
.pay-modal-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(5, 122, 150, 0.18);
  width: 100%;
  max-width: 460px;
  padding: 30px 28px 24px;
  position: relative;
  animation: payModalSlideIn 0.28s cubic-bezier(0.22, 0.68, 0, 1.2);
}

/* Entrance animation for modal box */
@keyframes payModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ✕ Close button (top-right corner) */
.pay-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
  transition: color 0.15s;
  padding: 0;
}

.pay-modal-close:hover {
  color: #333;
}

/* Modal heading */
.pay-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2533;
  margin: 0 0 4px;
}

/* Modal sub-heading */
.pay-modal-subtitle {
  font-size: 13px;
  color: #999;
  margin-bottom: 18px;
}


/* ============================================================
   PAY-CHIP-STRIP
   Decorative fake credit-card header inside the modal.
   Shows a gold chip + masked card number + VISA wordmark.
   ============================================================ */
.pay-chip-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #e8f6f9 0%, #d0eef5 100%);
  border: 1px solid #b3dde6;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

/* Gold chip rectangle */
.pay-chip-icon {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #f6c941 0%, #e0a800 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Right-side track (dots + brand) */
.pay-chip-track {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Masked card digit groups */
.pay-chip-dots {
  font-size: 18px;
  letter-spacing: 5px;
  color: #7a9fac;
}

/* VISA wordmark */
.pay-chip-brand {
  font-size: 20px;
  font-weight: 800;
  color: #1a1f71;
  letter-spacing: -0.5px;
  font-family: Georgia, serif;
}


/* ============================================================
   PAY-CARD-INPUT
   Card number input — wider letter-spacing for readability.
   ============================================================ */
.pay-card-input {
  letter-spacing: 3px;
  font-size: 15px;
}


/* ============================================================
   PAY-AMOUNT-BOX
   Amount reminder strip shown above Confirm button in modal.
   ============================================================ */
.pay-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f6f9;
  border: 1px solid #b3dde6;
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 14px;
}


/* ============================================================
   REVIEW VIEW — read-only display shown after Save & Verify
   These extend your existing .review-field / .review-label /
   .review-value classes with an Edit button row style.
   ============================================================ */

/* Header row inside review panel: title + Edit button side-by-side */
.pay-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Edit button inside the review panel heading */
.pay-edit-btn {
  font-size: 12px;
  padding: 3px 12px;
  border: 1px solid #057A96;
  color: #057A96;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1.5;
}

.pay-edit-btn:hover {
  background: #057A96;
  color: #fff;
}


/* ============================================================
   COUPON MESSAGE COLOURS
   Applied by JS to #couponMsg depending on result.
   ============================================================ */
.pay-coupon-ok {
  color: #16a34a;
}

/* valid code   */
.pay-coupon-err {
  color: #dc2626;
}

/* invalid code */


/* ============================================================
   PRICING TABLE — price sub-line in column headers
   Added by pricing.js dynamically via updateTableButtons().
   Paste this into your site/pricing CSS file.
   ============================================================ */

/* Price amount shown below plan name in each <th> */
.table-plan-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #057A96;
  margin-top: 4px;
  letter-spacing: 0;
}

/* Make the th label text style consistent */
#pricingTable thead th {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  vertical-align: middle;
  padding-bottom: 10px;
}

/* ── Table header: original price (struck through when annual discount active) ── */
.table-price-original {
  text-decoration: line-through;
  color: #aaa;
  font-weight: 400;
  font-size: 12px;
  margin-right: 3px;
}

/* ── Table header: qty × total line ── */
.table-plan-qty {
  display: block;
  font-size: 11px;
  color: #057A96;
  font-weight: 500;
  margin-top: 2px;
}


/* ============================================================
   thankyou.css
   Styles for the Thank You / Order Confirmation page.
   Matches existing site palette: primary #057A96.
   All classes prefixed with "ty-" to avoid conflicts.
   ============================================================ */


/* ============================================================
   CSS VARIABLES — site palette tokens
   ============================================================ */
:root {
  --ty-primary: #057A96;
  --ty-primary-dark: #046a83;
  --ty-primary-light: #e8f6f9;
  --ty-primary-mid: #b3dde6;
  --ty-primary-grad: linear-gradient(135deg, #057A96 0%, #0694B7 60%, #3ab5ce 100%);
  --ty-text: #333;
  --ty-text-mid: #555;
  --ty-text-light: #999;
  --ty-border: #f0f4f6;
  --ty-bg: #f4f7f9;
  --ty-white: #ffffff;
  --ty-success: #16a34a;
  --ty-radius: 8px;
  --ty-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
}


/* ============================================================
   BASE
   ============================================================ */
body {
  background: var(--ty-bg);
  font-family: 'Segoe UI', sans-serif;
  color: var(--ty-text);
  margin: 0;
}

/* Confetti canvas — fixed behind everything */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Page wrapper — sits above confetti */
.ty-page-wrap {
  position: relative;
  z-index: 1;
}


/* ============================================================
   TY-NAVBAR — top navigation bar
   ============================================================ */
.ty-navbar {
  background: var(--ty-white);
  border-bottom: 2px solid var(--ty-primary-light);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* Brand / logo link */
.ty-navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--ty-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* Breadcrumb trail (right-aligned) */
.ty-navbar-trail {
  margin-left: auto;
  font-size: 13px;
  color: var(--ty-text-light);
}

.ty-navbar-trail strong {
  color: var(--ty-primary);
}


/* ============================================================
   TY-HERO — coloured banner at top of page
   ============================================================ */
.ty-hero {
  background: var(--ty-primary-grad);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-pattern overlay */
.ty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Circular check icon wrapper */
.ty-hero-check {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--ty-white);
  animation: tyPopIn 0.5s 0.1s cubic-bezier(0.22, 0.68, 0, 1.5) both;
}

@keyframes tyPopIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ty-hero h1 {
  color: var(--ty-white);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.ty-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0;
}


/* ============================================================
   PANEL OVERRIDES — match existing site panel style
   These reinforce the site's .panel styles in case this CSS
   is loaded before Bootstrap / site CSS.
   ============================================================ */
.panel {
  border-radius: var(--ty-radius);
  box-shadow: var(--ty-shadow);
  border: none;
  background: var(--ty-white);
  margin-bottom: 20px;
}

.panel-heading {
  background: var(--ty-white) !important;
  border-bottom: 2px solid var(--ty-primary-light);
  border-radius: var(--ty-radius) var(--ty-radius) 0 0 !important;
  padding: 14px 20px;
}

.panel-heading h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ty-primary);
}

.panel-body {
  padding: 20px;
}


/* ============================================================
   TY-PLAN-BOX — active plan highlight card (reuses .plan-box
   style but scoped under ty- for the thank you page)
   ============================================================ */
.ty-plan-box {
  background: var(--ty-primary-light);
  border: 1px solid var(--ty-primary);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

/* Plan name (e.g. "Advanced") */
.ty-plan-box__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ty-primary);
  display: inline;
}

/* "ACTIVE" badge */
.ty-plan-box__badge {
  display: inline-block;
  background: var(--ty-primary);
  color: var(--ty-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 8px;
}

/* Price shown right-aligned */
.ty-plan-box__price {
  float: right;
  font-size: 22px;
  font-weight: 700;
  color: var(--ty-primary);
}

/* Feature list inside plan box */
.ty-plan-box ul {
  padding-left: 0;
  list-style: none;
  margin: 10px 0 0;
  clear: both;
}

.ty-plan-box ul li {
  font-size: 13px;
  color: #2c5a68;
  padding: 2px 0;
}

.ty-plan-box ul li::before {
  content: '✓ ';
  color: var(--ty-primary);
  font-weight: 700;
}


/* ============================================================
   TY-SUMMARY-ROW — order detail rows (mirrors .summary-row)
   ============================================================ */
.ty-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--ty-border);
  color: var(--ty-text-mid);
  font-size: 14px;
}

.ty-summary-row:last-of-type {
  border-bottom: none;
}

.ty-summary-row strong {
  color: var(--ty-text);
  font-weight: 600;
}

/* Total row — bold with top border */
.ty-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0 4px;
  border-top: 2px solid #ddd;
  margin-top: 4px;
  color: var(--ty-primary);
}


/* ============================================================
   TY-ORDER-ID — styled badge for the order reference number
   ============================================================ */
.ty-order-id {
  display: inline-block;
  background: var(--ty-primary-light);
  border: 1px solid var(--ty-primary-mid);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ty-primary);
  letter-spacing: 0.04em;
  font-family: monospace;
}


/* ============================================================
   TY-STEPS — numbered next-steps list
   ============================================================ */
.ty-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ty-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ty-border);
  font-size: 14px;
  color: #444;
}

.ty-steps li:last-child {
  border-bottom: none;
}

/* Circular step number */
.ty-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--ty-primary);
  color: var(--ty-white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ty-steps li strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ty-text);
}

.ty-steps li .text-muted {
  font-size: 13px;
}


/* ============================================================
   TY-ACTIONS — button group panel
   ============================================================ */
.ty-actions {
  text-align: center;
}

.ty-actions .btn {
  margin-bottom: 10px;
}


/* ============================================================
   TY-FOOTER-NOTE — small disclaimer below actions
   ============================================================ */
.ty-footer-note {
  font-size: 12px;
  color: var(--ty-text-light);
  text-align: center;
  margin-top: 20px;
  line-height: 1.7;
}

.ty-footer-note a {
  color: var(--ty-primary);
  text-decoration: none;
}

.ty-footer-note a:hover {
  text-decoration: underline;
}


/* ============================================================
   FADE-IN ANIMATIONS — staggered panel entrance
   ============================================================ */
.ty-fade {
  animation: tyFadeUp 0.4s ease both;
}

.ty-fade-2 {
  animation: tyFadeUp 0.4s ease 0.1s both;
}

.ty-fade-3 {
  animation: tyFadeUp 0.4s ease 0.2s both;
}

@keyframes tyFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   BTN-BRAND override — ensure button matches site colour
   (in case site CSS isn't loaded alongside this file)
   ============================================================ */
.btn-brand {
  background-color: var(--ty-primary);
  border-color: var(--ty-primary-dark);
  color: var(--ty-white);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--ty-primary-dark);
  border-color: #035e74;
  color: var(--ty-white);
}


.back-home-btn {
    text-decoration: none;   /* removes underline */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}