@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: #282828;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #0F2A2E;
}

.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;
}

.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: 8px;
    padding-left: 8px;
  }

  .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.55);
  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;
}


.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: #01358d;
  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-ai {
  /* backdrop-filter: blur(15px); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  background-color: white;
  top: 38px !important;
}

/* Brand */
.brand-ai {
  font-weight: 700;
  font-size: 20px;
  color: #2374E7 !important;
  cursor: none;
}

.brand-ai span {
  color: #143D83;
}

/* Nav Links */
.nav-ai-link {
  color: #143D83 !important;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
  cursor: none;
}

.nav-ai-link:hover {
  color: #2374E7 !important;
}

/* Remove default caret */
.dropdown-toggle::after {
  display: none;
}

/* Underline animation */
.nav-ai-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2374E7;
  transition: 0.3s;
}

.nav-ai-link:hover::after {
  width: 100%;
}


.nav-ai-link.dropdown-toggle::after {
  display: block !important;
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2374E7;
  transition: 0.3s;
  border: none;
  /* reset Bootstrap's border-based arrow */
}

.nav-ai-link.dropdown-toggle:hover::after {
  width: 100%;
}


/* CTA */
.btn-ai-demo {
  padding: 0 1.2rem !important;
  border-radius: 6px;
  background: #2374E7;
  border: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  cursor: none !important;
}

.btn-ai-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(147, 208, 149, 0.4);
  background: #143D83;
  color: #fff;
}

/* ===== MEGA MENU ===== */
.mega-dropdown {
  position: static !important;
}

.mega-menu-ai {
  width: 50%;
  left: 0 !important;
  right: 0 !important;
  top: 110% !important;
  border-radius: 20px;
  padding: 35px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  display: none;
  margin: auto;
}

/* Open on hover */
.mega-dropdown:hover .dropdown-menu {
  display: block;
}

/* Invisible bridge using ::before instead of ::after */
.mega-dropdown>.nav-ai-link::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* Small delay before hiding */
.mega-dropdown .dropdown-menu {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mega-dropdown:hover .dropdown-menu {
  display: block;
}

/* Section Header */
.mega-section-header {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
}

.mega-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #143D83;
  font-weight: 600;
}

.mega-title {
  font-size: 18px;
  font-weight: 600;
  color: #2374E7;
  margin-top: 5px;
}

/* AI Items */
.ai-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: 0.3s;
  cursor:none;
}

.ai-item h6 {
  margin: 0;
  font-size: 15px;
  color: #143D83;
}

.ai-item p {
  margin: 0;
  font-size: 13px;
  color: #415F92;
}

.ai-item:hover {
  text-decoration: none;
  background: #F6F9FE;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Feature Card */
.ai-feature-card {
  background: #143D83;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
}

.ai-feature-card .btn {
  background: #2374E7;
  border: none;
  color: #fff;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.feature-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Hide default cursor */
body {
  cursor: none;
}

/* Main AI Dot */
.cursor-dot {
  width: 36px;
  height: 36px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;

  background: url('/assets/img/hammer.svg') no-repeat center;
  background-size: contain;

  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;

  /* AI Glow */
  filter: drop-shadow(0 0 6px rgba(35, 116, 231, 0.8)) drop-shadow(0 0 12px rgba(35, 116, 231, 0.4));
}

/* Outer Ring */
.cursor-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;

  background: radial-gradient(circle,
      rgba(35, 116, 231, 0.15) 0%,
      rgba(35, 116, 231, 0.05) 40%,
      transparent 70%);

  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.3s ease;
}

/* Hover effect */
.cursor-ring.active {
  transform: translate(-50%, -50%) scale(1.4);
  background: radial-gradient(circle,
      rgba(35, 116, 231, 0.25),
      transparent 70%);
}

.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-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-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-logo.png);
}

.navbar-area .nav-container .navbar-collapse .desktop-logo .custom-width {
  width: 100%;
  min-width: 280px;
}

@media (max-width: 1500px) {
  .navbar-area .nav-container .navbar-collapse .desktop-logo .custom-width {
    width: 100%;
    min-width: 100px;
  }
}

.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-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: #0F2A2E;
}

.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: #282828;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  line-height: 40px;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: #B6D907;
  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: #282828;
  }
}


.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: 70px;
    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: 70px;
  }

  .responsive-mobile-menu .navbar-toggler {
    top: 31px;
  }
}

.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;
  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;
}

.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: #01358d;
  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: #01358d;
  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: #01358d;
  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
----------------------------------------*/
/* ===== Overlay ===== */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: 0.3s;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Popup ===== */
.search-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 600px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

/* ===== Search Box ===== */
.search-box-modern {
  display: flex;
  align-items: center;
  background: #e5e5e5;
  border-radius: 15px;
  overflow: hidden;
  height: 60px;
}

.search-box-modern input {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 0 20px;
  font-size: 16px;
  background: transparent;
}

.search-box-modern button {
  width: 70px;
  height: 100%;
  border: none;
  background: #2374E7;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.search-box-modern button:hover {
  background: #e60000;
}

/* RESULTS CONTAINER */
.search-results {
  background: #f3f3f3;
  border-radius: 12px;
  margin-top: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 5px 0;
  display: none;
}

/* EACH ITEM */
.search-item {
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: #eaeaea;
}

/* TITLE */
.search-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* DESCRIPTION */
.search-desc {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* HIGHLIGHT TEXT */
.highlight {
  color: #2b6cff;
  font-weight: 600;
}

/* ==============================
   📱 MOBILE RESPONSIVE
============================== */

/* Tablets */
@media (max-width: 992px) {
  .search-popup {
    width: 80%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .search-popup {
    width: 90%;
    top: 20%;
    transform: translate(-50%, 0) scale(0.95);
  }

  .search-popup.active {
    transform: translate(-50%, 0) scale(1);
  }

  .search-box-modern {
    height: 50px;
    border-radius: 12px;
  }

  .search-box-modern input {
    font-size: 14px;
    padding: 0 15px;
  }

  .search-box-modern button {
    width: 55px;
    font-size: 16px;
  }

  .search-results {
    max-height: 250px;
  }

  .search-item {
    padding: 10px 15px;
  }

  .search-title {
    font-size: 14px;
  }

  .search-desc {
    font-size: 12px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .search-popup {
    width: 95%;
    top: 15%;
  }

  .search-box-modern {
    height: 45px;
  }

  .search-box-modern input {
    font-size: 13px;
  }

  .search-box-modern button {
    width: 50px;
    font-size: 14px;
  }

  .search-results {
    max-height: 200px;
  }

  .search-title {
    font-size: 13px;
  }

  .search-desc {
    font-size: 11px;
  }
}

/******** 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: #CCEF08;
  box-shadow: 0px 11px 14px #001bb74d;
  color: #282828;
}

.btn-green:hover,
.btn-green:focus {
  opacity: 0.7;
  color: #282828;
  background: #B6D907 !important;
}

.btn-blue {
  background: #01358d;
  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;
}

.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: #282828 !important;
  margin-right: 0 !important;
}

.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;
  margin-bottom: 14px;
}

.single-accordion .card-header h2 button {
  font-size: 18px;
  letter-spacing: 0.32px;
  color: #01358d;
  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: #01358d;
  top: 50%;
  right: 30px;
}

.single-accordion .card-header h2 button:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  background: #01358d;
  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: #01358d;
}

.single-service h6 a {
  color: #01358d;
}

.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: #415F92;
}

/* 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%);
  }
}


/* Use Case */
.main-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
}

/* Sidebar */
.sidebar {
  width: 25%;
  background: #D6EEF3;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  height: fit-content;
  flex: 0 0 25%;
}

/* Main Content */
.main {
  flex: 1;
  min-width: 0;
  height: 70vh;
  overflow-y: auto;
}

/* 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;
  }

  .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;
}

.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%;
  height: 300px;
  object-fit: cover;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  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;
}

.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;
}

.features-tabs .nav-link {
  color: #C3C3C3;
  font-weight: 400;
  padding: 10px 18px;
  white-space: nowrap;
  transition: color 0.9s ease;
}

.features-tabs .nav-link.active {
  background-color: #0694B7;
  font-weight: 600;
  border-bottom: 2px solid #0694B7;
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.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;
}

/* 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: 15px 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: fixed;
  top: 130px;
  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: 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: #d8e3e4;
  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: 1000px;
  }
}

/* ================= 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;
}

.mega-menu-section:last-child {
  border-right: none;

}



/* ================= HEADING ================= */
.mega-section-heading {
  font-size: 11.5px;
  font-weight: 600;
  color: #0F2A2E;
  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;
}

/* ================= 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 0;
  /* 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: #B6D907;
  padding-left: 5px;
  padding-right: 5px;
  /* Simplified hover effect for centered layout */
  transform: scale(1);
}

/* ================= TITLE ================= */
.mega-item-title {
  font-size: 13.5px;
  /* Slightly smaller for narrower width */
  font-weight: 500;
  color: #282828;
  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-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: 15px 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 HEADER ================= */

/* .hero-header {
  position: relative;
  background: #000;
  color: #F5F5F5;
  padding: 120px 0 100px;
  overflow: hidden;

} */

/* Background Image */

/* .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: #F5F5F5;
  background-color: #0F2A2E;
} */

/* .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
} */

/* Wrapper */

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px 0px 20px;
}

@media (max-width:1024px) {
  .hero-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.hero-right {
  flex: 1;
  max-width: 600px;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}


/* Buttons */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #CCEF08;
  color: #282828;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #B6D907;
}

.btn-secondary {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  padding: 12px 24px;
  border-radius: 10px;
}

.btn-secondary:hover {
  color: #ffffff;
}

/* Trusted Section Inside Header */

.hero-trusted {
  text-align: center;
}

.hero-trusted h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFAFA;
}

.hero-trusted p {
  color: #a0a0a0;
  margin-bottom: 60px;
  color: #FFFAFA;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* force 4 columns */
  max-width: 800px;
  /* control total width */
  margin: 40px auto 0;
  /* center the grid */
  gap: 40px 60px;
  /* row gap | column gap */
  text-align: center;
}

.trusted-logos div {
  font-size: 20px;
  font-weight: 500;
  color: #F5F5F5;
}


.trusted-logos div:hover {
  opacity: 1;
  color: #ffffff;
}




/* ================= HOW POCKETOFFICE WORKS ================= */

/* ================= SECTION ================= */

.how-section {
  background: linear-gradient(180deg, #f5f6fa 0%, #eef1f7 100%);
  padding: 20px 0 70px;
}

.how-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 30px 2px;
}


/* ================= HEADER ================= */

.how-header {
  text-align: left;
  margin-bottom: 50px;
}

.how-header h2 {
  font-size: 58px;
  font-weight: 700;
  color: #282828;
  line-height: 1.15;
}


/* ================= CARDS ================= */

/* ================= CARDS GRID ================= */

.cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

.how-cards {
  flex: 1;
  max-width: 400px;
  /* 🔥 controls card column width */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cards-right {
  flex: 1;
  /* takes remaining space */
  max-width: 600px;
  /* pushes video to the right */
  position: sticky;
  top: 120px;
}

.card-video {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}


/* ================= CARD ================= */

.how-card {
  border-radius: 24px;
  border-color: #E1E6EA;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}


/* ================= IMAGE FULL TOP ================= */


.how-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}


/* ================= TEXT AREA ================= */

.how-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F2A2E;
}

.how-card p {
  font-size: 15px;
  color: #555b7c;
  line-height: 1.6;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .cards-container {
    flex-direction: column;
    gap: 40px;
  }

  .how-cards,
  .cards-right {
    max-width: 100%;
  }

  .cards-right {
    position: relative;
    top: auto;
    margin-left: 0;
  }

  .card-video {
    max-height: 320px;
  }
}





/* ================= INDUSTRY SECTION ================= */

.industry-section {
  background: #f2f2f2;
  padding: 70px 0 70px;
}

.industry-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= HEADING ================= */

/* ================= HEADER AREA ================= */

.industry-header {
  text-align: center;
  margin-bottom: 70px;
}

.industry-heading {
  font-size: 46px;
  font-weight: 600;
  color: #282828;
  margin-bottom: 16px;
}

.industry-subheading {
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ================= GRID ================= */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ================= CARD ================= */

.industry-card {
  display: flex;
  background: #eae8e6;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */

.industry-img {
  flex: 0 0 40%;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= CONTENT ================= */

.industry-content {
  flex: 1;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F2A2E;
  margin-bottom: 12px;
}

.industry-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-link {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.industry-link:hover {
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    flex-direction: column;
  }

  .industry-img {
    flex: 0 0 auto;
    height: 220px;
  }
}


/* ================= DISCOVER SECTION ================= */

/* .discover-section {
  background: #f4f4f4;
  padding: 70px 0 120px;
} */

.discover-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= HEADING ================= */

.discover-heading {
  font-size: 64px;
  font-weight: 600;
  color: #282828;
  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: 28px;
  font-weight: 600;
  color: #0F2A2E;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ================= PARAGRAPH ================= */

.discover-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  max-width: 95%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .discover-heading {
    font-size: 42px;
  }

  .discover-image img {
    height: 260px;
  }
}


/* ===============================
   CORE FEATURES HEADING
================================= */

/* =====================================================
   CORE FEATURES SECTION
   Main outer section styling
===================================================== */

.core-features-section {
  padding: 80px 0 100px;
  /* Vertical spacing */
  background: #f5f5f5;
  /* Light background */
}


/* =====================================================
   WRAPPER
   Controls max width and horizontal padding
===================================================== */

.core-features-wrapper {
  max-width: 1200px;
  /* Centered content width */
  margin: 0 auto;
  /* Center horizontally */
  padding: 0 40px;
  /* Side spacing */
}


/* =====================================================
   MAIN HEADING
===================================================== */

/* ===============================
   CORE FEATURES HEADING
================================= */

.core-features-main-heading {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  color: #232323;
  margin-bottom: 20px;
}


/* ===============================
   CORE FEATURES SUBTEXT
================================= */

.core-features-subtext {
  max-width: 700px;
  margin: 0 auto 60px auto;
  /* centered + spacing */
  text-align: center;
  font-size: 17px;
  color: #555555;
  line-height: 1.6;
}



/* =====================================================
   TABS CONTAINER
   Bottom border under tab row
===================================================== */

.core-features-tabs-wrapper {
  border-bottom: 1px solid #ddd;
  /* Bottom separator line */
  margin-bottom: 50px;
  /* Space below tabs */
  width: 100%;
  /* Full width */
}


/* =====================================================
   TABS ROW
   All tabs in single line with equal spacing
===================================================== */

.core-features-tabs {
  display: flex;
  justify-content: space-between;
  /* Equal space between tabs and edges */
  align-items: center;
  gap: 6px;
  /* Small gap between tabs */
  flex-wrap: nowrap;
  /* Force single line */
  width: 100%;
  /* Full width */
}


/* =====================================================
   INDIVIDUAL TAB BUTTON
===================================================== */

.core-features-tab {
  background: transparent;
  border: none;
  outline: none;
  font-size: 12.5px;
  /* Same size for all tabs */
  padding: 10px 4px;
  /* Reduced padding */
  cursor: pointer;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  /* Prevent text wrapping */
  flex: 1 1 auto;
  /* Allow tabs to grow/shrink equally */
  text-align: center;
  /* Center text within tab */
}


/* Active tab styling */
.core-features-tab.active {
  background: #0694B7;
  color: #fff;
  padding: 10px 8px;
  /* Reduced padding */
  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;
}



/* Desktop optimization */
@media (min-width: 1200px) {
  .core-features-wrapper {
    max-width: 1300px;
    /* Increased from 1200px */
    padding: 0 25px;
    /* Reduced padding */
  }

  .core-features-tabs {
    gap: 8px;
    /* Slightly larger gap on big screens */
  }

  .core-features-tab {
    font-size: 13px;
    /* Slightly larger on big screens */
    padding: 12px 6px;
  }

  .core-features-tab.active {
    padding: 12px 10px;
  }
}


/* Remove any scroll styles */
.core-features-tabs-wrapper {
  overflow-x: visible;
  /* No scroll */
  overflow-y: visible;
}

/* =====================================================
   TAB CONTENT PANELS
===================================================== */

/* Hide all panels by default */
.core-features-panel {
  display: none;
}

/* Show only active panel */
.core-features-panel.active {
  display: block;
}


/* =====================================================
   SUBHEADINGS (Used in View All)
===================================================== */

.core-features-subheading {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #232323;
}


/* =====================================================
   CARDS GRID
   3-column layout
===================================================== */

/* ===============================
   CLOUD CARD 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;
  /* ensures image corners are rounded */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.core-features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* ===============================
   CARD IMAGE
================================= */

.core-features-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}


/* ===============================
   CARD CONTENT
================================= */

.core-features-card-content {
  padding: 28px;
}

.core-features-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 14px;
  line-height: 1.4;
}

.core-features-card-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}



/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet View */
@media (max-width: 992px) {
  .core-features-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .core-features-grid {
    grid-template-columns: 1fr;
    /* 1 column */
  }

  .core-features-tabs {
    flex-wrap: wrap;
    /* Wrap tabs on small screens */
    gap: 10px;
    justify-content: center;
  }

  .core-features-main-heading {
    font-size: 32px;
  }
}

/* =========================================
   VIEW ALL MAIN HEADER
========================================= */

.core-features-view-main-heading {
  text-align: center;
  font-size: 32px;
  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: 16px;
  color: #555;
  line-height: 1.6;
}


/* =========================================
   CENTER SUBHEADINGS INSIDE VIEW ALL
========================================= */

#view-all .core-features-subheading {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 35px;
}



/* ===============================
   COLLABORATION SECTION
================================= */
.collaboration-section {
  padding: 60px 0;
  background: #f5f5f5;
  overflow-x: hidden;
}

.collaboration-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

/* ===============================
   MAIN HEADING
================================= */

.collaboration-main-heading {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #232323;
  margin-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.collaboration-main-subtext {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  padding-left: 40px;
  padding-right: 40px;
}

/* ===============================
   TABS
================================= */

.collaboration-tabs-wrapper {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
}

.collaboration-tabs {
  display: inline-flex;
  gap: 8px;
  border-bottom: 1px solid #ddd;
}

.collaboration-tab {
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 14px;
  padding: 12px 18px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px 6px 0 0;
}

.collaboration-tab:focus,
.collaboration-tab:active,
.collaboration-tab:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.collaboration-tab.active {
  background: #0694B7;
  color: #fff;
}

/* ===============================
   PANELS
================================= */

.collaboration-panel {
  display: none;
}

.collaboration-panel.active {
  display: block;
}

/* ===============================
   SPLIT LAYOUT (Default)
================================= */

.collaboration-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

.collaboration-image {
  flex: 1;
}

.collaboration-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.collaboration-content {
  flex: 1;
}



.collaboration-highlight-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  position: relative;
}


.collaboration-highlight-layout:not(:last-child) {
  margin-bottom: 60px;
}

.collaboration-reverse {
  flex-direction: row-reverse;
}



.collaboration-highlight-image {
  flex: 1;
  background: #e8e1d8;
  padding: 60px 60px 60px 0;
  border-radius: 0;
  position: relative;

  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);

  display: flex;
  justify-content: center;
  align-items: center;
}

.collaboration-highlight-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0;
}



.collaboration-reverse .collaboration-highlight-image {
  flex: 1;
  background: #e8e1d8;
  padding: 60px 0 60px 60px;
  border-radius: 0;
  position: relative;

  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50%);
  padding-left: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.collaboration-reverse .collaboration-highlight-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0;
}

/* ====================================
   CONTENT SECTIONS
==================================== */


.collaboration-framed-content {
  flex: 1;
  padding-right: 40px;
}


.collaboration-reverse .collaboration-framed-content {
  padding-right: 0;
  padding-left: 40px;
}

/* ===============================
   TYPOGRAPHY
================================= */

.collaboration-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #232323;
}

.collaboration-subheading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}

.collaboration-layout .collaboration-subheading {
  color: #0694B7;
}

.collaboration-highlight-layout .collaboration-subheading {
  color: #444;
}

.collaboration-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
  .collaboration-layout {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .collaboration-highlight-layout {
    flex-direction: column;
    gap: 30px;
  }


  .collaboration-highlight-layout:not(:last-child) {
    margin-bottom: 50px;
  }

  /* ====================================
       MOBILE - BOTH LAYOUTS IDENTICAL
    ==================================== */


  .collaboration-highlight-image {
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .collaboration-highlight-image img {
    margin: 0;
    width: 100%;
  }


  .collaboration-reverse .collaboration-highlight-image {
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .collaboration-reverse .collaboration-highlight-image img {
    margin: 0;
    width: 100%;
  }


  .collaboration-framed-content,
  .collaboration-reverse .collaboration-framed-content {
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
  }

  .collaboration-description {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .collaboration-main-heading {
    font-size: 32px;
  }

  .collaboration-heading {
    font-size: 28px;
  }


  .collaboration-highlight-image,
  .collaboration-reverse .collaboration-highlight-image {
    padding: 30px;
  }


  .collaboration-highlight-layout:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* ===============================
   ADDITIONAL SPACING FOR FIRST AND LAST CARDS
================================= */


.collaboration-panel.active .collaboration-highlight-layout:first-child {
  margin-top: 0;
}

.collaboration-panel.active .collaboration-highlight-layout:last-child {
  margin-bottom: 0;
}


/* =========================================
   COLLABORATION FEATURE SECTION
========================================= */

.collaboration-feature-section {
  padding: 20px 40px;
  background: #f5f5f5;
}

.collaboration-feature-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.collaboration-feature-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
  color: #111;
}

/* Grid Layout */
.collaboration-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Card */
.collaboration-feature-card {
  display: flex;
  flex-direction: column;
}

/* Image Box */
.collaboration-feature-image {
  background: #d9d2c9;
  padding: 20px;
  margin-bottom: 30px;
}

.collaboration-feature-image img {
  width: 100%;
  display: block;
}

/* Title */
.collaboration-feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

/* Description */
.collaboration-feature-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Link */
.collaboration-feature-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.collaboration-feature-link:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .collaboration-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .collaboration-feature-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-feature-heading {
    font-size: 32px;
  }
}


/*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;
}

@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;
  }
}

/* Toggle Switch Styles */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.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: #001B77;
}

input:checked+.toggle-slider:before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  user-select: none;
}



/* 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: #0d6efd;
  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;
}




/* =========================================
   SECURITY SECTION 
========================================= */

.security-section {
  background: #f9fbff;
  padding: 70px 40px;
}

.security-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Heading */
.security-heading {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

/* Sub Heading */
.security-subheading {
  text-align: center;
  font-size: 17px;
  max-width: 750px;
  margin: 0 auto 90px auto;
  line-height: 1.7;
  color: #475569;
}


/* Grid Layout */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
}

/* Card – Bluish Theme */
.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);
}

.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;
}

/* Title */
.security-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}

/* Text */
.security-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  /* slightly deeper bluish gray */
}

/* Responsive */
@media (max-width: 992px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-heading {
    font-size: 32px;
  }
}


/* ========================================
   INTEGRATION SECTION
======================================== */

.integration-section {
  background: #f9fbff;
  padding: 70px 20px;
}

.integration-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.integration-header {
  text-align: center;
  margin-bottom: 80px;
}

.integration-main-heading {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.integration-main-subheading {
  font-size: 17px;
  color: #64748b;
}

/* Body Layout */
.integration-body {
  display: flex;
  gap: 60px;
}

/* ========================================
   SIDEBAR
======================================== */

/* SIDEBAR */
.integration-sidebar {
  width: 260px;
  background: #e8e1d8;
  /* skinish */
  padding: 24px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TAB BUTTON */
.integration-tab {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  text-align: left;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: background 0.25s ease, color 0.25s ease;
}

/* REMOVE ALL DEFAULT BROWSER STATES */
.integration-tab:focus,
.integration-tab:focus-visible,
.integration-tab:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* HOVER (only if NOT active) */
.integration-tab:not(.active):hover {
  background: #CCEF08;
}

/* ACTIVE */
.integration-tab.active {
  background: #CCEF08;
}


/* ========================================
   CONTENT
======================================== */

.integration-content {
  flex: 1;
}

.integration-panel {
  display: none;
}

.integration-panel.active {
  display: block;
}

/* =========================================
   INTEGRATION TYPOGRAPHY 
========================================= */

.integration-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #232323;
}

.integration-subheading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #0694B7;
}




/* =========================================
   CARDS 
========================================= */

.integration-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.integration-card {
  background: #ffffff;
  padding: 30px;
  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);
}


/* Icon Styling */
.integration-icon {
  font-size: 26px;
  color: #0694B7;
  margin-bottom: 15px;
}

.integration-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #232323;
}

.integration-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* =========================================
   DOCUMENTATION
========================================= */
html {
  scroll-behavior: smooth;
}

.docs-wrapper {
  display: flex;
  background: #ffffff;
  padding: 60px 10px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  position: relative;
}

/* Sidebar */
.docs-sidebar {
  width: 260px;
  position: sticky;
  top: 100px;
  height: fit-content;
  background: #D6EEF3;
  padding: 25px;
  border-radius: 12px;
  align-self: flex-start;
}

.docs-sidebar h3 {
  font-size: 16px;
  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: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.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;
  margin-left: 60px;
}

/* Hero */
.hero {
  margin-bottom: 35px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0694B7;
}

.hero p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* Section */
.doc-section {
  margin-bottom: 40px;
  scroll-margin-top: 190px;
}

.doc-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111827;
  border-left: 4px solid #0694B7;
  padding-left: 12px;
}

.section-intro {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Items */
.doc-item {
  margin-bottom: 20px;
}

.doc-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: 0.3s;
}

.doc-item h3:hover {
  color: #0694B7;
  cursor: pointer;
}

.doc-item p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.note {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  margin-top: 5px;
}


.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;
}

/* Sidebar fixed width */
.sidebar-section {
  width: 280px;
  flex-shrink: 0;
}

.content-section::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.sidebar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* =============================================
   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 h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  color: #0f172a;
}

.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: 40px;
  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: #143D83;
  color: #FFFFFF;
  padding: 64px 40px 32px;
}

/* Grid Container */
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 100px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: center;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li a {
  font-size: 14px;
  color: #CDD7EA;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   FOOTER BOTTOM
================================*/
/* .footer-bottom {
  max-width: 1280px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
} */

/* 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;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #CDD7EA;
}

/* ===============================
   RESPONSIVE
================================*/

/* Large Laptop */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 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;
    text-align: center;
  }

  .copyright-text {
    position: static;
    transform: none;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons a {
    font-size: 18px;
  }
}

/* ===============================
   ABOUT SECTION
================================*/
.about-section {
  padding: 80px 0 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row Layout */
.about-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

/* Reverse layout */
.about-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.about-content {
  flex: 1;
}


.about-content p {
  font-size: 17px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Image Wrapper */
.about-image {
  flex: 1;
  background: #e8e1d8;
  /* your requested color */
  padding: 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* ===============================
   CONTENT TYPOGRAPHY
================================*/

/* Main Heading (Our Vision / Mission) */
.about-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Subheading  */
.about-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Paragraph */
.about-content p {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 520px;
}


/* ===============================
   RESPONSIVE
================================*/
@media (max-width: 992px) {

  .about-row {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .about-row.reverse {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {

  .about-section {
    padding: 70px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .about-main-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .about-main-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-content p {
    font-size: 15px;
  }
}




/* Contact CSS */
.contact-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 70%;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 30px 0px;
}

.contact-header .heading {
  font-size: 60px;
  letter-spacing: 0.92px;
  color: black;
  font-weight: 700;
  text-align: center;
}

.contact-header span {
  letter-spacing: 0.32px;
  color: #5b6880;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  max-width: 450px;
  width: 100%;
}

.support-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
}

.support-cards .card {
  min-height: 205px;
  /* keeps desktop size */
  max-width: 408px;
  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: start;
  flex-direction: column;
  gap: 10px;
}

.card-head-2 .card-heading {
  font-size: 17px;
  font-weight: 500;
  color: black;
}

.card-head-2 .card-info {
  font-size: 16px;
  font-weight: 400;
}

.card-head .card-heading {
  font-size: 17px;
  font-weight: 500;
  color: black;
}

.card-head .card-info {
  padding: 5px 0 8px 0;
  font-size: 16px;
  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: #007BFF;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
  transform: translateY(-2px);
}

.card-2 span:hover {
  cursor: pointer;
  color: #007bff;
  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: 35px;
  }
}

@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 {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: scale(0.95);
  transition: all 0.25s ease;
}

/* 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: 12px 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: #2563EB;
  text-decoration: none;
}

/* Button */
.modal-btn {
  padding: 10px 18px;
  background: #2563EB;
  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;
  }
}

.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: #2563EB;
  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 {
  background: #1D4ED8;
  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: #2563EB;
  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*/
.file-sharing-section {
  background-color: #dfe3f2;
  padding: 50px 60px 50px 130px;
  border-radius: 12px;
  border-top-left-radius: 400px;
  border-bottom-left-radius: 400px;
  margin-top: 40px;
  width: 70%;
  margin-left: auto;
  position: relative;
  overflow: visible;
}

.file-sharing-section .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  position: relative;
}

.file-sharing-section .image-box {
  position: absolute;
  left: -220px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.file-sharing-section .image-box img {
  position: static;
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}


.file-sharing-section2 {
  background-color: #dfe3f2;
  padding: 50px 130px 50px 60px;
  border-radius: 12px;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  margin-top: 40px;
  width: 70%;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.file-sharing-section2 .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  position: relative;
}

.file-sharing-section2 .image-box {
  position: absolute;
  right: -220px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.file-sharing-section2 .image-box img {
  position: static;
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.content-box {
  flex: 1;
}

.content-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.content-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.use-case-heading {
  color: #232323;
}

.main-content-use-case {
  width: 100%;
  max-width: 1500px;
}

.text-section {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.text-section p {
  text-align: center;
}

@media (max-width: 1024px) {

  .file-sharing-section,
  .file-sharing-section2 {
    width: 85%;
    padding: 50px 50px 50px 110px;
  }

  .file-sharing-section2 {
    padding: 50px 110px 50px 50px;
  }

  .file-sharing-section .image-box {
    left: -80px;
  }

  .file-sharing-section2 .image-box {
    right: -80px;
  }

  .file-sharing-section .image-box img,
  .file-sharing-section2 .image-box img {
    width: 160px;
    height: 160px;
  }

  .content-box h2 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {


  .file-sharing-section,
  .file-sharing-section2 {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px !important;
    padding: 30px 24px 30px 24px;
    overflow: hidden;

  }


  .file-sharing-section .container,
  .file-sharing-section2 .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }


  .file-sharing-section .image-box,
  .file-sharing-section2 .image-box {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
  }

  .file-sharing-section .image-box img,
  .file-sharing-section2 .image-box img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .content-box {
    text-align: center;
  }

  .content-box h2 {
    font-size: 22px;
  }

  .content-box p {
    font-size: 15px;
  }
}


@media (max-width: 480px) {

  .file-sharing-section,
  .file-sharing-section2 {
    width: 95%;
    padding: 24px 18px;
    margin-top: 28px;
  }

  .file-sharing-section .image-box img,
  .file-sharing-section2 .image-box img {
    width: 130px;
    height: 130px;
  }

  .content-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .content-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*Solutions by team type*/
.team-card {
  position: relative;
  width: 320px;
  background: #f2f2f2;
  padding: 40px 25px 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.circle {
  position: absolute;
  width: 70px;
  height: 70px;
  background: lightblue;
  border-radius: 50%;
  top: -35px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle2 {
  position: absolute;
  width: 70px;
  height: 70px;
  background: lightcoral;
  border-radius: 50%;
  top: -35px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle3 {
  position: absolute;
  width: 70px;
  height: 70px;
  background: gray;
  border-radius: 50%;
  top: -35px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-heading {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF !important;
}

.team-container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width:768px) {
  .team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

@media (max-width:640px) {
  .team-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 700,
    'GRAD' 0,
    'opsz' 24;
  color: white;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

.teamtype-heading {
  color: #232323;
}

/*careers section*/
.careers-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.careers-title {
  font-size: 46px;
  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;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .careers-title {
    font-size: 42px;
  }

  .careers-section {
    padding: 60px 0;
  }
}

.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 {
  background-color: #EBEBEB;
  padding: 80px;

}

.benefits-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.benefits-section h2 {
  color: black;
  font-size: 48px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.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: 360px;
}

@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;
  }
}

/* ===============================
   NAV LINKS
=================================*/

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 60px;
  height: 40px;
  margin-top: 1rem !important;
}

.nav-links li {
  position: relative;
}

/* Default link color */
.navbar-area .nav-container .navbar-collapse .nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}

/* Fixed navbar link color */
.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .nav-links li a {
  color: #282828;
}

/* Mega item links */
.navbar-area .nav-container .navbar-collapse .nav-links li .mega-items {
  color: #282828;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  border-radius: 8px;
  transition: 0.2s ease;
}

/* Hover style */
.mega-items:hover {
  color: #ffffff !important;
  background: #93D095;
  padding: 10px !important;
}


/* ===============================
   MEGA MENU BASE
=================================*/

.mega-menu {
  position: absolute;
  top: 70px;
  left: 0;

  background: #fff;
  display: grid;
  gap: 40px;
  padding: 30px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;

  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  max-width: calc(100vw - 40px);
  /* prevent screen overflow */
  z-index: 999;
}

/* Show on hover */
.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 60px;
}


/* ===============================
   COLUMN TYPES
=================================*/

/* 1 Column */
.mega-menu.one-col {
  grid-template-columns: 1fr;
  width: 360px;
}

/* Small News Dropdown */
.mega-menu.one-col-news {
  grid-template-columns: 1fr;
  width: 200px;
  overflow: hidden;
}

/* 2 Columns */
.mega-menu.two-col {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  width: 800px;
}

.mega-menu.two-col-resource {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  width: 500px;
}


/* ===============================
   RIGHT EDGE FIX
=================================*/

/* Flip dropdown for last 2 items */
.nav-links>li.dropdown:last-child .mega-menu,
.nav-links>li.dropdown:nth-last-child(2) .mega-menu {
  left: auto;
  right: 0;
}


/* ===============================
   MEGA COLUMN STYLE
=================================*/

.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-column h4 {
  margin-bottom: 12px;
  padding-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
  color: #282828;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 700;
}

.mega-column a {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  word-break: break-word;
}


/* ===============================
   SCROLLBAR STYLE
=================================*/

.mega-menu::-webkit-scrollbar {
  width: 6px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}


/* ===============================
   MOBILE RESPONSIVE
=================================*/

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 992px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transition: 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  /* 🔥 CRITICAL FIX */
  .mega-menu,
  .mega-menu.one-col,
  .mega-menu.two-col,
  .mega-menu.one-col-news {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;

    grid-template-columns: 1fr !important;

    box-shadow: none;
    padding: 10px 0;
    max-height: none;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: block;
  }
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  min-height: 112vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  overflow: hidden;

}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* @keyframes heroBgReveal {
  0% {
    transform: translateY(-60px) scale(1.08);
    opacity: 0.4;
  }

  100% {
    transform: translateY(0px) scale(1.04);
    opacity: 1;
  }
}

@keyframes heroBgZoom {
  0% {
    transform: translateY(0px) scale(1.04);
  }

  100% {
    transform: translateY(0px) scale(1.10);
  }
} */

/* ─── HERO CONTENT ─── */
.hero-content {
  position: relative;
  z-index: 2;
  /* text-align: center; */
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-content p {
  max-width: 500px;
  padding-top: 6px;
  color: white;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  /* transform: translateY(20px); */
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-title {
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  /* margin: 18px auto 32px; */
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.65s;
  font-style: italic;
}

.hero-title span {
  color: #2374E7;
  font-style: normal;
  display: inline-block !important;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  /* justify-content: center; */
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards 0.9s;
  margin-bottom: 0;
}

.btn-contact {
  background-color: #2374E7;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 36px;
  border-radius: 24px;
  border: none;
  letter-spacing: 0.04em;
  cursor:none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-contact:hover {
  transform: translateY(-2px);
  background-color: #011F53;
  color: #fff;
}

.btn-learn {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 34px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-learn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width:900px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-bg {
    background-size: cover;
  }

  .hero-bg img {
    object-fit: cover;
  }
}

/* ─── FEATURE CARDS ─── */
.features-section {
  background-color: #F6F9FE;
  padding: 50px 60px;
  display: flex;
  align-items: center;

}

.features-row {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.2s;
  margin: auto;
}

.feature-card {
  color: #143D83;
  padding-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  background: white;
  padding: 12px;

}

.feature-card:nth-child(1)::before {
  background: #4f46e5;
}

.feature-card:nth-child(2)::before {
  background: #0694B7;
}

.feature-card:nth-child(3)::before {
  background: #ff5722;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 0.875rem;
  color: #415F92;
  line-height: 1.6;
  margin: 0;
}



/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-section {
    display: flex;
    flex-direction: column;
    padding: 40px 10px 0;
  }

  .features-row {
    display: flex;
    flex-direction: column;
  }

  .hero-section {
    padding-bottom: 60px;
  }

  .feature-title {
    font-size: 14px;
  }

  .feature-text {
    font-size: 12px;
  }

  .feature-card {
    height: auto !important;
  }

  .btn-contact {
    padding: 12px 20px;
  }

  .btn-learn {
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {
  .features-row {
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }
}

.legal-ai-works__section {
  text-align: center;

  width: 100%;
  padding-bottom: 100px;
  margin-top: 50px;
  padding-left: 35px;
  padding-right: 35px;
}

@media(min-width:1600px) {
  .legal-ai-works__section {
    margin: auto;
    max-width: 1400px;
  }
}

.legal-ai-works__eyebrow {
  font-size: 18px;
  font-weight: 600;
  color: #2374E7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.legal-ai-works__heading {
  font-size: 36px;
  font-weight: 700;
  color: #143D83;
  margin-bottom: 60px;
}

/* ── Steps row ── */
.legal-ai-works__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.legal-ai-works__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

.legal-ai-works__step:nth-child(1) {
  animation-delay: 0.1s;
}

.legal-ai-works__step:nth-child(2) {
  animation-delay: 0.25s;
}

.legal-ai-works__step:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.legal-ai-works__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 0;
  border-top: 2px dashed #cbd5e1;
  z-index: 0;
}

/* ── Circle ── */
.legal-ai-works__circle-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  border: 2px solid #D3D3D3;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  position: absolute;
  bottom: -10px;
  /* sits on the bottom border of the circle-wrap */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid #D3D3D3;
  /* matches circle-wrap border */
}

.step-num p {
  padding-top: 16px;
  font-size: 12px;
  color: #143D83;
}

.legal-ai-works__circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  margin: 3.5px;

}

.legal-ai-works__circle--inactive {
  background: #415F92;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-ai-works__circle--active {
  background: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.legal-ai-works-box {
  background-color: #E6E6E6;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: 6px;
  height: 180px;
}

.legal-ai-works-box::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 17px solid #E6E6E6;
}

/* ── Text ── */
.legal-ai-works__step-title {
  font-size: 17px;
  font-weight: 700;
  color: #143D83;
  margin-bottom: 10px;
  text-align: left;
}

.legal-ai-works__step-desc {
  font-size: 14px;
  color: #415F92;
  line-height: 1.65;
  max-width: 350px;
}

.legal-ai-works__step--is-active .legal-ai-works__step-title {
  color: #2563eb;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .legal-ai-works__steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .legal-ai-works__step:not(:last-child)::after {
    display: none;
  }

  .legal-ai-works__step {
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .legal-ai-works__step-title,
  .legal-ai-works__step-desc {
    text-align: center;
  }

  .legal-ai-works__heading {
    font-size: 24px;
  }

  .legal-ai-works__eyebrow {
    font-size: 16px;
  }
}

.why-legal-ai {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 60px;
  overflow: hidden;
  background: #F6F9FE;
  /* max-width: 1400px; */
  width: 100%;
  margin: auto;
}

@media(min-width:1600px) {
  .why-legal-ai {
    max-width: 1400px;
  }
}

/* dot-grid overlay */
.why-legal-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* decorative floating circles */
.why-legal-ai .deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-legal-ai .deco-1 {
  width: 14px;
  height: 14px;
  border: 2px solid #e85d3a;
  top: 76px;
  right: 390px;
  animation: floatY 4s ease-in-out infinite;
}

.why-legal-ai .deco-2 {
  width: 8px;
  height: 8px;
  background: #2196f3;
  bottom: 40px;
  right: 60px;
  animation: floatY 5s ease-in-out infinite reverse;
}

.why-legal-ai .deco-3 {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .15);
  top: 40px;
  left: 46%;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─────────────────────────────────────────
       LEFT CONTENT — hidden until .is-visible
    ───────────────────────────────────────── */
.wla-content {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 48px;
  opacity: 0;
}

.why-legal-ai.is-visible .wla-content {
  animation: fadeUp .65s ease both;
}

.wla-eyebrow {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2374E7;
  margin-bottom: 8px;
}

.wla-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #143D83;
  margin-bottom: 36px;
}

/* ─────────────────────────────────────────
       FEATURES GRID
    ───────────────────────────────────────── */
.wla-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.wla-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
}

.why-legal-ai.is-visible .wla-feature:nth-child(1) {
  animation: fadeUp .6s .10s ease both;
}

.why-legal-ai.is-visible .wla-feature:nth-child(2) {
  animation: fadeUp .6s .20s ease both;
}

.why-legal-ai.is-visible .wla-feature:nth-child(3) {
  animation: fadeUp .6s .30s ease both;
}

.why-legal-ai.is-visible .wla-feature:nth-child(4) {
  animation: fadeUp .6s .40s ease both;
}

.wla-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wla-icon i {
  font-size: 24px;
  /* increase size */
  color: #143D83;
  /* change color (LegalAI purple/blue style) */
}

.wla-feature-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #143D83;
  margin-bottom: 5px;
}

.wla-feature-body p {
  font-size: 13px;
  line-height: 1.6;
  color: #415F92;
}

/* ─────────────────────────────────────────
       RIGHT VISUAL — hidden until .is-visible
    ───────────────────────────────────────── */
.wla-visual {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.why-legal-ai.is-visible .wla-visual {
  animation: fadeLeft .7s .2s ease both;
}

.wla-img-wrap {
  position: relative;
  width: 360px;
  height: 360px;
}

.wla-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* placeholder gradient circle when no image */
.wla-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #3949ab 0%, #1e88e5 60%, #42a5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wla-img-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: .35;
  stroke: #fff;
  fill: none;
  stroke-width: 1;
}

/* badge */
.wla-badge {
  position: absolute;
  bottom: 10px;
  left: -18px;
  background: #143D83;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px #415F92;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.wla-badge-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.wla-badge-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  text-align: center;
  margin-top: 3px;
  line-height: 1.3;
}

/* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
@media (max-width: 900px) {
  .why-legal-ai {
    flex-direction: column;
    padding: 48px 32px;
    text-align: center;
  }

  .wla-content {
    flex: none;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 48px;
  }

  .wla-visual {
    flex: none;
    max-width: 100%;
  }

  .wla-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .wla-badge {
    left: 50%;
    transform: translateX(-50%) !important;
    bottom: -20px;
  }

  .wla-eyebrow {
    font-size: 14px;
  }
}

/*Discover-company*/
.discover-section {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  gap: 60px;
  padding: 80px 20px;
  margin: 0 auto 0;
}

/* ── Animation base states (hidden by default) ── */
.content {
  flex: 1;
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 380px;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* ── Triggered state (added by JS) ── */
.discover-section.is-visible .content {
  opacity: 1;
  transform: translateX(0);
  padding-top: 16px;
}

.discover-section.is-visible .visual {
  opacity: 1;
  transform: translateX(0);
}

/* ── Staggered children inside .content ── */
.content .eyebrow,
.content h1,
.content .description,
.content .feature-list,
.content .btn-discover {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.discover-section.is-visible .content .eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.discover-section.is-visible .content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
  font-size: 38px;
  font-weight: 800;
  color: #143D83;
}

.discover-section.is-visible .content .description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.50s;
  color: #415F92;
}

.discover-section.is-visible .content .feature-list {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

.discover-section.is-visible .content .btn-discover {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.76s;
}

/* ── Video box ── */
.video-box {
  position: relative;
  z-index: 1;
  width: 620px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  transform: scale(0.88);
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discover-section.is-visible .video-box {
  transform: scale(1);
}

/* ── Rest of original styles ── */
.eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #2374E7;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 440px;
}

.feature-list {
  list-style: none;
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #415F92;
  font-weight: 500;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2374E7;
  margin-top: 5px;
}

.btn-discover {
  display: inline-block;
  padding: 14px 32px;
  background-color: #2374E7;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  cursor: none;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.btn-discover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px #2374E7;
  color: white;
}

@media (max-width: 640px) {
  .discover-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
    margin-top: 0;
  }

  .visual {
    min-width: unset;
    width: 100%;
    transform: translateY(30px);
  }

  .discover-section.is-visible .visual {
    transform: translateY(0);
  }

  .video-box {
    width: 280px;
    height: 280px;
  }

  .discover-section.is-visible .content h1 {
    font-size: 24px;
  }
}

@media (min-width: 641px) and (max-width: 1000px) {
  .discover-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
    margin-top: 0;
  }

  .visual {
    min-width: unset;
    width: 100%;
    transform: translateY(30px);
  }

  .discover-section.is-visible .visual {
    transform: translateY(0);
  }

  .video-box {
    width: 280px;
    height: 280px;
  }

  .discover-section.is-visible .content h1 {
    font-size: 24px;
  }
}

/*Core Features*/
.core-features {
  /* padding-bottom: 80px; */
  text-align: center;
  background: #fff;
  overflow: hidden;
}

/* ── Header ─────────────────────────────────────── */
.core-features__eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2374E7;
  margin-bottom: 8px;

  /* animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.core-features__title {
  font-size: 38px;
  font-weight: 800;
  color: #143D83;
  line-height: 1.18;
  max-width: 640px;
  margin: 0 auto 18px;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.core-features__subtitle {
  font-size: 15px;
  color: #415F92;
  max-width: 420px;
  margin: 0 auto 64px;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.18s, transform 0.6s ease 0.18s;
}

/* ── Cards grid ─────────────────────────────────── */
.core-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  row-gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cf-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 400px;
  flex: 0 0 310px;
  border: 2px solid #ebedf5;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  cursor: none;
  min-height: 450px !important;

  /* scroll animation */
  opacity: 0;
  transform: translateY(50px) scale(0.97);
}

/* Stagger via custom property */
.cf-card:nth-child(1) {
  transition-delay: 0.08s;
}

.cf-card:nth-child(2) {
  transition-delay: 0.2s;
}

.cf-card:nth-child(3) {
  transition-delay: 0.32s;
}

/* When animated in */
.cf-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cf-card:hover {
  box-shadow: 0 20px 60px rgba(43, 110, 245, 0.12);
  border-color: #c0d0fc;
  transform: translateY(-6px) scale(1.01);
}

/* Active / featured card */
.cf-card--featured {
  border-color: #d8e3fd;
  box-shadow: 0 12px 48px rgba(43, 110, 245, 0.08);
}



.cf-card--featured:hover::after {
  transform: translateX(-50%) rotate(90deg);
  box-shadow: 0 10px 30px rgba(240, 90, 40, 0.45);
}



/* ── Text ───────────────────────────────────────── */
.cf-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #143D83;
  margin-bottom: 12px;
  text-align: left;
  padding: 18px 28px 0;

}

.cf-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #415F92;
  text-align: left;
  padding: 0px 28px 20px;

}

.cf-card img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* ── "is-visible" for header elements ───────────── */
.core-features.is-visible .core-features__eyebrow,
.core-features.is-visible .core-features__title,
.core-features.is-visible .core-features__subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* extra stagger for cards when section becomes in-view */
.core-features.is-visible .cf-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0.3s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0.3s),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.core-features.in-view .cf-card:nth-child(1) {
  --delay: 0.32s;
}

.core-features.in-view .cf-card:nth-child(2) {
  --delay: 0.46s;
}

.core-features.in-view .cf-card:nth-child(3) {
  --delay: 0.60s;
}

/* Cards start hidden */
.cf-card {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0.3s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0.3s),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Stagger delays */
.cf-card:nth-child(1) {
  --delay: 0.32s;
}

.cf-card:nth-child(2) {
  --delay: 0.46s;
}

.cf-card:nth-child(3) {
  --delay: 0.60s;
}

/* Cards animate in when section gets is-visible */
.core-features.is-visible .cf-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width:640px) {
  .core-features__title {
    font-size: 24px;
  }

  .core-features__grid {
    grid-template-columns: 1fr;
    place-items: center;
    margin: 0 30px !important;
  }

  .cf-card__title {
    font-size: 14px;
  }

  .cf-card__desc {
    font-size: 12px;
  }

  .cf-card {
    width: auto !important;
  }
}

@media (min-width:641px) and (max-width:1000px) {
  .core-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 30px !important;
  }

  .cf-card {
    width: auto !important;
  }

  .cf-card__title {
    font-size: 14px;
  }

  .cf-card__desc {
    font-size: 12px;
  }

  .core-features__title {
    font-size: 24px;
  }

}

/*Careers Page*/
.career-hero {
  position: relative;
  overflow: hidden;
}

.career-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.career-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(1, 31, 83, 0.78) 0%,
      rgba(35, 116, 231, 0.55) 100%);
}

.career-heading {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* width: 100%; */
  padding-top: 90px !important;
}

.career-heading h1 {
  font-weight: 700;
  font-size: 60px;
}

.career-heading p {
  text-align: center;
  max-width: 771px;
}


.jobs {
  background-color: #fafafa;
  max-width: 1700px;
  width: 100%;
  padding: 80px 60px;
  margin: 0 auto;
}

.jobs-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding-bottom: 18px;
}

.jobs-title {
  font-weight: 600;
  font-size: 36px;
  color: #111111;
}

.jobs-desc {
  max-width: 700px;
  text-align: center;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* place-items: center; */
  margin: 0 100px;
}

.job-card {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 36px;
  /* width: 500px; */
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.job-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: black;
}

.job-card p {
  font-size: 12px;
  font-weight: 400;
}

.job-card a {
  margin-top: 8px !important;
  background-color: #D6E6FC;
  padding: 8px 12px;
  border-radius: 24px;
  color: #2374E7;
  font-size: 14px;
  cursor: none;
}

.job-card a:hover {
  background-color: #2374E7;
  color: white;
}

.job-card img {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #cfcfcf;
}

.job-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.job-label-sep {
  width: 4px;
  height: 4px;
  background-color: #2374E7;
}

.job-label p {
  margin: 0 !important;
}

/* SECTION */
.careers-team {
  padding: 60px 40px;
  background: linear-gradient(to bottom,
      #ffffff 20%,
      #2374E766 80%);
}

/* CONTAINER */
.careers-team__container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.careers-team__tag {
  color: #2374E7;
  font-weight: bold;
  margin-bottom: 10px;
}

.careers-team__title {
  font-size: 42px;
  color: #143D83;
  margin-bottom: 20px;
}

.careers-team__desc {
  color: #415F92;
  line-height: 1.6;
  margin-bottom: 25px;
}

.careers-team__btn {
  background: #143D83;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  cursor: none;
  transition: 0.3s;
}

.careers-team__btn:hover {
  background: #011F53;
}

/* RIGHT GRID */
.careers-team__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 20px;
}

.careers-team__img {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* NO IMAGE CROPPING */
.careers-team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRID POSITIONING */
.careers-team__img--1 {
  grid-column: 1;
  grid-row: 1;
}

.careers-team__img--2 {
  grid-column: 2;
  grid-row: span 2;
}

.careers-team__img--3 {
  grid-column: 1;
  grid-row: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .careers-team__container {
    grid-template-columns: 1fr;
  }

  .careers-team__right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .careers-team__img--2 {
    grid-row: auto;
  }
}


.job-details {
  padding: 60px 40px;
}

.job-details__container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 120px;
}

/* SIDEBAR */
.job-details__sidebar {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 500px;
}

@media(max-width:992px) {
  .job-details__container {

    gap: 60px;
  }
}

.sidebar-title {
  color: #2374E7;
  margin-bottom: 20px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.sidebar-item i {
  color: #143D83;
  font-size: 18px;
  margin-top: 5px;
}

.sidebar-item .label {
  color: #143D83;
  font-weight: 600;
}

.sidebar-item span {
  color: #415F92;
  font-size: 14px;
}

.job-section {
  margin: 30px 0;
}

.job-section h3 {
  color: #2374E7;
  margin-bottom: 10px;
}

.job-section p {
  color: #415F92;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* APPLY BUTTON */
.apply-btn {
  margin-top: 30px !important;
  background: #2374E7;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  cursor: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #011F53;
}

/* CONTENT */
.job-details__content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  border-bottom: 2px solid #2374E7;
  display: inline-block;
}

.job-details__content h2 {
  color: #2374E7;
  margin-bottom: 5px;
}

.company {
  color: #415F92;
  margin-bottom: 25px;
}

.vacancy h3,
.responsibilities h3 {
  color: #2374E7;
  margin-bottom: 10px;
}

.vacancy p {
  font-size: 18px;
  margin-bottom: 20px;
}

.responsibilities ul {
  padding-left: 20px;
}

.responsibilities li {
  margin-bottom: 10px;
  color: #415F92;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .job-details__container {
    grid-template-columns: 1fr;
  }

  .job-details__sidebar {
    order: 2;
  }
}

/* ── Section wrapper ── */
.career-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}


/* ── Left headline ── */
.career-intro {
  padding-top: 8px;
  text-align: center;
}

.career-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.career-label .line {
  display: flex;
  gap: 4px;
}

.career-label .line span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: #2374E7;
  border-radius: 2px;
}

.career-label .line span:last-child {
  background: #2374E7;
}

.career-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease 0.1s, transform 0.65s ease 0.1s;
}

.career-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  max-width: 700px;
  margin: auto;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
}

.career-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;
}

.career-card:hover {
  box-shadow: 0 8px 32px rgba(108, 43, 217, 0.12);
  transform: translateY(-4px) scale(1) !important;
}



.card-icon {
  margin-bottom: 22px;
  color: #2374E7;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #6c2bd9;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a0a3c;
  margin-bottom: 10px;
}

.career-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #777;
}

/* Stagger delays */
.career-card:nth-child(1) {
  transition-delay: 0.05s;
}

.career-card:nth-child(2) {
  transition-delay: 0.15s;
}

.career-card:nth-child(3) {
  transition-delay: 0.25s;
}

.career-card:nth-child(4) {
  transition-delay: 0.35s;
}

/* Visible state */
.animate-in .career-label,
.animate-in .career-title,
.animate-in .career-desc {
  opacity: 1;
  transform: translateY(0);
}

.animate-in .career-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* SECTION */
.apply-section {
  padding: 120px 20px;
}

/* CONTAINER */
.apply-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.apply-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111111;
}

.subtitle {
  color: #415F92;
  margin-bottom: 40px;
}

/* FORM BOX */
.apply-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUTS */
.apply-form input,
.apply-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 5px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.apply-form textarea {
  margin-top: 20px;
  resize: none;
  height: 100px;
}

/* FILE */
.file-upload {
  margin-top: 20px;
  text-align: left;
}

.file-upload label {
  display: block;
  margin-bottom: 8px;
  color: #143D83;
}

.file-upload input {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

/* BUTTON */
.submit-btn {
  margin-top: 30px;
  background: #2374E7;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: none;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #011F53;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .career-inner {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }



  .jobs-grid {
    margin: 0 0;
    grid-template-columns: 1fr;
  }

  .job-card h3 {
    font-size: 18px;
  }

  .job-card a {
    font-size: 12px;
  }

  .job-card p {
    margin: 0;
  }

  .join-us-desc {
    width: 200px;
    left: 6%;
    top: 40%;
    padding: 12px;
  }

  .join-us-desc h2 {
    font-size: 18px;
  }

  .join-us-desc button {
    width: 100%;
    font-size: 12px;
  }

  .career-section {
    padding: 60px 20px;
  }

  .career-title {
    font-size: 24px;
  }

  .career-desc {
    font-size: 12px;
  }

  .career-card h3 {
    font-size: 14px;
  }

  .career-card p {
    font-size: 12px;
  }
}

/* =====================
   TOP NAV BAR
===================== */
.top-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: #2374E7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 1200;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}

/* Left */
.top-nav-left {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.top-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: white !important;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: none;
}



.top-nav-sep {
  color: #F6F9FE;
  font-size: 12px;
}

/* Right */
.top-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav-right i {
  color: white;
  padding-left: 20px;
}

.tnb-btn {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  cursor: none;
}

/* Order Now — accent */
.tnb-order {
  color: #fff !important;
  border: 1px solid transparent;
}

.tnb-order:hover {
  opacity: 0.88;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Customer Login & Support Login — outline */
.tnb-customer,
.tnb-noc {
  color: white !important;
}

.tnb-customer:hover,
.tnb-noc:hover {
  opacity: 0.88;
  color: #fff !important;
  transform: translateY(-1px);
}

.tnb-btn i {
  font-size: 12px;
  margin-right: 3px;
}


/* ===================== FIX: SHOW ALL BUTTONS ===================== */

@media (max-width: 768px) {

  .top-nav-right a,
  span {
    display: none;
  }

  /* Prevent buttons from disappearing */
  .tnb-btn {
    flex: 0 0 auto;
    /* DO NOT shrink */
    white-space: nowrap;
    padding: 2px 8px;
    font-size: 10.5px;
  }

  /* Optional: keep icons only */
  .tnb-btn span {
    display: none;
  }

  .tnb-btn i {
    margin-right: 0;
  }

  /* Hide scrollbar (optional clean look) */
  .top-nav-right::-webkit-scrollbar {
    display: none;
  }
}

/* Hide on mobile */
@media (max-width: 992px) {
  /* .top-nav-bar {
    display: none;
  } */

  /* .navbar-ai {
    top: 0 !important;
  } */


}

.map-tooltip {
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  min-width: 180px;
  font-family: sans-serif;
}

.map-tooltip strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.map-tooltip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* Hide the default Leaflet tooltip arrow */
.map-tooltip::before {
  display: none;
}

/*Footer*/
.footer-ai {
  background-color: #143D83;
  padding: 60px 80px 20px;
}

/* ── NEWSLETTER SECTION ── */
.footer-ai .newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid gray;
}

.footer-ai .newsletter-text h2 {
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.footer-ai .newsletter-text p {
  font-size: 0.92rem;
  color: #D3D3D3;
  max-width: 500px;
  line-height: 1.7;
}

.footer-ai .newsletter-form {
  display: flex;
  align-items: center;
  background: #1a2a50;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  min-width: 380px;
  border: 1px solid var(--navy-border);
  flex-shrink: 0;
}

.footer-ai .newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
  flex: 1;

}

.footer-ai .newsletter-form input::placeholder {
  color: var(--muted);
}

.footer-ai .newsletter-form button {
  background: #2374E7;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.footer-ai .newsletter-form button:hover {
  background: #143D83;
}

.footer-ai .newsletter-form button .arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ── MAIN FOOTER ── */
.footer-ai .footer-main {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid gray;
}

/* Brand column */
.footer-ai .brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-ai .brand-logo svg {
  flex-shrink: 0;
}

.footer-ai .brand-name {
  display: flex;
  flex-direction: column;
}

.footer-ai .brand-name span:first-child {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-ai .brand-name span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.footer-ai .brand-desc {
  font-size: 0.88rem;
  color: #D3D3D3;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 310px;
}

.footer-ai .socials {
  display: flex;
  gap: 16px;
}

.footer-ai .socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.footer-ai .socials a:hover {
  border-color: #2374E7;
  color: #2374E7;
}

/* Link columns */
.footer-ai .footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-ai .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-ai .footer-col ul li a {
  text-decoration: none;
  color: #D3D3D3;
  font-size: 0.9rem;
  transition: color 0.2s;
  cursor: none;
}

.footer-ai .footer-col ul li a:hover {
  color: #2374E7;
}

/* Contact column */
.footer-ai .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-ai .contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer-ai .contact-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-ai .contact-col .location-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin: 24px 0 16px;
}

/* ── BOTTOM BAR ── */
.footer-ai .footer-bottom {
  border-top: 1px solid var(--navy-border);
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: white;
  font-size: 0.85rem;
  padding: 20px 0;
}

.footer-ai .footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.footer-ai .footer-bottom a:hover {
  color: #2374E7;
}

.footer-col ul {
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .footer-ai .newsletter {
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
  }

  .footer-ai .newsletter-form {
    min-width: 100%;
    width: 100%;
  }

  .footer-ai .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 40px;
  }

  .footer-ai .footer-bottom {
    padding: 20px 40px;
  }
}

@media (max-width: 600px) {
  .footer-ai .newsletter {
    padding: 32px 24px;
  }

  .footer-ai .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .footer-ai .footer-bottom {
    padding: 20px 24px;
  }
}

@media (max-width: 1024px) {
  .footer-ai .newsletter {
    gap: 24px;
  }

  .footer-ai .newsletter-text h2 {
    font-size: 1.8rem;
  }

  .footer-ai .footer-main {
    gap: 28px;
  }

  .footer-ai .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-ai {
    padding: 0;
  }
}


@media (max-width: 600px) {
  .footer-ai {
    padding: 0;
  }

  .footer-ai .newsletter-text h2 {
    font-size: 1.5rem;
  }

  .footer-ai .newsletter-text p {
    font-size: 0.85rem;
  }

  .footer-ai .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
    padding: 12px;
    gap: 10px;
    align-items: stretch;
  }

  .footer-ai .newsletter-form input {
    padding: 8px 4px;
  }

  .footer-ai .newsletter-form button {
    width: 100%;
    justify-content: center;
    border-radius: 50px;
  }

  .footer-ai .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }

  .footer-ai .socials {
    flex-wrap: wrap;
  }

  .footer-ai .brand-desc {
    max-width: 100%;
  }
}

.partners-header h3 {
  font-size: 38px;
  font-weight: 700;
  color: #143D83;
}

.intro-section {
  display: flex;
  min-height: 600px;
  padding-top: 80px;
}

/* LEFT SIDE */
.intro-left {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.intro-left img {
  width: 800px;
  height: 600px;
  object-fit: cover;
}

/* DARK OVERLAY */
.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 40, 0.95);
}

/* TEXT ON IMAGE */
.intro-text {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
  z-index: 2;
}

/* Heading */
.intro-text h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2374E7;
}

/* Paragraph */
.intro-text p {
  font-size: 16px;
  line-height: 1.7;
  margin: 40px 0;
}

/* Feature list */
.intro-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-text ul li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

/* Triangle bullet */
.intro-text ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
  color: #2374E7;
}

/* RIGHT SIDE VIDEO */
.intro-right {
  width: 50%;
}

.intro-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width:768px) {

  .intro-section {
    flex-direction: column;
  }

  .intro-left {
    width: 100%;
    height: 750px;
  }

  .intro-right {
    width: 100%;
    height: 450px;
  }

  .intro-text {
    left: 30px;
    right: 30px;
    max-width: 100%;
  }

  .intro-text h2 {
    font-size: 28px;
  }

  .intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =====================
   HAMBURGER MENU ICON
===================== */

.ai-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  outline: none;
  box-shadow: none;
  transition: background 0.2s ease;
}

.ai-toggler:focus,
.ai-toggler:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.ai-toggler:hover {
  background: rgba(35, 116, 231, 0.06);
}

.ai-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #143D83;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Animated X when open */
.ai-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ai-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.ai-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hide mega menu by default — JS controls .show class */
.mega-menu-ai {
  display: none;
}

.mega-dropdown .dropdown-menu.show {
  display: block !important;
}

/* =====================
   DESKTOP (≥992px)
===================== */
@media (min-width: 992px) {
  .mega-menu-ai {
    position: absolute;
  }

  /* JS handles hover on desktop, not CSS */
  .mega-dropdown:hover .dropdown-menu {
    display: none;
  }
}

/* =====================
   MOBILE (≤991px)
===================== */
@media (max-width: 991px) {

  /* Show hamburger */
  .ai-toggler {
    display: flex;
  }

  /* Scrollable navbar */
  #aiNavbar {
    max-height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #aiNavbar::-webkit-scrollbar {
    width: 4px;
  }

  #aiNavbar::-webkit-scrollbar-thumb {
    background: #2374E7;
    border-radius: 4px;
  }

  /* Remove overflow hidden from navbar parents */
  .navbar-ai {
    overflow: visible !important;
  }

  .navbar>.container {
    overflow: visible !important;
    padding: 0 12px;
  }

  /* Mega menu — static flow inside scrollable navbar */
  .mega-dropdown {
    position: static !important;
  }

  .mega-menu-ai {
    position: static !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 16px !important;
  }

  /* Stack columns vertically */
  .mega-menu-ai .row {
    flex-direction: column;
  }

  .mega-menu-ai .col-md-5,
  .mega-menu-ai .col-md-6,
  .mega-menu-ai .col-lg-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .btn-ai-demo {
    margin-left: 10px !important;
    margin-top: 10px;
    cursor: none !important;
  }
}

.more-menu {
  padding-left: 20px;
}

.more-menu a {
  color: #415F92 !important;
  font-weight: 600;
  font-size: 12px;
}

/* Hide More menu on desktop */
@media (min-width: 992px) {
  .navbar-nav .nav-item:has(.more-menu) {
    display: none;
  }
}

.more-btn .dropdown-menu {
  border: none !important;
}

.mobile-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.mobile-buttons a {
  background-color: #2374E7;
  color: white !important;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#search-btn {
  cursor: none;
}

.input-error {
  border: 1px solid red;
}

.input-success {
  border: 1px solid green;
}

.error-msg {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.field-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: start;
}

.field-error {
  font-size: 0.8rem;
  color: red;
  min-height: 16px;
  display: block;
}

input.invalid,
textarea.invalid {
  border-color: red !important;
}