/* Header CSS */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.header.sticky {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/*
01. Variables CSS
02. Normalize CSS
03. Header CSS
04. Hero CSS
05. Pricing CSS
06. Clients CSS
07. Apply Process CSS
08. Job Category CSS
09. Call Action CSS
10. Responsive CSS
11. Modal CSS
12. Footer CSS
*/
/*======================================
    Variables
========================================*/
:root {
  --primary-color: #004aad;
  --secondary-color: #00c6ff;
  --accent-color: #ffb900;
  --bg-deep: #0a192f;
  --text-main: #e6f1ff;
  --text-dim: #8892b0;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #7E8890;
  overflow-x: hidden;
  font-size: 14px;
}

/* Premium Utilities */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.gradient-text {
  color: #004aad;
  /* Solid theme color fallback */
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.premium-glow {
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

p {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #081828;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 60px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Bread Crumbs - Older bulky version commented out to prevent conflict */
/*
.breadcrumbs {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  padding: 15px 0;
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

.breadcrumbs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(32, 66, 227, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(26, 86, 219, 0.06) 0%, transparent 50%);
  z-index: -1;
}

.breadcrumbs.overlay::before {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.breadcrumbs .breadcrumbs-content p {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 22px;
  line-height: 50px;
}

.breadcrumbs .breadcrumbs-content .page-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background: #fff;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: left;
  margin-top: 50px;
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  text-decoration: underline;
}

.breadcrumbs .breadcrumb-nav li a:after {
  content: '';
  height: 80%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: 0;
}
*/

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

.section-title span {
  text-transform: uppercase;
  background: #2042e3;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
  line-height: 22px;
}

.section-title h2 {
  font-size: 35px;
  margin-bottom: 18px;
  line-height: 45px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  padding-bottom: 14px;
}

.section-title h2:before {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: #2042e3;
  content: "";
}

.section-title p {
  font-size: 14px;
  line-height: 24px;
}

.section-title.white-text h2 {
  color: #fff;
}

.section-title.white-text h2::before {
  background-color: #fff;
}

.section-title.white-text span {
  color: #fff;
}

.section-title.white-text p {
  color: #fff;
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: #2042e3;
  content: "";
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #2042e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828;
}

/* Overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #081828;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
}

/* Pagination CSS */
.pagination {
  text-align: left;
  margin: 40px 0 0 0;
  display: block;
}

.pagination.center {
  text-align: center;
}

.pagination.right {
  text-align: right;
}

.pagination.left {
  text-align: left;
}

.pagination .pagination-list {
  display: inline-block;
  overflow: hidden;
}

.pagination .pagination-list li {
  margin-right: 5px;
  display: inline-block;
}

.pagination .pagination-list li:last-child {
  margin-right: 0px;
}

.pagination .pagination-list li a {
  background: #fff;
  color: #081828;
  font-weight: 500;
  font-size: 13px;
  border-radius: 0;
  line-height: 40px;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #eee;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
  background: #2042e3;
  color: #fff;
  border-color: transparent;
}

.pagination .pagination-list li a i {
  font-size: 13px;
}

.blog-grids.pagination {
  margin-top: 50px;
  text-align: center;
}

.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  background-color: #2042e3;
  color: #fff;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 4px;
}

.button .btn:hover {
  background-color: #081828;
  color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.button .btn-alt {
  background-color: #081828;
  color: #fff;
}

.button .btn-alt:hover {
  background-color: #2042e3;
  color: #fff;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

#loading-area {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 999999999;
  background-image: url(../images/loading.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
}

/*======================================
	Header CSS
========================================*/
/*===== NAVBAR =====*/
.header.style4 .navbar-area {
  background-color: #fff;
  border: none;
}

.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: transparent;
  position: absolute;
  border-bottom: 1px solid #e6e6e6;
}

.other-page .navbar-area {
  background-color: #fff;
  border: none;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #333;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #2042e3;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #333;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 17px 0;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 150px;
}

.navbar-toggler {
  padding: 0;
  background-color: #2042e3;
  padding: 5px 8px !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar-toggler .toggler-icon {
  background-color: #fff !important;
}

.navbar-toggler:hover {
  background-color: #081828 !important;
}

.navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 22px;
  height: 2px;
  background-color: #333;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 38px;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 30px 0;
  position: relative;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

.navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #2042e3;
  z-index: -1;
  opacity: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
}

.navbar-nav .nav-item a::before {
  width: 0%;
  left: 0;
}

.navbar-nav .nav-item a::after {
  width: 20%;
  right: 0;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: #2042e3;
}

.navbar-nav .nav-item:hover a:before,
.navbar-nav .nav-item a.active::before {
  opacity: 1;
  width: 100%;
}

.header .navbar-nav li .sub-menu li a.active {
  background-color: #2042e3 !important;
  color: #fff !important;
}

.navbar-nav .nav-item a i {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

@media (max-width: 767px) {

  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .sub-nav-toggler {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.header {
  position: relative;
  z-index: 999;
}

.navbar-area {
  transition: all 0.3s ease;
  padding: 8px 0;
}

.navbar-area.sticky {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
}

.navbar-brand .logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.navbar-brand .logo-text span {
  color: #004aad;
}

/* Header Right Area */
.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header .button {
  display: flex;
  align-items: center;
}

.header .login {
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  margin-right: 25px;
  transition: all 0.3s;
}

.header .login:hover {
  color: #004aad;
}

.header .button .btn {
  background: #004aad;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
  transition: all 0.3s;
}

.header .button .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
  background: #003a8c;
}

/* Header User Profile */
.header-user {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  padding: 5px 0;
}

.header-user .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  transition: all 0.3s;
}

.header-user:hover .user-info {
  border-color: #004aad;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.1);
}

.header-user .user-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.header-user .user-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.header-user .user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid #f1f5f9;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.header-user:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.header-user .user-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  border-radius: 8px;
  transition: all 0.2s;
}

.header-user .user-dropdown li a:hover {
  background: #f1f5f9;
  color: #004aad;
  transform: translateX(5px);
}

.header-user .user-dropdown li a i {
  font-size: 18px;
  color: #64748b;
  transition: all 0.2s;
}

.header-user .user-dropdown li a:hover i {
  color: #004aad;
}

.header-user .user-dropdown .divider {
  height: 1px;
  background: #f1f5f9;
  margin: 5px 15px;
}

.header-user .user-dropdown li a.logout {
  color: #ef4444;
}

.header-user .user-dropdown li a.logout:hover {
  background: #fef2f2;
}

.header-user .user-dropdown li a.logout i {
  color: #ef4444;
}

/* Redesigned Sub-Menu */
.header .navbar-nav li .sub-menu {
  background: #fff;
  width: 240px;
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.header .navbar-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateY(0);
}

.header .navbar-nav li .sub-menu li a {
  padding: 10px 15px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.header .navbar-nav li .sub-menu li a:hover {
  background: #f1f5f9;
  color: #004aad;
  padding-left: 20px;
}

.header .navbar-nav li .sub-menu li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.header.index2 .sticky .nav-item a {
  color: #081828 !important;
}

.header.index2 .sticky .nav-item a:hover {
  color: #2042e3 !important;
}

.header.index2 .sticky .nav-item a.active {
  color: #2042e3 !important;
}

.header.index2 .navbar-area.sticky .navbar-nav li .sub-menu li a.active {
  color: #fff !important;
}

.header.index2 .logo {
  position: relative;
  margin: 0;
  padding: 0;
  top: -16px;
}

.header.index2 .logo img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header.index2 .logo .logo1 {
  opacity: 0;
  visibility: hidden;
}

.header.index2 .navbar-nav .nav-item a {
  color: #fff;
}

.header.index2 .navbar-nav .nav-item a::before {
  background-color: #fff;
}

.header.index2 .button .btn:hover {
  background-color: #fff;
  color: #2042e3;
}

/* Index 2 */
.header.index2 .sticky .logo .logo1 {
  opacity: 1;
  visibility: visible;
}

.header.index2 .sticky .logo .logo2 {
  opacity: 0;
  visibility: hidden;
}

.header.index2 .sticky .nav-item a::before {
  background-color: #2042e3;
}

.header.index2 .navbar-nav li .sub-menu {
  border-radius: 3px;
}

.header.index2 .navbar-nav .sub-menu li a {
  color: #081828;
}

.header.index2 .navbar-nav .sub-menu li a:hover {
  color: #fff !important;
}

/* Index 4 */
.header.index4 .navbar-area {
  position: absolute;
}

.header.index4 .sticky {
  position: fixed;
  top: 0;
}

/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  background: #f6f9fc;
  overflow: hidden;
}

.hero-area.style2 {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-area.style2 .home-slider {
  position: relative;
  height: 700px;
}

.hero-area.style2 .hero-inner {
  height: auto;
}

.hero-area.style2 .hero-inner .hero-text {
  margin-top: 220px;
}

.hero-area.style2 .hero-image {
  text-align: center;
  position: relative;
  bottom: -140px;
  right: 0;
}

.hero-area.style2 .tns-controls {
  width: 100%;
}

.hero-area.style2 .tns-controls button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 17px;
  background: #2042e3;
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -25px;
}

.hero-area.style2 .tns-controls button:hover {
  background-color: #081828;
  color: #fff;
}

.hero-area.style2 .tns-controls button:first-child {
  border-radius: 50%;
  left: 30px;
}

.hero-area.style2 .tns-controls button:last-child {
  border-radius: 50%;
  right: 30px;
}

.hero-area.style3 .hero-inner {
  height: 700px;
}

.hero-area.style3 .hero-inner .hero-text {
  margin-top: 190px;
}

.hero-area.style3 .home-search {
  margin-top: 180px;
  padding: 40px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.hero-area.style3 .home-search .button {
  margin-top: 20px;
}

.hero-area.style3 .home-search .button .btn {
  width: 100%;
}

.hero-area.style3 .home-search .form-group {
  margin-bottom: 15px;
}

.hero-area.style3 .home-search .form-group label {
  color: #081828;
  display: block;
  margin-bottom: 4px;
}

.hero-area.style3 .home-search .form-group input {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 20px;
  font-size: 15px;
  font-weight: 400;
}

.hero-area.style3 .home-search .form-group .form-control {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 20px;
  font-size: 15px;
  font-weight: 400;
}

.hero-area.style3 .home-search .form-group .form-control option {
  font-weight: 400 !important;
}

.hero-area.style4 {
  overflow: visible;
  background-image: url("../images/hero/home-page4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-area.style4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2042e3;
  opacity: 0.9;
}

.hero-area.style4::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/hero/small-patern.png");
  opacity: 0.2;
}

.hero-area.style4 .hero-inner {
  height: auto !important;
}

.hero-area.style4 .hero-inner .hero-text {
  margin-top: 190px;
  padding: 0;
  text-align: center;
  padding: 0px 98px;
}

.hero-area.style4 .hero-inner .hero-text h1 {
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text p {
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn {
  background-color: #fff;
  color: #2042e3;
}

.hero-area.style4 .hero-inner .hero-text .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn-alt {
  background-color: #081828;
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn-alt:hover {
  background-color: #fff;
  color: #2042e3;
}

.hero-area.style4 .job-search-wrap-two {
  padding: 40px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  position: relative;
  top: 102px;
}

.hero-area .hero-inner {
  height: 800px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}

.hero-area .hero-text {
  float: none;
  margin-top: 10px;
  padding-right: 0;
}

.hero-area .hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 25px;
  color: #004aad;
}

.hero-area .hero-text h1 span {
  font-weight: 300;
}

.hero-area .hero-text p {
  font-size: 15px;
  line-height: 24px;
}

.hero-area .hero-text .button {
  margin-top: 35px;
}

.hero-area .hero-text .button .btn {
  margin-right: 10px;
}

.hero-area .hero-text .button .btn:hover {
  color: #fff;
}

.hero-area .hero-text .button .btn:last-child {
  margin-right: 0px;
}

.hero-area .hero-video-head {
  margin-top: 160px;
}

.hero-area .hero-video-head .video-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-area .hero-video-head .video-inner::before {
  position: absolute;
  content: "";
  right: -50px;
  bottom: -90px;
  height: 300px;
  width: 300px;
  background-image: url(../images/hero/pattern.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-area .hero-video-head .video-inner img {
  width: 100%;
  border-radius: 10px 100px 10px 100px;
}

.hero-area .hero-video-head .video-inner .hero-video {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  background-color: #2042e3;
  font-size: 20px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 99;
  padding-left: 5px;
  -webkit-box-shadow: 0px 0px 30px #2042e3b3;
  box-shadow: 0px 0px 30px #2042e3b3;
}

.hero-area .hero-video-head .video-inner .hero-video:hover {
  background-color: #fff;
  color: #2042e3;
}

.hero-area .video-inner .waves-block .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  -webkit-animation: waves 5s ease-in-out infinite;
  animation: waves 4s ease-in-out infinite;
  left: 50%;
  margin-left: -75px;
  top: 50%;
  margin-top: -75px;
  z-index: 1;
}

.hero-area .video-inner .waves-block .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero-area .video-inner .waves-block .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero-area .video-inner .waves-block .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* Video Animations */
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.job-search-wrap-two .job-search-form {
  border: 1px solid #e2e4ea;
  background: #fff;
  border-radius: 4px;
}

.job-search-wrap-two .job-search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  padding: 10px 10px 10px 0;
}

.job-search-wrap-two .job-search-form form .single-field-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 37%;
  flex: 0 0 37%;
  max-width: 37%;
  padding: 0 30px;
  height: 100%;
  margin-bottom: 0;
}

.job-search-wrap-two .job-search-form form .single-field-item label {
  display: block;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

.job-search-wrap-two .job-search-form form .single-field-item input {
  width: 100%;
  border: none;
  color: #999;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  height: auto;
  line-height: inherit;
}

.job-search-wrap-two .job-search-form form .submit-btn {
  width: 100%;
}

.job-search-wrap-two .job-search-form form .submit-btn .btn {
  background-color: #2042e3;
  color: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.job-search-wrap-two .job-search-form form .submit-btn .btn:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  background-color: #081828;
  color: #fff;
  border-color: transparent;
}

.job-search-wrap-two .job-search-form form .single-field-item:first-child::after {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background-color: #e2e4ea;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.keywords ul li {
  display: inline-block;
}

.keywords ul li a {
  font-size: 13px;
  color: #999;
  padding: 0 7px;
  border: 1px solid #e4e5ec;
  border-radius: 3px;
  margin-bottom: 4px;
  line-height: 22px;
  margin-right: 0;
}

.keywords ul li a:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.keywords ul li a {
  font-size: 13px;
  color: #999;
  padding: 0 7px;
  border: 1px solid #e4e5ec;
  border-radius: 3px;
  margin-bottom: 4px;
  line-height: 22px;
  margin-right: 0;
}

.keywords.style-two .title {
  font-size: 14px;
  color: #2042e3;
  margin-right: 10px;
  line-height: 22px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  top: -2px;
}

/*=============================
	Pricing Table CSS
===============================*/
.pricing-table {
  background: #f6f9fc;
  position: relative;
}

.pricing-table .single-table {
  background: #fff;
  text-align: left;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 55px 50px;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  overflow: hidden;
  border-radius: 5px;
}

.pricing-table .single-table .table-head {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid #edeff2;
}

.pricing-table .single-table .table-head::before {
  position: absolute;
  content: '';
  background: #e4e8ed;
  width: 15px;
  height: 15px;
  right: 0px;
  bottom: -7px;
  border-radius: 5px;
}

.pricing-table .single-table .table-head .title {
  font-size: 18px;
  line-height: 26px;
  color: #081828;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.pricing-table .single-table .table-head .amount {
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #081828;
}

.pricing-table .single-table .table-head .duration {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-left: 7px;
}

.pricing-table .single-table .table-list {
  position: relative;
  display: block;
  margin-top: 35px;
}

.pricing-table .single-table .table-list li {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #081828;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 15px;
}

.pricing-table .single-table .table-list li:last-child {
  margin-bottom: 0;
}

.pricing-table .single-table .table-list li::before {
  position: absolute;
  content: "\ea55";
  font-family: 'lineIcons';
  font-size: 7px;
  color: #fff;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 3px;
  left: 0px;
  top: 6px;
  background-color: #2042e3;
}

.pricing-table .single-table .button {
  margin-top: 40px;
}

.pricing-table .single-table .button .btn {
  font-size: 13px;
}

/*======================================
   Clients CSS
========================================*/
.client-logo-section {
  background: #F9FAFF;
  padding: 50px 0;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
  padding: 10px;
  text-align: center;
  margin: auto;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
  max-width: 220px;
  width: 100%;
  opacity: .3;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
  opacity: 1;
}

/*======================================
    Apply Process CSS
========================================*/
.apply-process {
  background-color: #2042e3;
  padding: 80px 0;
}

.apply-process .process-item {
  padding-left: 92px;
  position: relative;
  padding-right: 25px;
}

.apply-process .process-item i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  border: 1px dashed #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.apply-process .process-item:hover i {
  background-color: #fff;
  color: #2042e3;
  border-color: transparent;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.apply-process .process-item h4 {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.apply-process .process-item h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: #fff;
}

.apply-process .process-item p {
  color: #fff;
  display: block;
}

/*======================================
    Job Category CSS
========================================*/
.job-category {
  background-color: #f6f9fc;
}

.job-category.style2 .cat-head {
  padding: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent;
}

.job-category.style2 .single-cat {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  padding: 0;
  border: none;
  text-align: left;
  border-radius: 7px;
  overflow: hidden;
  background-color: #fff;
}

.job-category.style2 .single-cat:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.job-category.style2 .single-cat h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.job-category.style2 .single-cat .top-side {
  position: relative;
  overflow: hidden;
}

.job-category.style2 .single-cat .top-side img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 0;
}

.job-category.style2 .single-cat .top-side::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2042e3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}

.job-category.style2 .single-cat .cat-head {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.job-category.style2 .single-cat .bottom-side {
  padding: 25px 30px;
  position: relative;
}

.job-category.style2 .single-cat .bottom-side .available-job {
  background-color: #2042e3;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 15px;
  position: absolute;
  right: 30px;
  top: -19px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.job-category.style2 .single-cat:hover .top-side:before {
  opacity: 0.5;
  visibility: visible;
}

.job-category .cat-head {
  padding: 35px 50px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.job-category .single-cat {
  text-align: center;
  padding: 30px;
  border: 1px dashed #eee;
  margin: 15px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
}

.job-category .single-cat:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.job-category .single-cat i {
  font-size: 26px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  background: #2042e31c;
  color: #2042e3;
  border-radius: 4px;
}

.job-category .single-cat h3 {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #081828;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.job-category .single-cat h3:hover {
  color: #2042e3;
}

.all-categories {
  border-bottom: 1px solid #eee;
  padding-bottom: 70px;
}

.all-categories .categories-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.all-categories .cat-title {
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  background: #2042e3;
  color: #fff;
}

.all-categories .cat-title span {
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
}

.all-categories ul {
  margin-bottom: 30px;
}

.all-categories ul li {
  display: block;
  margin-bottom: 7px;
}

.all-categories ul li:last-child {
  margin: 0;
}

.all-categories ul li a {
  color: #888;
  padding: 10px 15px;
  border: 1px solid #eee;
  display: block;
  border-radius: 4px;
}

.all-categories ul li a:hover {
  color: #fff;
  background-color: #2042e3;
  border-color: transparent;
}

/*======================================
    Call Action CSS
========================================*/
.call-action {
  background-image: url("../images/call-action/cat-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.call-action.style2 {
  background-color: #2042e3;
  background-image: none;
  padding: 70px 0;
}

.call-action.style2 .text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.call-action.style2 .button {
  position: relative;
}

.call-action.style2 .button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 26px;
  height: 2px;
  width: 48%;
  border: 1px dashed #fff;
}

.call-action.style2 .button .btn {
  background-color: #fff;
  color: #2042e3;
  float: right;
}

.call-action.style2 .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.call-action .section-title {
  padding: 0;
  padding: 0px 50px;
  margin: 0;
}

.call-action .section-title span {
  color: #2042e3;
  background-color: #fff;
}

.call-action .section-title h2 {
  text-transform: none;
  color: #fff;
}

.call-action .section-title h2::before {
  background-color: #fff;
}

.call-action .section-title p {
  color: #fff;
}

.call-action .section-title .button {
  display: block;
  margin-top: 50px;
}

.call-action .section-title .button .btn {
  background-color: #fff;
  color: #2042e3;
}

.call-action .section-title .button .btn i {
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
}

.call-action .section-title .button .btn:hover {
  color: #fff;
  background-color: #081828;
}

.call-action.overlay::before {
  background-color: #2042e3;
  opacity: 0.8;
  z-index: -1;
}

/*======================================
    Responsive CSS
========================================*/
/* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding: 60px 0px;
  }

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

  .section-title span {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-top: 5px;
    line-height: 38px;
  }

  .section-title.align-left {
    padding: 0;
    padding-right: 200px;
  }

  .section-title p {
    font-size: 13px;
  }

  .breadcrumbs {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 30px;
    margin-bottom: 5px;
    color: #fff;
  }

  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }

  #scrollUp {
    bottom: 55px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .header .button {
    margin: 0;
  }

  .header.index2 .sticky .navbar .navbar-toggler .toggler-icon {
    background: #081828 !important;
  }

  .header .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    padding: 10px;
    z-index: 9999999;
    left: 95px;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 13px;
    top: 0;
    -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    border: 1px dashed #eee;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header .navbar-nav li .sub-menu li a {
    padding: 5px 10px;
    font-size: 13px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .header .navbar-nav li a:hover .sub-menu {
    top: 42px;
  }

  .header .navbar-nav li a {
    position: relative;
    margin-bottom: 6px;
  }

  .navbar-collapse {
    overflow: scroll;
    height: 400px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navbar-nav .nav-item:last-child {
    padding-bottom: 20px;
  }

  .right-button .btn {
    font-size: 13px;
  }

  .breadcrumbs .bread-list {
    margin-top: 8px;
  }

  .hero-area .hero-inner {
    height: 550px;
  }

  .hero-area .hero-inner::before {
    display: none;
  }

  .hero-area .hero-text {
    float: none;
    margin-top: 140px;
  }


  .hero-area .hero-text .button {
    margin-top: 25px;
  }

  .hero-area .hero-video-head {
    display: none;
  }

  .hero-area.style2 .home-slider {
    position: relative;
    height: 450px;
  }

  .hero-area.style2 .hero-inner .hero-text {
    margin-top: 150px;
  }

  .hero-area.style2 .tns-controls button {
    width: 30px;
    height: 50px;
    z-index: 2;
    color: #fff;
    font-size: 15px;
    background: #2042e3;
    border: none;
    padding: 2px 5px;
    border-radius: 4px;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: absolute;
    z-index: 99;
    top: 50%;
    margin-top: -25px;
  }

  .hero-area.style2 .tns-controls button:hover {
    background-color: #081828;
    color: #fff;
  }

  .hero-area.style2 .tns-controls button:first-child {
    border-radius: 0 5px 5px 0 !important;
    left: 0;
  }

  .hero-area.style2 .tns-controls button:last-child {
    border-radius: 5px 0 0 5px !important;
    right: 0;
  }

  .hero-area.style2 .hero-image {
    display: none !important;
  }

  .hero-area.style3 .hero-inner {
    height: auto !important;
    padding-bottom: 50px;
  }

  .hero-area.style3 .hero-inner .hero-text {
    margin-top: 120px;
    text-align: center;
    padding: 0 !important;
  }

  .hero-area.style3 .trending-keywords {
    text-align: center;
  }

  .hero-area.style3 .trending-keywords .keywords {
    text-align: center;
    display: inline-block;
  }

  .hero-area.style3 .home-search {
    margin-top: 40px;
  }

  .hero-area.style3 .home-search .button {
    margin-top: 20px;
  }

  .hero-area.style3 .home-search .button .btn {
    width: 100%;
  }

  .hero-area.style4 .hero-inner .hero-text {
    margin-top: 120px;
    text-align: center;
    padding: 0 !important;
  }

  .apply-process .process-item {
    padding: 0 !important;
    padding-top: 0px;
    text-align: center;
    padding-top: 80px !important;
  }

  .apply-process .process-item i {
    left: 50% !important;
    margin-left: -30px;
    height: 60px !important;
    width: 60px !important;
    font-size: 25px !important;
    line-height: 60px !important;
  }

  .apply-process .process-item h4:before {
    left: 50% !important;
    margin-left: -25px;
  }

  .call-action.style2 .text h2 {
    font-size: 24px !important;
  }

  .call-action.style2 .button::before {
    display: none;
  }

  .about-us .content-left {
    position: relative;
    text-align: center;
  }

  .about-us .content-left .md-left {
    margin-left: 0 !important;
  }

  .about-us .content-left .media-body {
    text-align: left;
  }

  .about-us .content-right {
    margin-top: 50px;
    padding: 0;
  }

  .about-us .content-right h2 {
    font-size: 27px;
    margin-bottom: 40px;
    line-height: 38px;
  }

  .featured-job .single-job .content .button .btn {
    padding: 12px 28px !important;
  }

  .testimonials .patern1 {
    display: none;
  }

  .testimonials .testimonial-right {
    display: none;
  }

  .all-categories .categories-title {
    font-size: 25px !important;
  }

  .find-job.job-list {
    padding-top: 30px !important;
  }

  .pricing-table .section-title {
    margin-bottom: 20px;
  }

  .pricing-table .single-table {
    margin-top: 30px;
  }

  .faq-area {
    padding-bottom: 30px !important;
  }

  .faq-area .heading {
    font-size: 17px;
    line-height: 28px;
  }

  .brand-area .section-title.align-left {
    padding-right: 200px;
    margin-bottom: 40px !important;
  }

  .newsletter-area .mini-call-action {
    height: auto;
  }

  .latest-news-area .section-title {
    margin-bottom: 20px;
  }

  .latest-news-area .single-news {
    margin-top: 30px;
  }

  .post-details .post-meta li {
    margin-bottom: 8px;
  }

  .latest-news-area.blog-list {
    padding-top: 30px;
  }

  .blog-list .single-news {
    margin-bottom: 0 !important;
  }

  .post-details p {
    margin: 25px 0;
  }

  .sidebar {
    margin-top: 30px;
  }

  .sidebar .widget.search-widget form input {
    padding: 0 80px 0 20px;
  }

  .sidebar .widget.social-widget ul li {
    margin-bottom: 10px;
  }

  .contact-area .contact-address-wrapper {
    padding-right: 0;
  }

  .contact-area .inner-section-title h2 {
    font-weight: 700;
    font-size: 28px;
  }

  .sidebar.service-sidebar .service-category>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    padding: 10px 15px;
  }

  .sidebar.service-sidebar .service-category {
    padding: 30px;
  }

  .sidebar.service-sidebar .service-docs {
    padding: 30px;
  }

  .sidebar.service-sidebar .service-quote {
    padding: 30px;
  }

  .adv-banner {
    padding: 30px;
  }

  .post-details .post-title {
    line-height: 30px;
  }

  .post-details .post-title a {
    font-size: 24px;
    font-weight: 600;
  }

  .blog-middle-image {
    margin-bottom: 20px;
  }

  .blog-single .sidebar {
    margin-top: 30px;
  }

  .map-section {
    background-color: #fff;
    margin-top: 50px;
    padding-bottom: 60px !important;
    height: auto;
  }

  .map-section iframe {
    height: 300px !important;
  }

  .newsletter-area .mini-call-action {
    margin-top: 30px;
  }

  .error-page .error-image img {
    width: 70%;
  }

  .error-page .error-text {
    margin-top: 50px;
    padding-left: 0 !important;
    text-align: center !important;
    padding: 0px 100px !important;
  }

  .error-area .error-content h1 {
    font-size: 90px !important;
  }

  .maill-success .success-content h1 {
    font-size: 30px !important;
  }

  .maill-success .success-content h2 {
    font-size: 20px !important;
  }

  .contact-us .form-main {
    padding: 50px 50px 50px 50px !important;
  }

  .contact-us .single-head {
    padding-top: 0 !important;
  }

  .dashbord-sidebar {
    margin-bottom: 30px;
  }

  .footer .footer-top {
    text-align: center;
  }

  .footer .footer-top .download-button {
    text-align: center !important;
    margin-top: 20px;
  }

  .footer .footer-middle {
    padding-bottom: 60px;
    padding-top: 30px;
  }

  .footer .f-about p {
    padding-right: 80px;
  }

  .footer .single-footer {
    margin-top: 30px;
  }
}

/* Mobile Screen */
@media only screen and (max-width: 767px) {
  .section {
    padding: 50px 0px;
  }

  .section-title {
    margin-bottom: 40px;
    padding: 0px 20px;
  }

  .section-title span {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 25px;
    margin-top: 3px;
    line-height: 35px;
  }

  .section-title.align-left {
    padding: 0;
    padding-right: 0;
  }

  .section-title p {
    font-size: 13px;
  }

  .breadcrumbs {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 5px;
    color: #fff;
  }

  .breadcrumbs .breadcrumb-nav {
    margin-top: 30px;
  }

  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }

  #scrollUp {
    bottom: 55px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .header.index2 .navbar .navbar-nav .nav-item a {
    color: #081828;
  }

  .header.index2 .navbar .navbar-nav .nav-item a::before {
    background-color: #2042e3;
  }

  .header .button {
    margin: 0;
  }

  .header .button .btn {
    padding: 0 !important;
    width: auto !important;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px !important;
    font-size: 13px;
  }

  .header .button .login {
    padding: 0 !important;
    width: auto !important;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px !important;
    font-size: 13px;
    margin-right: 10px;
  }

  .header .button .login i {
    display: inline-block;
    margin-right: 6px;
    font-size: 13px;
    line-height: 30px;
  }

  .header .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    padding: 10px;
    z-index: 9999999;
    left: 95px;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 13px;
    top: 0;
    -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    border: 1px dashed #eee;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header .navbar-nav li .sub-menu li a {
    padding: 5px 10px;
    font-size: 13px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .header .navbar-nav li a:hover .sub-menu {
    top: 42px;
  }

  .header .navbar-nav li a {
    position: relative;
    margin-bottom: 6px;
  }

  .navbar-collapse {
    overflow: scroll;
    height: 400px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navbar-nav .nav-item:last-child {
    padding-bottom: 20px;
  }

  .navbar-toggler {
    padding: 0;
    background-color: #2042e3;
    padding: 5px 8px !important;
  }

  .navbar-toggler .toggler-icon {
    background-color: #fff !important;
    width: 20px !important;
    margin: 3px 0 !important;
  }

  .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    top: 5px !important;
  }

  .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    top: -5px !important;
  }

  .right-button .btn {
    font-size: 13px;
  }

  .breadcrumbs .bread-list {
    margin-top: 8px;
  }

  .hero-area .job-search-wrap-two {
    margin-top: 30px !important;
  }

  .hero-area .hero-inner {
    height: auto;
    overflow: visible;
    padding-bottom: 50px;
  }

  .hero-area .hero-text {
    float: none;
    margin-top: 100px;
  }

  .hero-area .hero-text h1 {
    font-size: 23px;
    line-height: 30px;
  }

  .hero-area .hero-text .button .btn {
    margin: 0 !important;
    width: 60%;
    margin-bottom: 10px !important;
  }

  .hero-area .hero-text .button .btn:last-child {
    margin: 0 !important;
  }

  .hero-area .hero-video-head {
    display: none;
  }

  .hero-area.style2 .home-slider {
    position: relative;
    height: auto !important;
  }

  .hero-area.style2 .hero-inner .hero-text {
    margin-top: 120px;
    padding: 0 !important;
  }

  .hero-area.style2 .hero-inner .hero-text .btn {
    margin: 0 !important;
    width: 100%;
    margin-bottom: 10px !important;
  }

  .hero-area.style2 .hero-inner .hero-text .btn:last-child {
    margin: 0 !important;
  }

  .hero-area.style2 .tns-controls button {
    width: 30px;
    font-size: 15px;
  }

  .hero-area.style2 .tns-controls button:hover {
    background-color: #081828;
    color: #fff;
  }

  .hero-area.style2 .tns-controls button:first-child {
    border-radius: 0 5px 5px 0 !important;
    left: 0;
  }

  .hero-area.style2 .tns-controls button:last-child {
    border-radius: 5px 0 0 5px !important;
    right: 0;
  }

  .hero-area.style2 .hero-image {
    display: none !important;
  }

  .hero-area.style3 .hero-inner {
    height: auto !important;
    padding-bottom: 50px;
  }

  .hero-area.style3 .hero-inner .hero-text {
    margin-top: 120px;
    text-align: center;
    padding: 0 !important;
  }

  .hero-area.style3 .trending-keywords {
    text-align: center;
  }

  .hero-area.style3 .trending-keywords .keywords {
    text-align: center;
    display: inline-block;
  }

  .hero-area.style3 .home-search {
    margin-top: 40px;
  }

  .hero-area.style4 .hero-inner .hero-text {
    margin-top: 120px;
    text-align: center;
    padding: 0 !important;
  }

  .apply-process {
    padding-bottom: 45px !important;
  }

  .apply-process.style4 {
    padding-top: 120px !important;
  }

  .apply-process .process-item {
    margin-bottom: 35px;
    padding-left: 80px !important;
  }

  .apply-process .process-item i {
    height: 50px !important;
    width: 50px !important;
    font-size: 20px !important;
    line-height: 50px !important;
    top: 5px !important;
  }

  .apply-process .process-item h4 {
    font-size: 16px !important;
    margin-bottom: 14px !important;
    padding-bottom: 16px !important;
  }

  .about-us .content-left {
    padding: 0;
  }

  .about-us .content-left::before {
    display: none;
  }

  .about-us .content-left .single-img {
    border-radius: 5px;
  }

  .about-us .content-left .single-img.mt-50 {
    margin-top: 30px !important;
  }

  .about-us .content-left .single-img.minus-margin {
    position: relative;
    top: 0px;
  }

  .about-us .content-left .media-body {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .about-us .content-left .media-body h6 {
    font-size: 20px;
  }

  .about-us .content-right {
    margin-top: 50px;
    padding: 0;
  }

  .about-us .content-right h2 {
    font-size: 27px;
    margin-bottom: 40px;
    line-height: 38px;
  }

  .call-action .section-title {
    padding: 0 !important;
  }

  .find-job.job-list {
    padding-top: 20px !important;
  }

  .find-job .single-job {
    padding: 0 !important;
    padding: 40px !important;
  }

  .find-job .single-job .job-image {
    margin: 0;
    position: relative !important;
    margin-bottom: 20px;
    left: 0 !important;
    top: 0 !important;
    display: inline-block;
  }

  .find-job .single-job .job-content h4 {
    padding: 0 !important;
    padding-bottom: 15px !important;
  }

  .find-job .single-job .job-button {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin-top: 20px;
  }

  .featured-job .single-job .content .button .btn {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  .featured-job .single-job .content .button .btn:last-child {
    margin: 0 !important;
  }

  .all-categories {
    padding-bottom: 20px !important;
  }

  .all-categories .categories-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .find-job .search-job .search-nner input {
    margin-bottom: 15px !important;
  }

  .browse-resumes .inner-content .resume-item {
    padding-left: 0 !important;
  }

  .browse-resumes .inner-content .resume-item img {
    position: relative !important;
    margin-bottom: 20px;
  }

  .browse-resumes .inner-content .resume-item .right .year-exp {
    padding: 7px 15px !important;
    position: relative !important;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .testimonials .patern1 {
    display: none;
  }

  .testimonials .testimonial-right {
    display: none;
  }

  .testimonials .tns-controls {
    position: absolute;
    right: 50%;
    bottom: -65px;
    z-index: 9;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  .testimonials button {
    width: 40px !important;
    height: 40px !important;
    font-size: 13px !important;
    line-height: 40px !important;
  }

  .pricing-table .section-title {
    margin-bottom: 10px;
  }

  .pricing-table .single-table {
    margin-top: 30px;
  }

  .faq-area {
    padding-bottom: 20px !important;
  }

  .faq-area .single-faq {
    margin-bottom: 45px;
  }

  .faq-area .heading {
    font-size: 15px;
    line-height: 25px;
  }

  .brand-area .section-title.align-left {
    padding-right: 0;
    margin-bottom: 40px !important;
  }

  .client-logo-section {
    padding: 0 !important;
  }

  .client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
    max-width: 170px;
  }

  .latest-news-area .section-title {
    margin-bottom: 10px;
  }

  .latest-news-area .single-news {
    margin-top: 30px;
  }

  .latest-news-area .single-news .content-body .title {
    line-height: 24px !important;
  }

  .latest-news-area .single-news .content-body .title a {
    font-size: 17px !important;
  }

  .post-details .post-meta li {
    margin-bottom: 8px;
  }

  .post-details p {
    margin: 20px 0;
  }

  .post-image .blog-inner-big-img {
    margin-bottom: 1.5rem !important;
  }

  .post-details .list {
    margin-left: 0 !important;
  }

  .post-details .list li i {
    top: 6px !important;
  }

  .post-comments {
    padding: 30px;
  }

  .post-comments .comments-list {
    padding: 0 !important;
  }

  .post-comments .comments-list li {
    padding: 0 !important;
  }

  .post-comments .comments-list li .comment-img {
    position: relative !important;
  }

  .comment-form {
    padding: 30px;
  }

  .comment-form form .form-box .form-control-custom {
    height: 50px;
    margin-bottom: 15px;
  }

  .post-comments .comments-list li.children {
    margin-left: 0 !important;
  }

  .post-comments .comments-list li {
    padding-top: 30px !important;
  }

  .post-comments .comments-list li .comment-desc {
    margin-top: -15px;
  }

  .post-comments .comments-list li .comment-img img {
    max-width: 70px;
    max-height: 70px;
    display: inline-block !important;
    margin-bottom: -15px !important;
  }

  .post-comments .comments-list li .comment-desc .desc-top .reply-link {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 8px 25px;
    position: relative;
    margin-top: 15px;
  }

  .post-comments .comments-list li {
    padding-left: 100px;
  }

  .latest-news-area.blog-list {
    padding-top: 20px;
  }

  .blog-list .single-news {
    margin-bottom: 0 !important;
  }

  .sidebar {
    margin-top: 30px;
  }

  .sidebar .widget.search-widget form input {
    padding: 0 80px 0 20px;
  }

  .sidebar .widget.social-widget ul li {
    margin-bottom: 10px;
  }

  .contact-area .contact-address-wrapper {
    padding-right: 0;
  }

  .contact-area .inner-section-title h2 {
    font-weight: 700;
    font-size: 28px;
  }

  .sidebar.service-sidebar .service-category>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    padding: 10px 15px;
  }

  .sidebar.service-sidebar .service-category {
    padding: 30px;
  }

  .sidebar.service-sidebar .service-docs {
    padding: 30px;
  }

  .sidebar.service-sidebar .service-quote {
    padding: 30px;
  }

  .adv-banner {
    padding: 30px;
  }

  .post-details .post-title {
    line-height: 30px;
  }

  .post-details .post-title a {
    font-size: 24px;
    font-weight: 600;
  }

  .blog-middle-image {
    margin-bottom: 20px;
  }

  .blog-single .sidebar {
    margin-top: 30px;
  }

  .map-section {
    background-color: #fff;
    margin-top: 50px;
    padding-bottom: 50px !important;
    height: auto;
  }

  .map-section iframe {
    height: 300px !important;
  }

  .brand-list {
    border: none;
  }

  .brand-list:before {
    display: none;
  }

  .brand-list li {
    border: 1px solid #eee;
  }

  .brand-list li a {
    border: none;
  }

  .faq-area .single-faq {
    margin-bottom: 30px !important;
  }

  .error-area .error-content h1 {
    font-size: 60px !important;
  }

  .error-area .error-content h2 {
    font-size: 18px !important;
  }

  .maill-success .success-content h1 {
    font-size: 28px !important;
  }

  .maill-success .success-content h2 {
    font-size: 18px !important;
  }

  .contact-us .single-head {
    padding-top: 0 !important;
  }

  .add-resume .add-resume-inner .post-header p {
    float: left !important;
  }

  .add-resume .add-post-btn {
    float: none !important;
    margin-top: 10px;
  }

  .add-resume .button {
    margin-bottom: 15px;
    display: block;
  }

  .add-resume .add-resume-inner .add-post-btn ul li {
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  .add-resume .add-resume-inner .add-post-btn ul li:last-child {
    margin: 0 !important;
  }

  .job-alerts .job-alerts-items .alerts-list {
    text-align: center;
  }

  .job-alerts .job-alerts-items .alerts-content {
    text-align: center;
  }

  .job-alerts .job-alerts-items .alerts-content h3 {
    margin-bottom: 10px;
  }

  .pagination-md-center {
    text-align: center !important;
  }

  .job-alerts .job-alerts-items .alerts-content .full-time {
    margin: 5px 0;
  }

  .job-details .job-details-inner {
    padding: 30px !important;
  }

  .job-details .content {
    padding: 0 !important;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .job-details .company-logo {
    padding-left: 0 !important;
  }

  .job-details .title {
    display: block;
    margin-top: 10px;
  }

  .job-details .job-details-head .salary-type {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .job-details .job-details-sidebar .sidebar-widget:first-child {
    margin-top: 30px !important;
  }

  .modal .login-modal-main {
    padding: 25px !important;
  }

  .modal .login-modal-main .heading h3 {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .modal .login-modal-main .social-login ul li a {
    padding: 10px 10px !important;
    padding-left: 10px !important;
    font-size: 13px !important;
    padding-left: 32px !important;
  }

  .modal .login-modal-main .social-login ul li a i {
    position: absolute;
    left: 15px !important;
    top: 14px !important;
    font-size: 13px !important;
  }

  .dashbord-sidebar {
    margin-bottom: 30px;
  }

  .pagination {
    margin-top: 30px;
  }

  .pagination .pagination-list li {
    margin-top: 10px;
  }

  .bookmarked .job-items .manage-content {
    text-align: center;
  }

  .bookmarked .job-items .manage-content .can-img {
    float: none !important;
    text-align: center;
  }

  .bookmarked .job-items .manage-content .time {
    margin-top: 20px;
    padding: 7px 14px !important;
    display: inline-block !important;
    text-align: center;
    margin-bottom: 10px;
  }

  .bookmarked .job-items .manage-content .location {
    text-align: center;
    margin-bottom: 10px;
    padding: 0 !important;
  }

  .bookmarked .job-items .manage-content .location i {
    position: relative !important;
    top: 0 !important;
  }

  .bookmarked .job-items .manage-content .button .btn {
    display: inline-block !important;
    padding: 7px 14px;
  }

  .manage-applications .job-items .manage-content {
    text-align: center;
  }

  .manage-applications .job-items .manage-content .title-img .can-img {
    float: none !important;
  }

  .manage-applications .job-items .manage-content .time {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .manage-jobs .job-items .manage-list {
    text-align: center;
  }

  .manage-jobs .job-items .manage-content {
    text-align: center;
  }

  .manage-jobs .job-items .manage-content .time {
    display: inline-block;
    margin: 15px 0 10px 0;
  }

  .manage-jobs .job-items .manage-content .can-img img {
    margin-bottom: 10px !important;
  }

  .manage-resumes .inner-content .resume-item {
    padding: 0 !important;
  }

  .manage-resumes .inner-content .resume-item img {
    position: relative !important;
    margin-bottom: 20px;
  }

  .manage-resumes .inner-content .resume-item .status {
    display: block;
    margin-bottom: 10px;
  }

  .manage-resumes .inner-content .resume-item .action-btn a {
    margin-bottom: 10px;
  }

  .manage-resumes .inner-content .resume-item .action-btn a:last-child {
    margin-bottom: 10px !important;
  }

  .notifications .job-items .manage-content {
    text-align: center;
  }

  .notifications .job-items .manage-content .can-img img {
    float: none;
    margin-bottom: 15px !important;
  }

  .notifications .job-items .manage-content .time p {
    float: none !important;
    margin-top: 15px !important;
    text-align: center;
  }

  .resume .content-right {
    margin-top: 20px;
  }

  .resume .content-right .title-main {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
  }

  .resume .inner-content .social li {
    margin-bottom: 10px;
  }

  .resume .inner-content .single-section.exprerience .single-exp .image img {
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  .call-action.style2 {
    text-align: center;
  }

  .call-action.style2 h2 {
    font-size: 28px !important;
  }

  .call-action.style2 .button {
    position: relative;
    text-align: center;
    margin-top: 20px;
  }

  .call-action.style2 .button:before {
    display: none !important;
  }

  .call-action.style2 .button .btn {
    float: none !important;
    text-align: center;
  }

  .footer .footer-top {
    text-align: center;
  }

  .footer .footer-top .download-text h3 {
    font-size: 22px !important;
  }

  .footer .footer-top .download-button {
    text-align: center !important;
    margin-top: 20px;
  }

  .footer .footer-top .download-button .button .btn {
    width: 70%;
    margin: 0 !important;
    margin-bottom: 10px !important;
  }

  .footer .footer-top .download-button .button .btn:last-child {
    margin: 0 !important;
  }

  .footer .footer-middle {
    padding-bottom: 50px !important;
    padding-top: 20px !important;
  }

  .footer .f-about p {
    padding-right: 80px;
    line-height: 24px !important;
  }

  .footer .f-link ul li {
    margin-bottom: 10px !important;
  }

  .footer .single-footer h3 {
    margin-bottom: 22px !important;
  }

  .footer .single-footer {
    margin-top: 30px;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .left {
    margin-bottom: 15px;
  }

  .footer .footer-bottom .left p {
    text-align: center;
  }

  .footer .footer-bottom .right ul {
    text-align: center !important;
  }
}

/*======================================
    Modal CSS
========================================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.position-relative {
  position: relative !important;
}

.pos-abs-tr {
  position: absolute;
  top: 0;
  right: 0;
}

.z-index-supper {
  z-index: 800;
}

.circle-32 {
  max-width: 32px;
  min-width: 32px;
  max-height: 32px;
  min-height: 32px;
  border-radius: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 20px;
  top: 20px;
  background: #eee !important;
  border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.circle-32:hover {
  background-color: #081828 !important;
  color: #fff !important;
}

.btn-reset {
  background: transparent;
  border: 0;
}

.modal.show .modal-dialog {
  pointer-events: visible;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.modal .login-modal-main {
  background-color: #fff;
  padding: 50px;
  border-radius: 6px;
  overflow: hidden;
}

.modal .login-modal-main .heading h3 {
  color: #081828;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  line-height: 32px;
}

.modal .login-modal-main .heading h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: #2042e3;
}

.modal .login-modal-main .social-login {
  margin-top: 30px;
}

.modal .login-modal-main .social-login ul li {
  margin-bottom: 10px;
}

.modal .login-modal-main .social-login ul li:last-child {
  margin-bottom: 0;
}

.modal .login-modal-main .social-login ul li a {
  text-align: center;
  position: relative;
  background-color: #2042e3;
  padding: 13px 30px;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  z-index: 2;
}

.modal .login-modal-main .social-login ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.modal .login-modal-main .social-login ul li a:hover::before {
  opacity: 0.2;
  visibility: visible;
}

.modal .login-modal-main .social-login ul li a i {
  position: absolute;
  left: 30px;
  top: 14px;
  font-size: 20px;
}

.modal .login-modal-main .social-login ul li .linkedin {
  background-color: #0077B5;
}

.modal .login-modal-main .social-login ul li .google {
  background-color: #dd4b39;
}

.modal .login-modal-main .social-login ul li .facebook {
  background-color: #3b5999;
}

.modal .login-modal-main .or-devider {
  text-align: center;
  position: relative;
  z-index: 1;
}

.modal .login-modal-main .or-devider span {
  display: inline-block;
  background: white;
  padding: 15px 25px;
}

.modal .login-modal-main .or-devider::before {
  content: "";
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0%;
  margin-top: 1.5px;
  position: absolute;
  background: #eee;
  z-index: -1;
}

.modal .login-modal-main .form-group {
  margin-bottom: 20px;
}

.modal .login-modal-main .form-group:last-child {
  margin-bottom: 0;
}

.modal .login-modal-main .form-group .label {
  font-size: 15px;
  font-weight: 500;
  color: #081828;
  display: block;
  margin-bottom: 8px;
}

.modal .login-modal-main .form-group .form-control {
  height: 50px;
  border: 1px solid #eee;
  padding: 0px 30px;
  color: #081828;
  border-radius: 5px;
  font-size: 15px;
}

.modal .login-modal-main .form-group .pass {
  padding-right: 0;
}

.modal .login-modal-main .button {
  width: 100%;
}

.modal .login-modal-main .button .btn {
  width: 100%;
}

.modal .login-modal-main .create-new-account {
  color: #081828;
  font-size: 15px;
}

.modal .login-modal-main .create-new-account a {
  color: #2042e3;
}

.modal .login-modal-main .create-new-account a:hover {
  text-decoration: underline;
}

.pos-abs-cr {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  display: block;
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  line-height: 30px;
  text-align: center;
  display: block;
}

.pos-abs-cr::before {
  content: "\eab1";
  font-family: Lineicons;
  color: #081828;
  font-size: 17px;
}

.pos-abs-cr::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 14px;
  height: 2px;
  width: 20px;
  background-color: #555;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0px;
  opacity: 0;
  visibility: hidden;
}

.pos-abs-cr.show::after {
  opacity: 1;
  visibility: visible;
}

/*======================================
	Footer CSS (Premium Dark Theme)
========================================*/
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  z-index: 2;
  position: relative;
}

.footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  background: rgba(0, 74, 173, 0.03);
}

.footer .footer-top .download-text h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer .footer-top .download-text p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
}

.footer .footer-top .download-button .btn {
  background: #004aad;
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
  transition: all 0.3s;
  margin-right: 15px;
}

.footer .footer-top .download-button .btn:hover {
  transform: translateY(-3px);
  background: #003a8c;
  color: #fff;
}

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

.footer .footer-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
}

.footer .footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.footer .footer-logo-text span {
  color: #004aad;
}

.footer .f-about p {
  font-size: 15px;
  line-height: 1.8;
  color: #94a3b8;
}

.footer .f-about .contact-address {
  margin-top: 25px;
}

.footer .f-about .contact-address li {
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer .f-about .contact-address li span {
  color: #fff;
  font-weight: 700;
}

.footer .f-about .contact-address li a {
  color: #94a3b8;
}

.footer .f-about .contact-address li a:hover {
  color: #004aad;
}

.footer .footer-social {
  margin-top: 35px;
}

.footer .footer-social ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .footer-social ul li a {
  height: 44px;
  width: 44px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-social ul li a:hover {
  background: #004aad;
  color: #fff;
  border-color: #004aad;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
}

.footer .footer-middle {
  padding: 80px 0;
}

.footer .single-footer h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer .f-link ul li {
  margin-bottom: 15px;
  position: relative;
}

.footer .f-link ul li:last-child {
  margin: 0;
}

.footer .f-link ul li a {
  display: inline-block;
  color: #7E8890;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .f-link ul li a:hover {
  color: #2042e3;
  text-decoration: underline;
}

.footer .footer-bottom {
  border-top: 1px solid #eee;
}

.footer .footer-bottom .inner {
  padding: 30px 0;
  text-align: left;
}

.footer .footer-bottom .inner p {
  font-size: 14px;
  color: #7E8890;
}

.footer .footer-bottom .inner p a {
  font-weight: 400;
  display: inline-block;
  margin-left: 6px;
  color: #7E8890;
}

.footer .footer-bottom .inner p a:hover {
  color: #2042e3;
  text-decoration: underline;
}

.footer .footer-bottom .inner .right ul {
  text-align: right;
}

.footer .footer-bottom .inner .right ul li {
  display: inline-block;
  margin-right: 15px;
}

.footer .footer-bottom .inner .right ul li:last-child {
  margin: 0;
}

.footer .footer-bottom .inner .right ul li a {
  color: #7E8890;
}

.footer .footer-bottom .inner .right ul li a:hover {
  text-decoration: underline;
  color: #2042e3;
}

.footer .newsletter form {
  margin-top: 30px;
}

.footer .newsletter input {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #eee;
  color: #081828;
  padding: 0px 25px;
}

.footer .newsletter button {
  height: 50px;
  margin-top: 15px;
  width: 100%;
}

/* =============================================
   dashboard-shared.css
   Shared styles for all dashboard pages
   ============================================= */

/* ===== Section ===== */
.dash-section {
  padding: 60px 0 80px;
  background: #f4f7fb;
  min-height: 70vh;
}

/* ===== Sidebar ===== */
.dash-sidebar {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(8, 24, 40, 0.08);
  position: sticky;
  top: 100px;
}

.dash-sidebar-profile {
  background: linear-gradient(135deg, #1a56db 0%, #0c3c9e 100%);
  padding: 32px 24px 30px;
  text-align: center;
  position: relative;
}

.dash-sidebar-profile::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 22px;
  background: #fff;
  border-radius: 22px 22px 0 0;
}

.dash-avatar-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.dash-avatar-ring i {
  font-size: 36px;
  color: #fff;
}

.dash-sidebar-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dash-sidebar-email {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ===== Sidebar Nav ===== */
.dash-nav {
  padding: 10px 0 18px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  cursor: pointer;
  border-left: 3px solid transparent;
  color: #5a6478;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.22s ease;
}

.dash-nav-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.dash-nav-item:hover {
  background: #f0f5ff;
  color: #1a56db;
  border-left-color: #1a56db;
}

.dash-nav-item.active {
  background: #eef3ff;
  color: #1a56db;
  border-left-color: #1a56db;
  font-weight: 600;
}

.dash-nav-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 8px 22px;
}

.dash-nav-item.logout-item {
  color: #e53935;
}

.dash-nav-item.logout-item:hover {
  background: #fff5f5;
  color: #c62828;
  border-left-color: #e53935;
}

/* ===== Stats Grid ===== */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(8, 24, 40, 0.1);
}

.dash-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-icon i {
  font-size: 20px;
  color: #fff;
}

.dash-stat-icon.blue {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
}

.dash-stat-icon.orange {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.dash-stat-icon.red {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.dash-stat-icon.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.dash-stat-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: #081828;
  margin-bottom: 2px;
}

.dash-stat-info p {
  font-size: 12px;
  color: #7e8890;
  margin: 0;
}

/* ===== Welcome Banner ===== */
.dash-welcome-banner {
  background: linear-gradient(135deg, #1a56db 0%, #0c3c9e 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dash-welcome-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.dash-welcome-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== Panel ===== */
.dash-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(8, 24, 40, 0.07);
  overflow: hidden;
  margin-bottom: 24px;
}

.dash-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dash-panel-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-panel-header-icon.danger {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.dash-panel-header-icon i {
  font-size: 18px;
  color: #fff;
}

.dash-panel-header h5 {
  font-size: 16px;
  font-weight: 700;
  color: #081828;
  margin: 0;
}

.dash-panel-header p {
  font-size: 12.5px;
  color: #7e8890;
  margin: 0;
}

.dash-panel-body {
  padding: 24px;
}

/* ===== Link Buttons ===== */
.dash-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  text-decoration: none !important;
  transition: gap 0.2s;
  white-space: nowrap;
}

.dash-link-btn:hover {
  gap: 8px;
}

/* ===== Table ===== */
.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table thead tr {
  background: #f8fafc;
}

.dash-table th {
  padding: 12px 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: #7e8890;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #edf2f7;
  white-space: nowrap;
}

.dash-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: #3d4a5c;
  border-bottom: 1px solid #f4f7fb;
  vertical-align: middle;
}

.dash-table tbody tr:last-child td {
  border-bottom: none;
}

.dash-table tbody tr:hover td {
  background: #fafcff;
}

.row-num {
  color: #c0cad8 !important;
  font-weight: 600;
}

.doc-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.doc-icon.blue {
  background: #eef3ff;
  color: #1a56db;
}

.doc-icon.red {
  background: #fff1f0;
  color: #ef4444;
}

.doc-icon.green {
  background: #f0fdf4;
  color: #10b981;
}

.doc-icon.purple {
  background: #f5f0ff;
  color: #7c3aed;
}

.doc-name {
  font-weight: 600;
  color: #081828;
  font-size: 13.5px;
}

.doc-type {
  font-size: 12px;
  color: #a0aec0;
}

/* ===== Badges ===== */
.badge-status {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-pending {
  background: #fff7e6;
  color: #d97706;
}

.badge-action {
  background: #fff1f0;
  color: #cf1322;
}

.badge-completed {
  background: #f0fdf4;
  color: #16a34a;
}

.badge-review {
  background: #eff6ff;
  color: #1d4ed8;
}

/* ===== View Button ===== */
.dash-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  background: #eef3ff;
  border-radius: 8px;
  padding: 6px 13px;
  transition: all 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.dash-view-btn:hover {
  background: #1a56db;
  color: #fff;
}

/* ===== Primary Buttons ===== */
.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a56db 0%, #0c3c9e 100%);
  color: #fff !important;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.dash-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.3);
  background: linear-gradient(135deg, #2563eb 0%, #1a56db 100%);
}

.dash-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.dash-btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1a56db;
}

.dash-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #dc2626;
  border: 1.5px solid #fee2e2;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.dash-btn-danger:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.dash-btn-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #d97706;
  border: 1.5px solid #fef3c7;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.dash-btn-warning:hover {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #b45309;
}

/* ===== Mini Stats (Applications page) ===== */
.dash-mini-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dash-mini-stat {
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.06);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  min-width: 80px;
  flex: 1;
}

.dash-mini-stat:hover {
  border-color: #d0dcf8;
}

.dash-mini-stat.active-filter {
  border-color: #1a56db;
  background: #eef3ff;
}

.dash-mini-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #081828;
  display: block;
}

.dash-mini-stat-num.orange {
  color: #d97706;
}

.dash-mini-stat-num.red {
  color: #ef4444;
}

.dash-mini-stat-num.blue {
  color: #1d4ed8;
}

.dash-mini-stat-num.green {
  color: #16a34a;
}

.dash-mini-stat-label {
  font-size: 12px;
  color: #7e8890;
  white-space: nowrap;
}

/* ===== Search & Filter ===== */
.dash-table-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.dash-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.dash-search-wrap i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 15px;
}

.dash-search-input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  /* slightly less padding to reduce sticky feel */
  border: 1.5px solid #e8edf3;
  border-radius: 9px;
  font-size: 14px;
  color: #081828;
  background: #f8fafc;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.dash-search-input:focus {
  border-color: #1a56db;
  background: #fff;
}

.dash-filter-select {
  padding: 9px 14px;
  border: 1.5px solid #e8edf3;
  border-radius: 9px;
  font-size: 14px;
  color: #3d4a5c;
  background: #f8fafc;
  outline: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

/* wrapper applying margin and layout to search/filter row */
/* ===== Separated Premium Search & Filter Layout ===== */
.search-filter-layout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Standalone Premium Search Group */
.dash-search-group {
  position: relative;
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  padding: 0 14px;
  height: 48px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.04);
}

.dash-search-group:focus-within {
  border-color: #1a56db;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.1);
  transform: translateY(-1px);
}

.dash-search-group i {
  color: #a0aec0;
  font-size: 17px;
  margin-right: 12px;
  transition: color 0.2s;
}

.dash-search-group:focus-within i {
  color: #1a56db;
}

.dash-search-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 14.5px !important;
  color: #081828 !important;
  outline: none !important;
  font-family: 'Inter', sans-serif !important;
  height: 100% !important;
}

/* Standalone Premium Filter Group */
.dash-filter-group {
  position: relative;
  min-width: 180px;
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  padding: 0 14px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.04);
}

.dash-filter-group:hover,
.dash-filter-group:focus-within {
  border-color: #1a56db;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.1);
}

.dash-filter-select {
  width: 100%;
  border: none !important;
  background: transparent !important;
  padding: 0 24px 0 0 !important;
  font-size: 14px !important;
  color: #475569 !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  outline: none !important;
  height: 100% !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
}

.dash-filter-select:hover {
  color: #1a56db !important;
}

/* Standalone Action Controls */
.dash-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-action-group .dash-btn-primary,
.dash-action-group .dash-btn-secondary,
.dash-action-group .dash-btn-info {
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  border: 1.5px solid #e8edf3 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 18px !important;
  min-width: auto !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.04);
}

.dash-action-group .dash-btn-primary {
  background: linear-gradient(135deg, #1a56db 0%, #0c3c9e 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.dash-action-group .dash-btn-secondary {
  background: #fff !important;
  color: #64748b !important;
}

.dash-action-group .dash-btn-secondary:hover {
  background: #f8fafc !important;
  color: #ef4444 !important;
  border-color: #fee2e2 !important;
}

.dash-action-group .dash-btn-info {
  background: #fff !important;
  color: #1a56db !important;
}

.dash-action-group .dash-btn-info:hover {
  background: #eef3ff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.15);
}

/* ===== More Filters Reveal ===== */
.more-filters-panel {
  display: none;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.more-filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.filter-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: #a0aec0;
  font-size: 15px;
  pointer-events: none;
}

.flatpickr-input {
  width: 100%;
  height: 44px !important;
  background: #fff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0 12px 0 40px !important;
  font-size: 14px !important;
  color: #081828 !important;
  outline: none !important;
  transition: all 0.2s !important;
}

.flatpickr-input:focus {
  border-color: #1a56db !important;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1) !important;
}

/* ===== Form Styles ===== */
.dash-form-group {
  margin-bottom: 18px;
}

.dash-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3d4a5c;
  margin-bottom: 7px;
}

.req {
  color: #ef4444;
}

.dash-form-control {
  width: 100%;
  height: 52px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: #081828;
  background-color: #fff !important;
  border: 1.5px solid #e8edf3 !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 10px rgba(8, 24, 40, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Inter', sans-serif;
}

.dash-form-control:hover {
  border-color: #cbd5e1 !important;
  background-color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 24, 40, 0.06) !important;
}

.dash-form-control:focus {
  border-color: #1a56db !important;
  background-color: #fff !important;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.1) !important;
  transform: translateY(-1px);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  pointer-events: none;
}

.dash-form-control.with-icon {
  padding-left: 40px;
}

.dash-form-control.with-toggle {
  padding-right: 44px;
}

.pass-toggle {
  position: relative;
}

.pass-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.toggle-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #a0aec0;
  font-size: 17px;
  user-select: none;
  z-index: 1;
  transition: color 0.2s;
}

.toggle-eye:hover {
  color: #1a56db;
}

.dash-form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #a0aec0;
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f2f5;
}

.dash-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ===== Avatar Upload ===== */
.dash-avatar-upload {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px dashed #e8edf3;
  margin-bottom: 12px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.dash-avatar-upload:hover {
  border-color: #1a56db;
  background: #f8fafc;
}

select.dash-form-control {
  padding-right: 40px !important;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
}

textarea.dash-form-control {
  height: auto !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  line-height: 1.6;
}

/* ===== Profile Details (Simple & Best Mode) ===== */
.profile-view-container {
  padding: 30px;
}

.profile-simple-header {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
}

.profile-simple-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 32px;
}

.profile-simple-meta h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.profile-simple-meta p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.profile-simple-section {
  margin-bottom: 40px;
}

.profile-simple-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3b82f6;
  display: inline-block;
}

.profile-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.info-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 16px;
  font-weight: 500;
  color: #334155;
}

@media (max-width: 767px) {
  .profile-simple-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-simple-header {
    flex-direction: column;
    text-align: center;
  }
}

.dash-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.dash-avatar-preview i {
  font-size: 30px;
  color: #fff;
}

.dash-avatar-upload-info h6 {
  font-size: 14px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 4px;
}

.dash-avatar-upload-info p {
  font-size: 12px;
  color: #7e8890;
  margin-bottom: 10px;
}

.btn-upload-photo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a56db;
  background: #eef3ff;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-upload-photo:hover {
  background: #1a56db;
  color: #fff;
}

.btn-remove-photo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  background: #fff1f0;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-remove-photo:hover {
  background: #ef4444;
  color: #fff;
}

/* ===== Alert ===== */
.dash-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dash-alert-success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1.5px solid #bbf7d0;
}

.dash-alert-error {
  background: #fff1f0;
  color: #cf1322;
  border: 1.5px solid #fecaca;
}

.dash-alert i {
  font-size: 20px;
  flex-shrink: 0;
}

.dash-alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.dash-alert-close:hover {
  opacity: 1;
}

/* ===== Password Strength Segments ===== */
.strength-bar-wrap {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.strength-segment {
  flex: 1;
  height: 5px;
  border-radius: 5px;
  background: #e8edf3;
  transition: background 0.3s ease;
}

.strength-label {
  font-size: 12px;
  color: #7e8890;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ===== Security Tips ===== */
.security-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-tips-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f4f7fb;
}

.security-tips-list li:last-child {
  border-bottom: none;
}

.tip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 2px;
}

.tip-text span {
  font-size: 12px;
  color: #7e8890;
  display: block;
}

.security-score-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 18px;
  border: 1px solid #edf2f7;
}

.security-score-box p {
  font-size: 12px;
  color: #7e8890;
  margin-bottom: 2px;
}

.security-score-box strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 8px;
}

.security-score-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.security-score-badge.warn {
  background: #fff7e6;
  color: #d97706;
}

.security-score-badge.good {
  background: #f0fdf4;
  color: #16a34a;
}

/* ===== Danger Panel ===== */
.dash-danger-panel {
  border: 1.5px solid #ffe4e4;
}

.dash-danger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dash-danger-row strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 4px;
}

.dash-danger-row p {
  font-size: 13px;
  color: #7e8890;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .dash-sidebar {
    position: static;
    margin-bottom: 0;
  }

  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-welcome-banner {
    padding: 22px 24px;
  }
}

@media (max-width: 575px) {
  .dash-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dash-panel-body {
    padding: 18px;
  }

  .dash-mini-stats {
    gap: 8px;
  }

  .dash-mini-stat {
    padding: 12px 14px;
    min-width: 60px;
  }
}

/* Mini Stats */
.dash-mini-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dash-mini-stat {
  flex: 1;
  min-width: 90px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(8, 24, 40, 0.06);
  transition: all 0.2s;
}

.dash-mini-stat:hover {
  border-color: #1a56db;
}

.dash-mini-stat.active-filter {
  border-color: #1a56db;
  background: #f0f4ff;
}

.dash-mini-stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #081828;
}

.dash-mini-stat-num.orange {
  color: #d97706;
}

.dash-mini-stat-num.red {
  color: #dc2626;
}

.dash-mini-stat-num.blue {
  color: #1a56db;
}

.dash-mini-stat-num.green {
  color: #059669;
}

.dash-mini-stat-label {
  font-size: 11.5px;
  color: #7e8890;
  font-weight: 500;
}

/* Search */
.dash-search-wrap {
  position: relative;
}

.dash-search-wrap i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #b0bac6;
  font-size: 14px;
}

.dash-search-input {
  width: 100%;
  border: 1.5px solid #e4e9f0;
  border-radius: 10px;
  padding: 9px 14px 9px 38px;
  font-size: 14px;
  color: #081828;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.dash-search-input:focus {
  border-color: #1a56db;
}

/* Application Card */
.app-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #edf1f7;
  box-shadow: 0 1px 8px rgba(8, 24, 40, 0.05);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.app-card:hover {
  box-shadow: 0 4px 18px rgba(8, 24, 40, 0.09);
  border-color: #d4ddf0;
}

/* Card Header Row */
.app-card-row {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Icon */
.app-doc-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

/* Title */
.app-doc-info {
  flex: 1;
  min-width: 140px;
}

.app-doc-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #081828;
  margin-bottom: 2px;
}

.app-doc-type {
  font-size: 12px;
  color: #9aabb8;
  font-weight: 500;
}

/* Inline meta */
.app-meta-inline {
  display: contents;
}

.app-meta-data {
  flex: 0 0 100% !important;
  order: 10;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #eef2f8;
  display: flex !important;
  gap: 20px;
  flex-wrap: wrap;
}

.app-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-meta-lbl {
  font-size: 10.5px;
  color: #aab4c0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.app-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: #3d4f60;
}

.app-meta-val.paid {
  color: #059669;
}

.app-meta-val.pend {
  color: #d97706;
}

.app-meta-val.over {
  color: #dc2626;
}

.app-meta-val.blue {
  color: #1a56db;
}

.app-meta-val.green {
  color: #059669;
}

/* Hide divider as it doesn't fit in 3-row layout */
.app-divider {
  display: none;
}

/* Status badge positioning in Row 1 */
.app-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  order: 2;
  /* Keeps it right of the name info */
}

.s-pending {
  background: #fff7e6;
  color: #d97706;
}

.s-action {
  background: #fff0f0;
  color: #dc2626;
}

.s-review {
  background: #eef3ff;
  color: #1a56db;
}

.s-completed {
  background: #ecfdf5;
  color: #059669;
}

/* Row 3: Action buttons aligned right */
.app-actions {
  flex: 0 0 100% !important;
  order: 20;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f8f9fb;
  flex-wrap: wrap;
}

.btn-app-view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-app-view:hover {
  opacity: 0.85;
  color: #fff;
}

.btn-app-resched {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #7e8890;
  border: 1.5px solid #dde3ed;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-app-resched:hover,
.btn-app-resched.active {
  background: #fff7e6;
  color: #d97706;
  border-color: #fde68a;
}

.btn-app-prepare {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #7e8890;
  border: 1.5px solid #dde3ed;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-app-prepare:hover,
.btn-app-prepare.active {
  background: #eef3ff;
  color: #1a56db;
  border-color: #c7d7fb;
}



/* Appointment Footer */
.app-appt {
  border-top: 1px dashed #edf1f7;
  background: #fafbfd;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex-wrap: wrap;
}

.app-appt-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #4a5568;
}

.app-appt-chip i {
  font-size: 13px;
  color: #aab4c0;
}

.app-appt-chip strong {
  font-weight: 600;
  color: #081828;
}

.app-appt-chip .lbl {
  font-size: 10.5px;
  color: #b0bac6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-right: 2px;
}

.appt-sep {
  width: 1px;
  height: 18px;
  background: #e8edf3;
  flex-shrink: 0;
}

.app-appt-none {
  border-top: 1px dashed #edf1f7;
  background: #fafbfd;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #b0bac6;
}

.app-appt-none a {
  color: #1a56db;
  font-weight: 600;
  text-decoration: none;
  margin-left: 2px;
}

.app-appt-none a:hover {
  text-decoration: underline;
}

/* Step Panel */
.app-steps-panel {
  border-top: 1px solid #edf1f7;
  background: #fafbfd;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.app-steps-panel.open {
  max-height: 400px;
  padding: 20px 20px 18px;
}

.step-heading {
  font-size: 12px;
  font-weight: 700;
  color: #7e8890;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.step-track {
  display: flex;
  align-items: flex-start;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  text-align: center;
}

.step-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e4e9f0;
  z-index: 0;
}

.step-node.done:not(:last-child)::after {
  background: #1a56db;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf1f7;
  color: #b0bac6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 1;
  border: 2px solid #edf1f7;
  transition: all 0.25s;
}

.step-node.done .step-dot {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}

.step-node.current .step-dot {
  background: #fff;
  border-color: #1a56db;
  color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.12);
}

.step-txt {
  font-size: 12px;
  font-weight: 600;
  color: #aab4c0;
}

.step-node.done .step-txt,
.step-node.current .step-txt {
  color: #1a56db;
}

.step-sub-txt {
  font-size: 11px;
  color: #c0ccd8;
}

.step-footer {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #edf1f7;
  flex-wrap: wrap;
  align-items: center;
}

.btn-step-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-step-go:hover {
  opacity: 0.88;
  color: #fff;
}

.btn-step-close {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #9aabb8;
  border: 1.5px solid #e4e9f0;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-step-close:hover {
  background: #f5f7fa;
}

/* ===== Premium Checkbox ===== */
.dash-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.dash-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.dash-checkbox-custom {
  position: relative;
  top: 2px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* ===== Unified Premium Form Controls ===== */
.dash-form-control,
.form-control,
.form-select,
.common-input {
  width: 100%;
  height: 52px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #081828;
  background-color: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Inter', sans-serif;
}

.dash-form-control:hover,
.form-control:hover,
.form-select:hover,
.common-input:hover {
  border-color: #cbd5e1 !important;
  background-color: #fff !important;
}

.dash-form-control:focus,
.form-control:focus,
.form-select:focus,
.common-input:focus {
  border-color: #1a56db !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1) !important;
}

/* Custom Select Arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px 12px !important;
}

/* Premium Textarea */
textarea.dash-form-control,
textarea.form-control,
textarea.common-input {
  height: auto !important;
  min-height: 120px;
  padding-top: 15px;
}

/* ===== Premium Checkbox & Radio ===== */
.dash-checkbox-group,
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
  padding: 0;
}

.dash-checkbox-input,
.form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.dash-checkbox-custom,
.form-check-label::before {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  content: "";
  /* For form-check-label usage */
}

/* Style for Radios */
.form-check-input[type="radio"]~.form-check-label::before,
.dash-radio-custom {
  border-radius: 50% !important;
}

.dash-checkbox-group:hover .dash-checkbox-input~.dash-checkbox-custom,
.form-check:hover .form-check-input~.form-check-label::before {
  border-color: #1a56db;
  background-color: #f9fafb;
}

.dash-checkbox-input:checked~.dash-checkbox-custom,
.form-check-input:checked~.form-check-label::before {
  background-color: #1a56db;
  border-color: #1a56db;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
}

/* Checkmark/Dot styles */
.dash-checkbox-custom:after,
.form-check-label::after {
  content: "";
  position: absolute;
  display: none;
}

.dash-checkbox-input:checked~.dash-checkbox-custom:after,
.form-check-input:checked~.form-check-label::after {
  display: block;
}

/* Type Checkbox */
.dash-checkbox-input[type="checkbox"]~.dash-checkbox-custom:after,
.form-check-input[type="checkbox"]:checked~.form-check-label::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Type Radio */
.form-check-input[type="radio"]:checked~.form-check-label::after {
  left: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.dash-checkbox-label,
.form-check-label {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  font-weight: 500;
  cursor: pointer;
}

/* ===== Form Layout Utilities ===== */
.form-section-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #f0f2f5;
  box-shadow: 0 4px 20px rgba(8, 24, 40, 0.05);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f2f5;
}

.form-section-title i {
  width: 36px;
  height: 36px;
  background: #eef3ff;
  color: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}

.form-section-title h4 {
  font-size: 18px;
  font-weight: 700;
  color: #081828;
  margin: 0;
}

.form-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for Legal Pages (Privacy Policy, Terms & Conditions) */

.legal-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #5a6478;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  margin-bottom: 5px;
}

.legal-nav li a:hover {
  background: #f0f5ff;
  color: #1a56db;
}

.legal-nav li a.active {
  background: #eef3ff;
  color: #1a56db;
  font-weight: 600;
}

.legal-content-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: #081828;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-content-text h2:first-child {
  margin-top: 0;
}

.legal-content-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 15px;
}

.legal-content-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content-text ul li {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 8px;
  position: relative;
}

.last-updated-badge {
  display: inline-block;
  padding: 5px 12px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ===========================
Index Of css

01. Veriables CSS
02. Normalize CSS
03. Header CSS
04. Hero CSS
05. About CSS
06. Testimonial CSS
07. Pricing CSS
08. Faq CSS
09. Blog CSS
10. Clients CSS
11. Apply Process CSS
12. Job Category CSS
13. Find Job CSS
14. Featured Job CSS
15. Call Action CSS
16. Job Details CSS
17. Post Job CSS
18. Resume CSS
19. Privacy Policy CSS
20. Add Resume CSS
21. Manage Resumes CSS
22. Job Alerts CSS
23. Manage Jobs CSS
24. Manage Applications CSS
25. Browse Resumes CSS
26. Bookmarked CSS
27. Notifications CSS
28. Change Password CSS
29. Responsive CSS
30. Contact CSS
31. Error CSS
32. Mail Success CSS
33. Modal CSS
34. Footer CSS

========================== */
/*======================================
    Variables
========================================*/
/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("font-awesome.min.css");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #7E8890;
  overflow-x: hidden;
  font-size: 14px;
}

p {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #081828;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 60px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Bread Crumbs - Second old version commented out to prevent conflict */
/*
.breadcrumbs {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf4 100%);
  position: relative;
  padding: 5px 0;
  z-index: 2;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#2042e3 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  z-index: -1;
}

.breadcrumbs.overlay::before {
  display: none;
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: left;
}

.breadcrumbs .breadcrumbs-content p {
  display: none;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: normal;
  letter-spacing: -0.5px;
}

.breadcrumbs .breadcrumbs-content .page-title:before {
  display: none;
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.breadcrumbs .breadcrumb-nav {
  text-align: right;
  margin-top: 0;
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #7a808d;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs .breadcrumb-nav li:last-child {
  color: #2042e3;
  margin-right: 0;
  font-weight: 600;
  background: rgba(32, 66, 227, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.breadcrumbs .breadcrumb-nav li a {
  padding-right: 0;
  margin-right: 0;
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  text-decoration: none;
  color: #2042e3;
}

.breadcrumbs .breadcrumb-nav li:not(:last-child):not(:first-child) {
  color: #cbd2d9;
  font-size: 10px;
}
*/

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

.section-title span {
  text-transform: uppercase;
  background: #2042e3;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #fff;
  padding: 5px 18px;
  border-radius: 4px;
  line-height: 22px;
}

.section-title h2 {
  font-size: 35px;
  margin-bottom: 18px;
  line-height: 45px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  padding-bottom: 14px;
}

.section-title h2:before {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: #2042e3;
  content: "";
}

.section-title p {
  font-size: 14px;
  line-height: 24px;
}

.section-title.white-text h2 {
  color: #fff;
}

.section-title.white-text h2::before {
  background-color: #fff;
}

.section-title.white-text span {
  color: #fff;
}

.section-title.white-text p {
  color: #fff;
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: #2042e3;
  content: "";
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #2042e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #081828;
}

/* Overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #081828;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
}

/* Pagination CSS */
.pagination {
  text-align: left;
  margin: 40px 0 0 0;
  display: block;
}

.pagination.center {
  text-align: center;
}

.pagination.right {
  text-align: right;
}

.pagination.left {
  text-align: left;
}

.pagination .pagination-list {
  display: inline-block;
  overflow: hidden;
}

.pagination .pagination-list li {
  margin-right: 5px;
  display: inline-block;
}

.pagination .pagination-list li:last-child {
  margin-right: 0px;
}

.pagination .pagination-list li a {
  background: #fff;
  color: #081828;
  font-weight: 500;
  font-size: 13px;
  border-radius: 0;
  line-height: 40px;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #eee;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
  background: #2042e3;
  color: #fff;
  border-color: transparent;
}

.pagination .pagination-list li a i {
  font-size: 13px;
}

.blog-grids.pagination {
  margin-top: 50px;
  text-align: center;
}



/* ===== Global Button System (Dashboard Style) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1.5;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Primary - Gradient Style */
.btn-primary,
.dash-btn-primary {
  background: linear-gradient(135deg, #1a56db, #2563eb);
  color: #fff !important;
  border: none;
}

.btn-primary:hover,
.dash-btn-primary:hover {
  background: linear-gradient(135deg, #1648c0, #1d4ed8);
  box-shadow: 0 6px 18px rgba(26, 86, 219, 0.28);
  color: #fff !important;
}

/* Secondary - Light Blue Style */
.btn-secondary,
.dash-btn-secondary {
  background: #f0f5ff;
  color: #1a56db;
  border: 1.5px solid #d0dcf8;
}

.btn-secondary:hover,
.dash-btn-secondary:hover {
  background: #e0eaff;
  border-color: #1a56db;
  color: #1a56db;
}

/* Danger - Light Red to Solid Red */
.btn-danger,
.dash-btn-danger {
  background: #fff1f0;
  color: #cf1322;
  border: 1.5px solid #ffd6d6;
}

.btn-danger:hover,
.dash-btn-danger:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
}

/* Info - Light Teal Style */
.btn-info,
.dash-btn-info {
  background: #fff;
  color: #08979c;
  border: 1px solid #b5f5ec;
  padding: 0 10px;
  height: 45px;
  line-height: 42px;
  width: 130px;
  border-radius: 0;
  box-shadow: none;
}

.btn-info:hover,
.dash-btn-info:hover {
  background: #e6fffb;
  border-color: #87e8de;
  color: #08979c;
  transform: none;
  box-shadow: none;
}

/* Warning - Light Orange Style */
.btn-warning,
.dash-btn-warning {
  background: #fffbe6;
  color: #d46b08;
  border-color: #ffe58f;
}

.btn-warning:hover,
.dash-btn-warning:hover {
  background: #ffe58f;
  border-color: #ffd666;
  color: #d46b08;
}

/* Success - Light Green Style */
.btn-success,
.dash-btn-success {
    /* background: #fff; */
    /* color: #389e0d; */
    /* border: 1px solid #b7eb8f; */
    /* padding: 0 10px; */
    /* height: 45px; */
    /* line-height: 42px; */
    width: 130px;
    border-radius: 0;
    box-shadow: none;
}

.btn-success:hover,
.dash-btn-success:hover {
  background: #f6ffed;
  border-color: #95de64;
  color: #389e0d;
  transform: none;
  box-shadow: none;
}


.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

#loading-area {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 999999999;
  background-image: url(../images/loading.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
}

/*======================================
	Header CSS
========================================*/
/*===== NAVBAR =====*/
.header.style4 .navbar-area {
  background-color: #fff;
  border: none;
}

.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: transparent;
  position: relative;
  /* Restored natural flow (was absolute) */
  border-bottom: 1px solid #e6e6e6;
}

.other-page .navbar-area {
  background-color: #fff;
  border: none;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #333;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #2042e3;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #333;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 17px 0;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 150px;
}

.navbar-toggler {
  padding: 0;
  background-color: #2042e3;
  padding: 5px 8px !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.navbar-toggler .toggler-icon {
  background-color: #fff !important;
}

.navbar-toggler:hover {
  background-color: #081828 !important;
}

.navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 22px;
  height: 2px;
  background-color: #333;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 38px;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 30px 0;
  position: relative;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

.navbar-nav .nav-item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #2042e3;
  z-index: -1;
  opacity: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
}

.navbar-nav .nav-item a::before {
  width: 0%;
  left: 0;
}

.navbar-nav .nav-item a::after {
  width: 20%;
  right: 0;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: #2042e3;
}

.navbar-nav .nav-item:hover a:before,
.navbar-nav .nav-item a.active::before {
  opacity: 1;
  width: 100%;
}

.header .navbar-nav li .sub-menu li a.active {
  background-color: #2042e3 !important;
  color: #fff !important;
}

.navbar-nav .nav-item a i {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

@media (max-width: 767px) {

  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .sub-nav-toggler {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.header {
  position: relative;
}

/* Header Button */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .button {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header .button {
    display: none !important;
  }
}

.header .button {
  display: inherit !important;
  margin-left: 60px;
}

.header .button .login {
  display: inherit;
  margin-right: 30px;
  padding: 0;
  height: 45px;
  line-height: 45px;
  border-radius: 4px;
  color: #2042e3;
  font-weight: 500;
  font-size: 14px;
}

.header .button .login i {
  display: inherit;
  margin-right: 5px;
  font-size: 14px;
  line-height: 45px;
  margin-right: 8px;
}

.header .button .login:hover {
  color: #081828;
  border-color: transparent;
}

.header .button .btn {
  color: #fff;
  padding: 0 !important;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #2042e3;
  border: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 10px;
  height: 45px;
  line-height: 42px;
  width: 130px;
}

.header .button .btn:hover {
  color: #fff;
  background-color: #081828;
  border-color: transparent;
  -webkit-transform: none;
  transform: none;
}

/* Dropdown Menu */
.header .navbar-nav li .sub-menu {
  background: #fff;
  width: 220px;
  text-align: left;
  position: absolute;
  top: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  padding: 15px;
  left: 0;
  margin: 0;
  -webkit-box-shadow: 1px 4px 12px rgba(51, 51, 51, 0.25);
  box-shadow: 0px 13px 20px rgba(153, 153, 153, 0.06);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 9999999;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-transform: scaleY(0.2);
  transform: scaleY(0.2);
  border-radius: 0 0 3px 3px;
}

.header .navbar-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.header .navbar-nav li .sub-menu li {
  float: none;
  margin: 0;
  display: block;
  margin-bottom: 6px;
}

.header .navbar-nav li .sub-menu li:last-child {
  margin-bottom: 0px;
}

.header .navbar-nav li .sub-menu li:last-child {
  border: none;
}

.header .navbar-nav li .sub-menu li a {
  padding: 10px 15px;
  color: #666;
  display: block;
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
  background: transparent;
  border-radius: 3px;
  font-weight: 400;
}

.header .navbar-nav li .sub-menu li a:before {
  display: none;
}

.header .navbar-nav li .sub-menu li a:hover:before {
  opacity: 1;
  visibility: visible;
}

.header .navbar-nav li .sub-menu li:last-child a {
  border-bottom: 0px;
}

.header .navbar-nav li .sub-menu li:hover a {
  color: #fff;
  background: #2042e3;
}

.header .navbar-nav li .sub-menu li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.header.index2 .sticky .nav-item a {
  color: #081828 !important;
}

.header.index2 .sticky .nav-item a:hover {
  color: #2042e3 !important;
}

.header.index2 .sticky .nav-item a.active {
  color: #2042e3 !important;
}

.header.index2 .navbar-area.sticky .navbar-nav li .sub-menu li a.active {
  color: #fff !important;
}

.header.index2 .logo {
  position: relative;
  margin: 0;
  padding: 0;
  top: -16px;
}

.header.index2 .logo img {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header.index2 .logo .logo1 {
  opacity: 0;
  visibility: hidden;
}

.header.index2 .navbar-nav .nav-item a {
  color: #fff;
}

.header.index2 .navbar-nav .nav-item a::before {
  background-color: #fff;
}

.header.index2 .button .btn:hover {
  background-color: #fff;
  color: #2042e3;
}

/* Index 2 */
.header.index2 .sticky .logo .logo1 {
  opacity: 1;
  visibility: visible;
}

.header.index2 .sticky .logo .logo2 {
  opacity: 0;
  visibility: hidden;
}

.header.index2 .sticky .nav-item a::before {
  background-color: #2042e3;
}

.header.index2 .navbar-nav li .sub-menu {
  border-radius: 3px;
}

.header.index2 .navbar-nav .sub-menu li a {
  color: #081828;
}

.header.index2 .navbar-nav .sub-menu li a:hover {
  color: #fff !important;
}

/* Index 4 */
.header.index4 .navbar-area {
  position: absolute;
}

.header.index4 .sticky {
  position: fixed;
  top: 0;
}

/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  background: #f6f9fc;
  overflow: hidden;
}

.hero-area.style2 {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-area.style2 .home-slider {
  position: relative;
  height: 700px;
}

.hero-area.style2 .hero-inner {
  height: auto;
}

.hero-area.style2 .hero-inner .hero-text {
  margin-top: 220px;
}

.hero-area.style2 .hero-image {
  text-align: center;
  position: relative;
  bottom: -140px;
  right: 0;
}

.hero-area.style2 .tns-controls {
  width: 100%;
}

.hero-area.style2 .tns-controls button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 17px;
  background: #2042e3;
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -25px;
}

.hero-area.style2 .tns-controls button:hover {
  background-color: #081828;
  color: #fff;
}

.hero-area.style2 .tns-controls button:first-child {
  border-radius: 50%;
  left: 30px;
}

.hero-area.style2 .tns-controls button:last-child {
  border-radius: 50%;
  right: 30px;
}

.hero-area.style3 .hero-inner {
  height: 700px;
}

.hero-area.style3 .hero-inner .hero-text {
  margin-top: 190px;
}

.hero-area.style3 .home-search {
  margin-top: 180px;
  padding: 40px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.hero-area.style3 .home-search .button {
  margin-top: 20px;
}

.hero-area.style3 .home-search .button .btn {
  width: 100%;
}

.hero-area.style3 .home-search .form-group {
  margin-bottom: 15px;
}

.hero-area.style3 .home-search .form-group label {
  color: #081828;
  display: block;
  margin-bottom: 4px;
}

.hero-area.style3 .home-search .form-group input {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 20px;
  font-size: 15px;
  font-weight: 400;
}

.hero-area.style3 .home-search .form-group .form-control {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 0px 20px;
  font-size: 15px;
  font-weight: 400;
}

.hero-area.style3 .home-search .form-group .form-control option {
  font-weight: 400 !important;
}

.hero-area.style4 {
  overflow: visible;
  background-image: url("../images/hero/home-page4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-area.style4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2042e3;
  opacity: 0.9;
}

.hero-area.style4::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/hero/small-patern.png");
  opacity: 0.2;
}

.hero-area.style4 .hero-inner {
  height: auto !important;
}

.hero-area.style4 .hero-inner .hero-text {
  margin-top: 190px;
  padding: 0;
  text-align: center;
  padding: 0px 98px;
}

.hero-area.style4 .hero-inner .hero-text h1 {
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text p {
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn {
  background-color: #fff;
  color: #2042e3;
}

.hero-area.style4 .hero-inner .hero-text .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn-alt {
  background-color: #081828;
  color: #fff;
}

.hero-area.style4 .hero-inner .hero-text .button .btn-alt:hover {
  background-color: #fff;
  color: #2042e3;
}

.hero-area.style4 .job-search-wrap-two {
  padding: 40px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  position: relative;
  top: 102px;
}

.hero-area .hero-inner {
  height: 800px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
}

.hero-area .hero-text {
  float: none;
  margin-top: 10px;
  padding-right: 0;
}

.hero-area .hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 25px;
}

.hero-area .hero-text h1 span {}

.hero-area .hero-text .button {
  margin-top: 35px;
}

.hero-area .hero-text .button .btn {
  margin-right: 10px;
}

.hero-area .hero-text .button .btn:hover {
  color: #fff;
}

.hero-area .hero-text .button .btn:last-child {
  margin-right: 0px;
}

.hero-area .hero-video-head {
  margin-top: 160px;
}

.hero-area .hero-video-head .video-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-area .hero-video-head .video-inner::before {
  position: absolute;
  content: "";
  right: -50px;
  bottom: -90px;
  height: 300px;
  width: 300px;
  background-image: url(../images/hero/pattern.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-area .hero-video-head .video-inner img {
  width: 100%;
  border-radius: 10px 100px 10px 100px;
}

.hero-area .hero-video-head .video-inner .hero-video {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  color: #fff;
  background-color: #2042e3;
  font-size: 20px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 99;
  padding-left: 5px;
  -webkit-box-shadow: 0px 0px 30px #2042e3b3;
  box-shadow: 0px 0px 30px #2042e3b3;
}

.hero-area .hero-video-head .video-inner .hero-video:hover {
  background-color: #fff;
  color: #2042e3;
}

.hero-area .video-inner .waves-block .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  -webkit-animation: waves 5s ease-in-out infinite;
  animation: waves 4s ease-in-out infinite;
  left: 50%;
  margin-left: -75px;
  top: 50%;
  margin-top: -75px;
  z-index: 1;
}

.hero-area .video-inner .waves-block .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero-area .video-inner .waves-block .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero-area .video-inner .waves-block .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* Video Animations */
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.job-search-wrap-two .job-search-form {
  border: 1px solid #e2e4ea;
  background: #fff;
  border-radius: 4px;
}

.job-search-wrap-two .job-search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  padding: 10px 10px 10px 0;
}

.job-search-wrap-two .job-search-form form .single-field-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 37%;
  flex: 0 0 37%;
  max-width: 37%;
  padding: 0 30px;
  height: 100%;
  margin-bottom: 0;
}

.job-search-wrap-two .job-search-form form .single-field-item label {
  display: block;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

.job-search-wrap-two .job-search-form form .single-field-item input {
  width: 100%;
  border: none;
  color: #999;
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  height: auto;
  line-height: inherit;
}

.job-search-wrap-two .job-search-form form .submit-btn {
  width: 100%;
}

.job-search-wrap-two .job-search-form form .submit-btn .btn {
  background-color: #2042e3;
  color: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.job-search-wrap-two .job-search-form form .submit-btn .btn:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  background-color: #081828;
  color: #fff;
  border-color: transparent;
}

.job-search-wrap-two .job-search-form form .single-field-item:first-child::after {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background-color: #e2e4ea;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.keywords ul li {
  display: inline-block;
}

.keywords ul li a {
  font-size: 13px;
  color: #999;
  padding: 0 7px;
  border: 1px solid #e4e5ec;
  border-radius: 3px;
  margin-bottom: 4px;
  line-height: 22px;
  margin-right: 0;
}

.keywords ul li a:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.keywords ul li a {
  font-size: 13px;
  color: #999;
  padding: 0 7px;
  border: 1px solid #e4e5ec;
  border-radius: 3px;
  margin-bottom: 4px;
  line-height: 22px;
  margin-right: 0;
}

.keywords.style-two .title {
  font-size: 14px;
  color: #2042e3;
  margin-right: 10px;
  line-height: 22px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  top: -2px;
}

/*======================================
    About Us CSS
========================================*/
.about-us .content-left {
  position: relative;
  padding-right: 60px;
}

.about-us .content-left .single-img {
  width: 100%;
  border-radius: 5px;
}

.about-us .content-left .single-img.minus-margin {
  position: relative;
  top: -20px;
}

.about-us .content-left::before {
  position: absolute;
  content: "";
  right: 4px;
  bottom: -36px;
  height: 200px;
  width: 200px;
  background-image: url(../images/hero/pattern.png);
  background-repeat: no-repeat;
  z-index: -1;
}

.about-us .content-left .media-body {
  padding: 40px 30px;
  padding-bottom: 40px;
  border-radius: 5px;
  background-color: #2042e3;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 48px;
}

.about-us .content-left .media-body i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #ffffff45;
  border-radius: 5px;
  display: block;
  margin-bottom: 20px;
}

.about-us .content-left .media-body h6 {
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.about-us .content-left .media-body p {
  color: #fff;
}

.about-us .content-right {
  padding-right: 70px;
  padding-left: 30px;
}

.about-us .content-right h2 {
  font-size: 32px;
  margin-bottom: 50px;
  line-height: 45px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}

.about-us .content-right .single-list {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.about-us .content-right .single-list:last-child {
  margin-bottom: 0;
}

.about-us .content-right .single-list i {
  font-size: 20px;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  background: #2042e31c;
  color: #2042e3;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 3px;
}

.about-us .content-right .single-list .list-bod h5 {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  color: #081828;
}

.about-us .content-right .single-list .list-bod p {
  font-size: 14px;
  line-height: 24px;
}

/*======================================
    Testimonial CSS
========================================*/
.testimonials {
  background-color: #081828;
  padding-top: 100px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.testimonials .patern1 {
  position: absolute;
  top: 245px;
  right: 8%;
  width: 174px;
  height: 174px;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.6;
}

.testimonials .patern2 {
  position: absolute;
  top: -49px;
  left: -75px;
  width: 174px;
  height: 174px;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.6;
}

.testimonials .section-title {
  padding: 0;
}

.testimonials .section-title h2 {
  color: #fff;
}

.testimonials .section-title p {
  color: #fff;
}

.testimonials .testimonial-inner-head {
  padding-bottom: 100px;
}

.testimonials .testimonial-inner {
  position: relative;
}

.testimonials .testimonial-right {
  text-align: right;
}

.testimonials .single-testimonial {
  height: 100%;
  width: 100%;
  position: relative;
}

.testimonials .single-testimonial .quote i {
  font-size: 30px;
  color: #fff;
}

.testimonials .single-testimonial p {
  font-size: 15px;
  color: #fff;
}

.testimonials .single-testimonial .bottom {
  position: relative;
  margin-top: 40px;
}

.testimonials .single-testimonial .bottom .clien-image {
  margin-right: 20px;
}

.testimonials .single-testimonial .bottom .clien-image img {
  height: 85px;
  width: 85px;
  border-radius: 100%;
  margin-right: 22px;
  float: left;
  border: 6px solid #ffffff21;
}

.testimonials .single-testimonial .bottom .name {
  font-size: 17px;
  position: relative;
  top: 20px;
  color: #fff;
}

.testimonials .single-testimonial .bottom .name span {
  font-size: 13px;
  display: block;
  margin-top: 5px;
  color: #888;
  font-weight: 400;
}

.testimonials .tns-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.testimonials .tns-controls button {
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  background: #fff;
  border: 1px solid #f4eefb;
  border-radius: 50%;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  background: transparent;
  margin: 0px 5px;
  line-height: 45px;
}

.testimonials .tns-controls button:hover {
  background-color: #fff;
  border-color: transparent;
  color: #2042e3;
}

/*=============================
	Pricing Table CSS
===============================*/
.pricing-table {
  background: #f6f9fc;
  position: relative;
}

.pricing-table .single-table {
  background: #fff;
  text-align: left;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 55px 50px;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  overflow: hidden;
  border-radius: 5px;
}

.pricing-table .single-table .table-head {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid #edeff2;
}

.pricing-table .single-table .table-head::before {
  position: absolute;
  content: '';
  background: #e4e8ed;
  width: 15px;
  height: 15px;
  right: 0px;
  bottom: -7px;
  border-radius: 5px;
}

.pricing-table .single-table .table-head .title {
  font-size: 18px;
  line-height: 26px;
  color: #081828;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.pricing-table .single-table .table-head .amount {
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #081828;
}

.pricing-table .single-table .table-head .duration {
  color: #888;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-left: 7px;
}

.pricing-table .single-table .table-list {
  position: relative;
  display: block;
  margin-top: 35px;
}

.pricing-table .single-table .table-list li {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: #081828;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 15px;
}

.pricing-table .single-table .table-list li:last-child {
  margin-bottom: 0;
}

.pricing-table .single-table .table-list li::before {
  position: absolute;
  content: "\ea55";
  font-family: 'lineIcons';
  font-size: 7px;
  color: #fff;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 3px;
  left: 0px;
  top: 6px;
  background-color: #2042e3;
}

.pricing-table .single-table .button {
  margin-top: 40px;
}

.pricing-table .single-table .button .btn {
  font-size: 13px;
}

/*======================================
    Faq CSS
========================================*/
.faq-area {
  background-color: #f6f9fc;
  padding-bottom: 70px;
}

.faq-area .cercle span {
  background-color: #2042e3;
  color: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  position: relative;
  z-index: 5;
}

.faq-area .content {
  margin-left: 20px;
}

.faq-area .single-faq {
  margin-bottom: 30px;
  background: #fff;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.faq-area .heading {
  font-size: 20px;
  color: #081828;
  display: block;
  margin-bottom: 20px;
}

.faq-area .text {
  font-size: 14px;
  margin-bottom: 20px;
}

.faq-area .text:last-child {
  margin-bottom: 0;
}

.index2.faq-area {
  padding-top: 100px;
}

/*======================================
    Blog CSS
========================================*/
.latest-news-area .single-news {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  margin-top: 30px;
  border-radius: 5px;
  position: relative;
  border-radius: 6px;
}

.latest-news-area .single-news .image {
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.latest-news-area .single-news .content-body {
  background-color: #fff;
  padding: 20px 30px 30px 30px;
  border-radius: 0 0 6px 6px;
}

.latest-news-area .single-news .content-body .meta-details ul {
  display: block;
  margin-top: 20px;
}

.latest-news-area .single-news .content-body .meta-details ul li {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 3px;
}

.latest-news-area .single-news .content-body .meta-details ul li:last-child {
  margin: 0;
}

.latest-news-area .single-news .content-body .meta-details ul li i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
}

.latest-news-area .single-news .content-body .meta-details ul li a {
  display: inline-block;
  font-size: 12px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: capitalize;
}

.latest-news-area .single-news .content-body .meta-details ul li a:hover {
  background-color: #2042e3;
  color: #fff;
}

.latest-news-area .single-news .content-body .title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  position: relative;
  font-size: 19px;
  font-weight: 500;
}

.latest-news-area .single-news .content-body .title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #eee;
}

.latest-news-area .single-news .content-body .title a {
  color: #081828;
  display: inline-block;
}

.latest-news-area .single-news .content-body .title a:hover {
  color: #2042e3;
}

.latest-news-area .single-news .content-body p {
  font-size: 14px;
  display: block;
  margin-top: 10px;
}

.latest-news-area .single-news .content-body .button {
  display: block;
  margin-top: 20px;
}

.latest-news-area .single-news:hover .image .thumb {
  -webkit-transform: scale(1.1) rotate(1deg);
  transform: scale(1.1) rotate(1deg);
}

.blog-list {
  background: #f6f9fc;
}

.blog-list .single-news {
  margin: 0;
}

.blog-list .single-news {
  margin-bottom: 40px;
}

/* News Details */
.blog-single {
  background: #f6f9fc;
}

.blog-single .single-inner {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.blog-single .post-thumbnils {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.blog-single .post-thumbnils img {
  width: 100%;
}

.blog-single .post-thumbnils .author {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: #2042e3;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.blog-single .post-thumbnils .author img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}

.blog-single .post-thumbnils .author span {
  color: #fff;
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}

.post-details .detail-inner {
  background-color: #fff;
  padding: 0;
  margin-top: 40px;
}

.post-details .post-thumbnils {
  margin-bottom: 30px;
}

.post-details .post-title {
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 32px;
}

.post-details .post-title a {
  font-size: 25px;
  font-weight: 600;
}

.post-details .post-title a:hover {
  color: #2042e3;
}

ul.custom-flex {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-details .post-meta li {
  font-weight: 500;
  font-size: 15px;
  margin-right: 25px;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 3px;
}

.post-details .post-meta li a:hover {
  color: #2042e3;
}

.post-details p {
  font-size: 15px;
  margin: 30px 0;
}

.post-details h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 28px;
}

.post-details p:last-child {
  margin-bottom: 0;
}

blockquote {
  position: relative;
  color: #fff;
  font-weight: 400;
  clear: both;
  z-index: 1;
  margin: 40px 0;
  text-align: left;
  padding: 40px;
  background-color: #2042e3;
  border-radius: 5px;
  overflow: hidden;
}

blockquote .icon i {
  font-size: 40px;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

blockquote h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

blockquote span {
  font-size: 13px;
  display: block;
  margin-top: 20px;
}

blockquote .shape {
  position: absolute;
  right: -90px;
  top: -91px;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.post-details .list {
  margin: 40px;
}

.post-details .list li {
  color: #888;
  font-weight: 400;
  position: relative;
  padding-left: 40px;
  display: block;
  margin-bottom: 20px;
  position: relative;
  font-size: 15px;
}

.post-details .list li i {
  display: block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  font-size: 10px;
  color: #fff;
  background-color: #2042e3;
  position: absolute;
  left: 0;
  top: -1px;
  text-align: center;
  border-radius: 3px;
}

.post-details .list li:last-child {
  margin: 0;
}

.popular-tag-widget .tag-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 17px;
}

.post-tags-media .share-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 17px;
}

.post-details .post-tags-media .post-social-media ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.post-details .post-tags-media .post-social-media ul>li>a {
  font-size: 15px;
  color: #999;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 1px solid #eee;
  border-radius: 4px;
  text-align: center;
  margin-left: 10px;
}

.post-details .post-tags-media .post-social-media ul>li>a:hover {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.post-details .post-tags-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.post-details .post-meta li {
  font-weight: 500;
  margin-right: 25px;
}

.post-details .post-meta li a {
  font-size: 13px;
  font-weight: 400;
  font-weight: 500;
  color: #081828;
}

.post-details .post-meta li a i {
  font-weight: 400;
  margin-right: 5px;
  color: #2042e3;
}

.post-details>p {
  font-size: 14px;
}

.post-details .post-image {
  margin: 40px 0 20px 0;
  width: 100%;
}

.post-details .post-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.post-details>ul>li {
  font-weight: 500;
}

.post-details .post-tags-media .post-tags .tags a {
  color: #333;
  background: transparent;
}

.post-details .post-tags-media .post-tags .tags a:hover {
  color: #fff;
  background-color: #2042e3;
}

.post-details .post-tags-media .post-social-media {
  text-align: right;
}

.post-details .post-tags-media .post-social-media ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.detail-post-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  border: 1px solid #eee;
}

/*comments*/
.post-comments {
  background-color: #fff;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid #eee;
  border-radius: 5px;
}

.comment-title {
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 40px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.comment-title span {
  background-color: white;
  padding-right: 15px;
}

.comment-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background-color: #eee;
  content: '';
  z-index: -1;
}

.comment-reply-title {
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 40px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.comment-reply-title span {
  background-color: white;
  padding-right: 15px;
}

.comment-reply-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background-color: #eee;
  content: '';
  z-index: -1;
}

.post-comments .comments-list li {
  padding-left: 130px;
  position: relative;
  font-size: 14px;
}

.post-comments .comments-list li .comment-img {
  position: absolute;
  left: 0;
  width: 100px;
  height: 100px;
}

.post-comments .comments-list li .comment-img img {
  max-width: 100px;
  max-height: 100px;
}

.post-comments .comments-list li .comment-desc .desc-top {
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}

.post-comments .comments-list li .comment-desc .desc-top h6 .saved {
  color: #2042e3;
  font-size: 14px;
  margin-left: 10px;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
  font-size: 14px;
  font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 10px 22px;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
  border-radius: 3px;
  border: 1px solid #eee;
  color: #2042e3;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
  margin-right: 5px;
}

.post-comments .comments-list li .comment-desc p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
}

.post-comments .comments-list li.children {
  margin-left: 130px;
}

.post-comments .comments-list li:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px dashed #eee;
}

/*Comment form*/
.comment-form {
  background-color: #fff;
  padding: 40px;
  margin-top: 40px;
  border: 1px solid #eee;
  border-radius: 5px;
}

.comment-form form .form-box {
  position: relative;
}

.comment-form form .form-box .icon {
  position: absolute;
  top: 17px;
  right: 25px;
  font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
  border: none;
  background: #fff;
  font-size: 14px;
  color: #081828;
  padding: 0 25px;
  font-weight: 500;
  height: 55px;
  border: 1px solid #eee;
  margin-bottom: 25px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
}

.comment-form form .form-box textarea.form-control-custom {
  height: 200px;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom::-webkit-input-placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom:-ms-input-placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom::-ms-input-placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 25px;
}

/* News sidebar */
.sidebar .widget {
  padding: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #eee;
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget .widget-title {
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1;
  position: relative;
  font-weight: 600;
  line-height: 28px;
  z-index: 1;
}

.sidebar .widget .widget-title span {
  background-color: white;
  padding-right: 15px;
}

.sidebar .widget .widget-title::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background-color: #eee;
  content: '';
  z-index: -1;
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  width: 100%;
  background-color: transparent;
  height: 55px;
  border: none;
  padding: 0 80px 0 30px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid #eee;
  border-radius: 3pxpx;
}

.sidebar .widget.search-widget form input::-webkit-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input:-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::placeholder {
  color: #333;
}

.sidebar .widget.search-widget form button {
  border: none;
  position: absolute;
  right: 7px;
  top: 6px;
  width: 55px;
  height: 42px;
  z-index: 1;
  color: #fff !important;
  font-size: 13px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: #fff;
  border-radius: 0;
  border-radius: 3px;
  padding: 0 !important;
  border: none;
  background: #2042e3;
}

.sidebar .widget.search-widget form button:hover {
  background-color: #081828;
  color: #fff;
}

.sidebar .widget.popular-feeds .single-popular-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #eee;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-img {
  width: 80px;
  margin-right: 20px;
  border-radius: 50%;
  height: 80px;
  border-radius: 50% !important;
  overflow: hidden;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 14px;
  font-weight: 500;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a:hover {
  color: #2042e3;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 12px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time>i {
  margin-right: 4px;
}

.sidebar .widget.categories-widget ul li {
  margin-bottom: 10px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li a {
  font-size: 14px;
  height: 35px;
  background-color: transparent;
  display: block;
  position: relative;
  line-height: 35px;
  color: #333;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 500;
  padding: 0;
}

.sidebar .widget.categories-widget ul li a span {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: transparent;
  color: #333;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 3px;
  border: 1px solid #eee;
  font-size: 11px;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: #2042e3;
}

.sidebar .widget.categories-widget ul li a:hover span {
  background: #2042e3;
  color: #fff;
  border-color: transparent;
}

.sidebar .widget.popular-tag-widget {
  padding-bottom: 30px;
}

.popular-tag-widget .tags>a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 20px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  background: #2042e3;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
  background: transparent;
  color: #888;
  border: 1px solid #eee;
  border-radius: 4px;
}

.popular-tag-widget .tags>a:hover {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

/*======================================
   Clients CSS
========================================*/
.client-logo-section {
  background: #F9FAFF;
  padding: 50px 0;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
  padding: 10px;
  text-align: center;
  margin: auto;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
  max-width: 220px;
  width: 100%;
  opacity: .3;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
  opacity: 1;
}

/*======================================
    Apply Process CSS
========================================*/
.apply-process {
  background-color: #2042e3;
  padding: 80px 0;
}

.apply-process .process-item {
  padding-left: 92px;
  position: relative;
  padding-right: 25px;
}

.apply-process .process-item i {
  font-size: 30px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  border: 1px dashed #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.apply-process .process-item:hover i {
  background-color: #fff;
  color: #2042e3;
  border-color: transparent;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.apply-process .process-item h4 {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.apply-process .process-item h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: #fff;
}

.apply-process .process-item p {
  color: #fff;
  display: block;
}

/*======================================
    Job Category CSS
========================================*/
.job-category {
  background-color: #f6f9fc;
}

.job-category.style2 .cat-head {
  padding: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent;
}

.job-category.style2 .single-cat {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  padding: 0;
  border: none;
  text-align: left;
  border-radius: 7px;
  overflow: hidden;
  background-color: #fff;
}

.job-category.style2 .single-cat:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.job-category.style2 .single-cat h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.job-category.style2 .single-cat .top-side {
  position: relative;
  overflow: hidden;
}

.job-category.style2 .single-cat .top-side img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 0;
}

.job-category.style2 .single-cat .top-side::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2042e3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}

.job-category.style2 .single-cat .cat-head {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.job-category.style2 .single-cat .bottom-side {
  padding: 25px 30px;
  position: relative;
}

.job-category.style2 .single-cat .bottom-side .available-job {
  background-color: #2042e3;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 15px;
  position: absolute;
  right: 30px;
  top: -19px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.job-category.style2 .single-cat:hover .top-side:before {
  opacity: 0.5;
  visibility: visible;
}

.job-category .cat-head {
  padding: 35px 50px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.job-category .single-cat {
  text-align: center;
  padding: 30px;
  border: 1px dashed #eee;
  margin: 15px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: block;
}

.job-category .single-cat:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.job-category .single-cat i {
  font-size: 26px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  background: #2042e31c;
  color: #2042e3;
  border-radius: 4px;
}

.job-category .single-cat h3 {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #081828;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.job-category .single-cat h3:hover {
  color: #2042e3;
}

.all-categories {
  border-bottom: 1px solid #eee;
  padding-bottom: 70px;
}

.all-categories .categories-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.all-categories .cat-title {
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 4px;
  background: #2042e3;
  color: #fff;
}

.all-categories .cat-title span {
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
}

.all-categories ul {
  margin-bottom: 30px;
}

.all-categories ul li {
  display: block;
  margin-bottom: 7px;
}

.all-categories ul li:last-child {
  margin: 0;
}

.all-categories ul li a {
  color: #888;
  padding: 10px 15px;
  border: 1px solid #eee;
  display: block;
  border-radius: 4px;
}

.all-categories ul li a:hover {
  color: #fff;
  background-color: #2042e3;
  border-color: transparent;
}

/*======================================
    Find Job CSS
========================================*/
.find-job {
  background-color: #f6f9fc;
}

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

.find-job.job-list {
  padding-top: 70px;
}

.find-job .single-job {
  margin-top: 30px;
  padding: 40px;
  padding-left: 120px;
  border: 1px solid #eee;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
}

.find-job .single-job:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

.find-job .single-job .job-image {
  position: absolute;
  left: 40px;
  top: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin-top: -25px;
}

.find-job .single-job .job-content {
  position: relative;
}

.find-job .single-job .job-content h4 {
  padding-right: 200px;
  position: relative;
  padding-bottom: 20px;
}

.find-job .single-job .job-content h4 a {
  font-size: 18px;
  font-weight: 500;
  color: #081828;
}

.find-job .single-job .job-content h4 a:hover {
  color: #2042e3;
}

.find-job .single-job .job-content p {
  display: inline-block;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.find-job .single-job .job-content ul {
  margin-top: 20px;
}

.find-job .single-job .job-content ul li {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 3px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 5px 10px;
  border-radius: 3px;
}

.find-job .single-job .job-content ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.find-job .single-job .job-content ul li i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
}

.find-job .single-job .job-content ul li a {
  color: #777;
}

.find-job .single-job .job-content ul li a:hover {
  color: #2042e3;
}

.find-job .single-job .job-button {
  position: absolute;
  right: 40px;
  top: 40px;
}

.find-job .single-job .job-button ul li {
  display: inline-block;
}

.find-job .single-job .job-button ul li a {
  padding: 5px 20px;
  border: 1px solid #eee;
  color: #081828;
  border-radius: 4px;
  font-size: 13px;
  text-transform: capitalize;
}

.find-job .single-job .job-button ul li a:hover {
  color: #fff;
  background-color: #2042e3;
  border-color: transparent;
}

.find-job .single-job .job-button ul li span {
  padding: 5px 20px;
  background-color: #2042e3;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-transform: capitalize;
}

.find-job .search-job .search-nner {
  padding: 30px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 6px;
}

.find-job .search-job .search-nner input {
  height: 50px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  color: #081828;
  padding: 0px 20px;
}

.find-job .search-job .search-nner .btn {
  width: 100%;
}

/*======================================
    Featured Job CSS
========================================*/
.featured-job {
  background-color: #fff;
}

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

.featured-job .single-job {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  margin-top: 30px;
  border-radius: 5px;
  position: relative;
  border-radius: 6px;
}

.featured-job .single-job:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.featured-job .single-job .feature {
  position: absolute;
  top: 16px;
  right: -36px;
  padding: 3px 35px;
  font-size: 12px;
  color: #fff;
  background-color: #2042e3;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%, 20% 0%);
  clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%, 20% 0%);
}

.featured-job .single-job .shape::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 7px;
  right: 77px;
  top: -7px;
  background-color: #0221b3;
}

.featured-job .single-job .shape:after {
  position: absolute;
  content: '';
  right: -6px;
  top: 76px;
  width: 7px;
  height: 8px;
  background-color: #0221b3;
}

.featured-job .single-job .image {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.featured-job .single-job .image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.featured-job .single-job .content {
  background-color: #fff;
  padding: 20px 30px 30px 30px;
  border-radius: 0 0 6px 6px;
}

.featured-job .single-job .content h4 {
  display: block;
  margin-bottom: 18px;
  padding-bottom: 15px;
  position: relative;
}

.featured-job .single-job .content h4::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #eee;
}

.featured-job .single-job .content h4 a {
  font-size: 19px;
  font-weight: 500;
  color: #081828;
  text-transform: capitalize;
}

.featured-job .single-job .content h4 a:hover {
  color: #2042e3;
}

.featured-job .single-job .content ul li {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 3px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 5px 10px;
  border-radius: 3px;
}

.featured-job .single-job .content ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.featured-job .single-job .content ul li i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
}

.featured-job .single-job .content p {
  font-size: 14px;
  display: block;
  margin-top: 10px;
}

.featured-job .single-job .content .button {
  display: block;
  margin-top: 20px;
}

.featured-job .single-job .content .button .btn {
  padding: 12px 34px;
  margin-right: 10px;
}

.featured-job .single-job .content .button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.featured-job .single-job .content .button .btn:last-child {
  margin-right: 0;
}

.featured-job .single-job .content .button .btn.save {
  background-color: transparent;
  color: #081828;
  border: 1px solid #eee;
}

.featured-job .single-job .content .button .btn.save:hover {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

/*======================================
    Call Action CSS
========================================*/
.call-action {
  background-image: url("../images/call-action/cat-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.call-action.style2 {
  background-color: #2042e3;
  background-image: none;
  padding: 70px 0;
}

.call-action.style2 .text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.call-action.style2 .button {
  position: relative;
}

.call-action.style2 .button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 26px;
  height: 2px;
  width: 48%;
  border: 1px dashed #fff;
}

.call-action.style2 .button .btn {
  background-color: #fff;
  color: #2042e3;
  float: right;
}

.call-action.style2 .button .btn:hover {
  background-color: #081828;
  color: #fff;
}

.call-action .section-title {
  padding: 0;
  padding: 0px 50px;
  margin: 0;
}

.call-action .section-title span {
  color: #2042e3;
  background-color: #fff;
}

.call-action .section-title h2 {
  text-transform: none;
  color: #fff;
}

.call-action .section-title h2::before {
  background-color: #fff;
}

.call-action .section-title p {
  color: #fff;
}

.call-action .section-title .button {
  display: block;
  margin-top: 50px;
}

.call-action .section-title .button .btn {
  background-color: #fff;
  color: #2042e3;
}

.call-action .section-title .button .btn i {
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
}

.call-action .section-title .button .btn:hover {
  color: #fff;
  background-color: #081828;
}

.call-action.overlay::before {
  background-color: #2042e3;
  opacity: 0.8;
  z-index: -1;
}

/*======================================
    Job Details CSS
========================================*/
.job-details {
  background-color: #f6f9fc;
}

.job-details .job-details-inner {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #fff;
}

.job-details .job-details-head {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #EDEDED;
}

.job-details .job-details-head .content .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  color: #7E8890;
  display: block;
  margin-top: 10px;
}

.job-details .job-details-head .salary-type .salary-range {
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: #7E8890;
}

.job-details .job-details-head .badge {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 3px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 8px 12px;
  border-radius: 3px;
  font-weight: 400;
  display: inline-block;
  margin-top: 5px;
}

.job-details .job-details-head li {
  display: inline-block;
  margin-right: 15px;
}

.job-details .job-details-head li i {
  color: #2042e3;
}

.job-details .job-details-head li:last-child {
  margin-right: 0;
}

.job-details .job-details-head li a {
  color: #2042e3;
  font-weight: 500;
}

.job-details .job-details-head li a:hover {
  text-decoration: underline;
}

.job-details .job-details-body h6 {
  font-size: 20px;
}

.job-details .job-details-body p {
  margin: 20px 0;
}

.job-details .job-details-body ul {
  margin-left: 10px;
}

.job-details .job-details-body ul li {
  display: block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.job-details .job-details-body ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  display: block;
  border-radius: 50%;
  background-color: #2042e3;
}

.job-details .job-details-body ul li:last-child {
  margin-bottom: 0;
}

.job-details .job-details-sidebar .sidebar-widget {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #fff;
  margin-bottom: 30px;
}

.job-details .job-details-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}

.job-details .job-details-sidebar .sidebar-widget .title {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
}

.job-details .job-details-sidebar .sidebar-widget .title::before {
  position: absolute;
  left: 0;
  top: 1px;
  height: 100%;
  width: 3px;
  background-color: #2042e3;
  content: '';
}

.job-details .job-details-sidebar .sidebar-widget .list-unstyled li {
  display: block;
  margin-bottom: 8px;
}

.job-details .job-details-sidebar .sidebar-widget .list-unstyled li strong {
  color: #081828;
  font-weight: 600;
  display: inline-block;
  margin-right: 2px;
}

.job-details .job-details-sidebar .sidebar-widget .list-unstyled li:last-child {
  margin-bottom: 0;
}

/*======================================
    Job Post CSS
========================================*/
.job-post {
  background-color: #f6f9fc;
}

.job-post .job-information {
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
}

.job-post .job-information .form-group {
  display: block;
  margin-bottom: 20px;
}

.job-post .job-information .form-group input {
  height: 50px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0px 20px;
  font-size: 14px;
}

.job-post .job-information .form-group textarea {
  height: 200px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 20px;
  font-size: 14px;
}

.job-post .job-information .form-group .checkboxs {
  width: auto !important;
  display: inline-block !important;
}

.job-post .job-information .form-group .select {
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #ebebeb;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}

.job-post .job-information .form-group .select option {
  color: #081828;
  padding: 10px 10px;
  font-weight: 400;
}

.job-post .job-information .form-group label {
  font-size: 14px;
  color: #081828;
  display: block;
  margin-bottom: 5px;
}

.job-post .job-information .form-group.checkboxs {
  position: relative;
  padding-left: 25px;
  color: #081828;
}

.job-post .job-information .form-group.checkboxs #chb2 {
  position: absolute;
  top: -13px;
  left: 0;
}

.job-post .job-information .choose-img {
  margin-bottom: 30px;
}

.job-post .job-information .choose-img p {
  margin: 10px 0;
  display: block;
  color: #081828;
}

.job-post .job-information .choose-img label {
  display: block;
  margin-bottom: 10px;
  color: #081828;
}

.job-post .title {
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

/*======================================
    Resume CSS
========================================*/
.resume {
  background-color: #f6f9fc;
}

.resume .inner-content {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.resume .inner-content .name-head {
  text-align: left;
}

.resume .inner-content .name {
  font-size: 18px;
  color: #081828;
}

.resume .inner-content .name:hover {
  color: #2042e3;
}

.resume .inner-content .deg {
  font-size: 14px;
  color: #081828;
}

.resume .inner-content .social {
  margin-top: 20px;
}

.resume .inner-content .social li {
  display: inline-block;
  margin-right: 8px;
}

.resume .inner-content .social li a {
  font-size: 13px;
  color: #081828;
  height: 35px;
  width: 35px;
  text-align: center;
  display: block;
  line-height: 35px;
  background: #E8ECF1;
  border: none;
  border-radius: 4px;
  position: relative;
  z-index: 3;
}

.resume .inner-content .social li a:hover {
  color: #fff;
  background-color: #2042e3;
}

.resume .inner-content .content-right .single-list {
  margin-bottom: 20px;
  width: 48%;
  display: inline-block;
  margin-top: 5px;
}

.resume .inner-content .content-right .single-list:last-child {
  margin: 0;
}

.resume .inner-content .content-right .single-list .title {
  font-size: 17px;
  font-weight: 500;
}

.resume .inner-content .content-right .single-list p {
  color: #081828;
  margin-top: 0px;
  display: block;
  color: #7E8890;
}

.resume .inner-content .content-right .single-list p a {
  color: #7E8890;
  display: inline-block;
  margin-top: 3px;
  font-weight: 400;
}

.resume .inner-content .content-right .single-list p a:hover {
  color: #2042e3;
}

.resume .inner-content .content-right .title-main {
  font-size: 20px;
  color: #081828;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.resume .inner-content .single-section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.resume .inner-content .single-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.resume .inner-content .single-section p {
  margin: 20px 0;
}

.resume .inner-content .single-section.skill ul li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.resume .inner-content .single-section.skill ul li a {
  background: #2042e314;
  color: #081828;
  padding: 8px 15px;
  border-radius: 3px;
  font-size: 13px;
}

.resume .inner-content .single-section.skill ul li a:hover {
  color: #fff;
  background-color: #2042e3;
}

.resume .inner-content .single-section.exprerience .single-exp .image img {
  border-radius: 5px;
  margin-right: 25px;
  position: relative;
  top: 5px;
}

.resume .inner-content .single-section.exprerience .single-exp h3 {
  margin-bottom: 5px;
}

.resume .inner-content .single-section.exprerience .single-exp h3 a {
  font-size: 18px;
  font-weight: 500;
  color: #081828;
}

.resume .inner-content .single-section.exprerience .single-exp h3 a:hover {
  color: #2042e3;
}

.resume .inner-content .single-section.exprerience .single-exp a {
  color: #7E8890;
}

.resume .inner-content .single-section.education .single-edu .image img {
  border-radius: 5px;
  margin-right: 25px;
  position: relative;
  top: 5px;
}

.resume .inner-content .single-section.education .single-edu h3 {
  margin-bottom: 5px;
}

.resume .inner-content .single-section.education .single-edu h3 a {
  font-size: 18px;
  font-weight: 500;
  color: #081828;
}

.resume .inner-content .single-section.education .single-edu h3 a:hover {
  color: #2042e3;
}

.resume .inner-content .single-section.education .single-edu a {
  color: #7E8890;
}

.dashbord-sidebar {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.dashbord-sidebar ul .heading {
  font-size: 20px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 20px;
}

.dashbord-sidebar ul li {
  display: blocks;
  margin-bottom: 12px;
}

.dashbord-sidebar ul li:last-child {
  margin: 0;
}

.dashbord-sidebar ul li a {
  color: #081828;
  padding: 10px 15px;
  border: 1px solid #eee;
  display: block;
  border-radius: 5px;
  font-weight: 500;
}

.dashbord-sidebar ul li a:hover {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.dashbord-sidebar ul li a:hover i {
  background-color: #fff;
  color: #2042e3;
}

.dashbord-sidebar ul li a.active {
  background-color: #2042e3;
  color: #fff;
  border-color: transparent;
}

.dashbord-sidebar ul li a.active i {
  background-color: #fff;
  color: #2042e3;
}

.dashbord-sidebar ul li a i {
  font-size: 14px;
  color: #2042e3;
  display: inline-block;
  margin-right: 8px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: #2042e30d;
  border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.dashbord-sidebar ul li a .notifi {
  height: 25px;
  width: auto;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  background: #f4f5fe;
  border: 1px solid #eee;
  border-radius: 3px;
  text-align: right;
  display: inline-block;
  text-align: center;
  color: #2042e3;
  position: relative;
  top: 2px;
  padding: 0px 8px;
  float: right !important;
}

.dashbord-sidebar ul li a:hover .notifi {
  background-color: #fff;
}

/*======================================
    Privacy Policy CSS
========================================*/
.privacy-policy {
  background-color: #f6f9fc;
}

.privacy-policy .policy-inner {
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #fff;
}

.privacy-policy .policy-details-body h6 {
  font-size: 20px;
}

.privacy-policy .policy-details-body p {
  margin: 20px 0;
  line-height: 26px;
}

.privacy-policy .policy-details-body ul {
  margin-left: 10px;
}

.privacy-policy .policy-details-body ul li {
  display: block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.privacy-policy .policy-details-body ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  display: block;
  border-radius: 50%;
  background-color: #2042e3;
}

.privacy-policy .policy-details-body ul li:last-child {
  margin-bottom: 0;
}

/*======================================
    Add Resume CSS
========================================*/
.add-resume {
  background-color: #f6f9fc;
}

.add-resume .add-resume-inner {
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
}

.add-resume .add-resume-inner .single-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #081828;
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
}

.add-resume .add-resume-inner .add-post-btn ul {
  position: relative;
  top: -8px;
}

.add-resume .add-resume-inner .add-post-btn ul li {
  display: inline-block;
  margin-right: 10px;
}

.add-resume .add-resume-inner .add-post-btn ul li:last-child {
  margin: 0;
}

.add-resume .add-resume-inner .add-post-btn ul li a {
  font-size: 13px;
  position: relative;
  background: #2042e314;
  color: #081828;
  padding: 10px 15px;
  border-radius: 3px;
}

.add-resume .add-resume-inner .add-post-btn ul li a:hover {
  color: #fff;
  background-color: #2042e3;
}

.add-resume .add-resume-inner .add-post-btn ul li a i {
  display: inline-block;
  margin-right: 4px;
}

.add-resume .add-resume-inner .post-header {
  margin-bottom: 30px;
  overflow: hidden;
}

.add-resume .add-resume-inner .post-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #081828;
  float: left;
}

.add-resume .add-resume-inner .post-header p {
  float: right;
  position: relative;
  top: 2px;
}

.add-resume .add-resume-inner .post-header p a {
  color: #2042e3;
}

.add-resume .add-resume-inner .post-header p a:hover {
  text-decoration: underline;
}

.add-resume .add-resume-inner .form-ad .form-group {
  margin-bottom: 15px;
}

.add-resume .add-resume-inner .form-ad .form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  color: #081828;
}

.add-resume .add-resume-inner .form-ad .form-group input {
  height: 50px;
  width: 100%;
  padding: 0px 20px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
}

.add-resume .add-resume-inner .form-ad .form-group textarea {
  height: 200px;
  width: 100%;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
}

.add-resume .add-resume-inner .form-ad .form-group .action-buttons {
  position: relative;
}

.add-resume .add-resume-inner .form-ad .form-group .upload-button input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
  padding: 0;
}

/*======================================
    Manage Resumes CSS
========================================*/
.manage-resumes {
  background-color: #f6f9fc;
}

.manage-resumes .inner-content {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.manage-resumes .inner-content .resume-item {
  position: relative;
  background-color: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-left: 190px;
  margin-bottom: 30px;
}

.manage-resumes .inner-content .resume-item:last-child {
  margin: 0;
  padding-bottom: 0;
  border: none;
}

.manage-resumes .inner-content .resume-item img {
  height: auto;
  width: 160px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.manage-resumes .inner-content .resume-item .right {
  position: relative;
  top: -10px;
}

.manage-resumes .inner-content .resume-item .right h3 a {
  font-size: 20px;
  font-weight: 600;
}

.manage-resumes .inner-content .resume-item .right h3 a:hover {
  color: #2042e3;
}

.manage-resumes .inner-content .resume-item .right .deg {
  display: block;
  margin-top: 5px;
}

.manage-resumes .inner-content .resume-item .right .experience {
  margin-top: 10px;
}

.manage-resumes .inner-content .resume-item .right .experience li {
  display: block;
  margin-bottom: 3px;
}

.manage-resumes .inner-content .resume-item .right .experience li span {
  color: #2042e3;
  display: inline-block;
  margin-left: 3px;
}

.manage-resumes .inner-content .resume-item .right .experience li i {
  display: inline-block;
  margin-right: 3px;
  color: #2042e3;
}

.manage-resumes .inner-content .resume-item .right .experience li:last-child {
  margin: 0;
}

.manage-resumes .inner-content .resume-item .right .skills {
  margin-top: 10px;
}

.manage-resumes .inner-content .resume-item .right .skills li {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 3px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 5px 10px;
  border-radius: 3px;
}

.manage-resumes .inner-content .resume-item .update-date {
  display: block;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.manage-resumes .inner-content .resume-item .update-date .status {
  font-size: 13px;
  float: left;
  position: relative;
  top: 4px;
}

.manage-resumes .inner-content .resume-item .update-date .action-btn {
  float: right;
}

.manage-resumes .inner-content .resume-item .update-date .action-btn a {
  display: inline-block;
  margin-right: 5px;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #eee;
  border-radius: 3px;
  color: #7E8890;
}

.manage-resumes .inner-content .resume-item .update-date .action-btn a:hover {
  background-color: #2042e3;
  border-color: transparent;
  color: #fff;
}

.manage-resumes .inner-content .resume-item .update-date .action-btn a:last-child {
  margin: 0;
}

.manage-resumes .pagination {
  margin: 40px 0 0 0;
}

/*======================================
    Job Alerts CSS
========================================*/
.job-alerts {
  background-color: #f6f9fc;
}

.job-alerts .job-alerts-items {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.job-alerts .job-alerts-items .alerts-list {
  padding: 15px 0;
  padding-top: 0;
  border-bottom: 1px solid #f1f1f1;
  text-transform: capitalize;
}

.job-alerts .job-alerts-items .alerts-content {
  padding: 30px 0;
  border-bottom: 1px solid #f1f1f1;
}

.job-alerts .job-alerts-items .alerts-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.job-alerts .job-alerts-items .alerts-content .full-time {
  background: #2042e314;
  color: #2042e3;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 13px;
}

.job-alerts .job-alerts-items .alerts-content .part-time {
  background: #2042e314;
  color: #2042e3;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 13px;
}

.job-alerts .job-alerts-items .alerts-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.job-alerts .job-alerts-items .alerts-content .location {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.job-alerts .job-alerts-items .alerts-content .location i {
  display: inline-block;
  margin-right: 3px;
  color: #2042e3;
}

/*======================================
    Manage Jobs CSS
========================================*/
.manage-jobs {
  background-color: #f6f9fc;
}

.manage-jobs .job-items {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.manage-jobs .job-items .manage-list {
  padding: 15px 0;
  padding-top: 0;
  border-bottom: 1px solid #f1f1f1;
  text-transform: capitalize;
}

.manage-jobs .job-items .manage-content {
  padding: 25px 0;
  border-bottom: 1px solid #f1f1f1;
}

.manage-jobs .job-items .manage-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.manage-jobs .job-items .manage-content .time {
  background: #2042e314;
  color: #2042e3;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 13px;
}

.manage-jobs .job-items .manage-content .can-img img {
  width: 50px;
  margin: 5px 15px;
  border-radius: 50%;
}

.manage-jobs .job-items .manage-content p i {
  font-size: 14px;
}

.manage-jobs .job-items .manage-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.manage-jobs .job-items .manage-content .location {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.manage-jobs .job-items .manage-content .location i {
  display: inline-block;
  margin-right: 3px;
  color: #2042e3;
}

/*======================================
    Manage Applications CSS
========================================*/
.manage-applications {
  background-color: #f6f9fc;
}

.manage-applications .job-items {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.manage-applications .job-items .manage-content {
  padding: 25px 0;
  border-bottom: 1px solid #f1f1f1;
}

.manage-applications .job-items .manage-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.manage-applications .job-items .manage-content .title-img .can-img {
  float: left;
  margin-right: 8px;
}

.manage-applications .job-items .manage-content .title-img h3 {
  font-weight: 600;
  position: relative;
  top: 8px;
}

.manage-applications .job-items .manage-content .title-img h3 span {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.manage-applications .job-items .manage-content .time {
  background: #2042e314;
  color: #2042e3;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 13px;
}

.manage-applications .job-items .manage-content .can-img img {
  width: 50px;
  margin: 5px 15px;
}

.manage-applications .job-items .manage-content p i {
  font-size: 14px;
}

.manage-applications .job-items .manage-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.manage-applications .job-items .manage-content .location {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.manage-applications .job-items .manage-content .location i {
  display: inline-block;
  margin-right: 3px;
  color: #2042e3;
}

/*======================================
    Browse Resumes CSS
========================================*/
.browse-resumes {
  background-color: #f6f9fc;
}

.browse-resumes .inner-content {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.browse-resumes .inner-content .resume-item {
  position: relative;
  background-color: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-left: 190px;
  margin-bottom: 30px;
}

.browse-resumes .inner-content .resume-item:last-child {
  margin: 0;
  padding-bottom: 0;
  border: none;
}

.browse-resumes .inner-content .resume-item img {
  height: auto;
  width: 160px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.browse-resumes .inner-content .resume-item .right {
  position: relative;
  top: -10px;
}

.browse-resumes .inner-content .resume-item .right h3 a {
  font-size: 20px;
  font-weight: 600;
}

.browse-resumes .inner-content .resume-item .right h3 a:hover {
  color: #2042e3;
}

.browse-resumes .inner-content .resume-item .right .deg {
  display: block;
  margin-top: 5px;
}

.browse-resumes .inner-content .resume-item .right .experience {
  margin-top: 10px;
}

.browse-resumes .inner-content .resume-item .right .experience li {
  display: block;
  margin-bottom: 3px;
}

.browse-resumes .inner-content .resume-item .right .experience li span {
  color: #2042e3;
  display: inline-block;
  margin-left: 3px;
}

.browse-resumes .inner-content .resume-item .right .experience li i {
  display: inline-block;
  margin-right: 3px;
  color: #2042e3;
}

.browse-resumes .inner-content .resume-item .right .experience li:last-child {
  margin: 0;
}

.browse-resumes .inner-content .resume-item .right .skills {
  margin-top: 10px;
}

.browse-resumes .inner-content .resume-item .right .skills li {
  display: inline-block;
  font-size: 12px;
  margin-bottom: 5px;
  margin-right: 3px;
  position: relative;
  background: #2042e314;
  color: #2042e3;
  padding: 5px 10px;
  border-radius: 3px;
}

.browse-resumes .inner-content .resume-item .right .description {
  margin-top: 20px;
}

.browse-resumes .inner-content .resume-item .right .year-exp {
  padding: 5px 15px;
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
  background-color: #2042e3;
  position: absolute;
  right: 0;
  top: 0;
}

.browse-resumes .inner-content .resume-item .right .year-exp:hover {
  background-color: #081828;
  color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
}

/*======================================
    Bookmarked CSS
========================================*/
.bookmarked {
  background-color: #f6f9fc;
}

.bookmarked .job-items {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.bookmarked .job-items .manage-content {
  padding: 25px 0;
  border-bottom: 1px solid #f1f1f1;
}

.bookmarked .job-items .manage-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bookmarked .job-items .manage-content .title-img .can-img {
  float: left;
  margin-right: 8px;
}

.bookmarked .job-items .manage-content .title-img h3 {
  font-weight: 600;
  position: relative;
  top: 8px;
}

.bookmarked .job-items .manage-content .title-img h3 span {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

.bookmarked .job-items .manage-content .time {
  background: #2042e314;
  color: #2042e3;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 13px;
}

.bookmarked .job-items .manage-content .can-img img {
  width: 50px;
  margin: 5px 15px;
}

.bookmarked .job-items .manage-content .location {
  font-size: 13px;
  position: relative;
  padding-left: 20px;
}

.bookmarked .job-items .manage-content .location i {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
}

.bookmarked .job-items .manage-content p i {
  font-size: 14px;
}

.bookmarked .job-items .manage-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.bookmarked .job-items .manage-content .button .btn {
  padding: 8px 12px;
  font-size: 13px;
}

/*======================================
    Notifications CSS
========================================*/
.notifications {
  background-color: #f6f9fc;
}

.notifications .job-items {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.notifications .job-items .manage-content {
  padding: 25px 0;
  border-bottom: 1px solid #f1f1f1;
}

.notifications .job-items .manage-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.notifications .job-items .manage-content .can-img img {
  width: 60px;
  margin: 5px 15px;
}

.notifications .job-items .manage-content .time p {
  background: #2042e314;
  color: #2042e3;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 13px;
  display: inline-block;
  float: right;
}

.notifications .job-items .manage-content .time p i {
  display: inline-block;
  margin-right: 3px;
}

/*======================================
    Change Password CSS
========================================*/
.change-password {
  background-color: #f6f9fc;
}

.change-password .password-content {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.change-password .password-content h3 {
  font-size: 22px;
  font-weight: 700;
}

.change-password .password-content p {
  display: block;
  margin-top: 5px;
}

.change-password .password-content form {
  margin-top: 30px;
}

.change-password .password-content form label {
  color: #081828;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.change-password .password-content form input {
  height: 50px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0px 20px;
  font-size: 14px;
}

.change-password .password-content .form-group {
  margin-bottom: 15px;
}

.change-password .password-content .button .btn {
  padding: 12px 25px;
}

/*======================================
    Responsive CSS
========================================*/
/* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding: 60px 0px;
  }

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

  .section-title span {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-top: 5px;
    line-height: 38px;
  }

  .section-title.align-left {
    padding: 0;
    padding-right: 200px;
  }

  .section-title p {
    font-size: 13px;
  }

  .breadcrumbs {
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 30px;
    margin-bottom: 5px;
    color: #fff;
  }

  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }

  #scrollUp {
    bottom: 55px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .header .button {
    margin: 0;
  }

  .header.index2 .sticky .navbar .navbar-toggler .toggler-icon {
    background: #081828 !important;
  }

  .header .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    padding: 10px;
    z-index: 9999999;
    left: 95px;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 13px;
    top: 0;
    -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    border: 1px dashed #eee;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header .navbar-nav li .sub-menu li a {
    padding: 5px 10px;
    font-size: 13px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .header .navbar-nav li a:hover .sub-menu {
    top: 42px;
  }

  .header .navbar-nav li a {
    position: relative;
    margin-bottom: 6px;
  }

  .navbar-collapse {
    overflow: scroll;
    height: 400px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .navbar-nav .nav-item:last-child {
    padding-bottom: 20px;
  }

  .right-button .btn {
    font-size: 13px;
  }

  .breadcrumbs .bread-list {
    margin-top: 8px;
  }

  .hero-area .hero-inner {
    height: 550px;
  }

  .hero-area .hero-inner::before {
    display: none;
  }

  .hero-area .hero-text {
    float: none;
    margin-top: 140px;
  }

  .hero-area .hero-text h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-area .hero-text .button {
    margin-top: 25px;
  }

  .hero-area .hero-video-head {
    display: none;
  }

  .hero-area.style2 .home-slider {
    .hero-area.style2 .hero-inner .hero-text {
      margin-top: 150px;
    }

    .hero-area.style2 .tns-controls button {
      width: 30px;
      height: 50px;
      z-index: 2;
      color: #fff;
      font-size: 15px;
      background: #2042e3;
      border: none;
      padding: 2px 5px;
      border-radius: 4px;
      -webkit-transition: all .3s ease-out 0s;
      transition: all .3s ease-out 0s;
      position: absolute;
      z-index: 99;
      top: 50%;
      margin-top: -25px;
    }

    .hero-area.style2 .tns-controls button:hover {
      background-color: #081828;
      color: #fff;
    }

    .hero-area.style2 .tns-controls button:first-child {
      border-radius: 0 5px 5px 0 !important;
      left: 0;
    }

    .hero-area.style2 .tns-controls button:last-child {
      border-radius: 5px 0 0 5px !important;
      right: 0;
    }

    .hero-area.style2 .hero-image {
      display: none !important;
    }

    .hero-area.style3 .hero-inner {
      height: auto !important;
      padding-bottom: 50px;
    }

    .hero-area.style3 .hero-inner .hero-text {
      margin-top: 120px;
      text-align: center;
      padding: 0 !important;
    }

    .hero-area.style3 .trending-keywords {
      text-align: center;
    }

    .hero-area.style3 .trending-keywords .keywords {
      text-align: center;
      display: inline-block;
    }

    .hero-area.style3 .home-search {
      margin-top: 40px;
    }

    .hero-area.style3 .home-search .button {
      margin-top: 20px;
    }

    .hero-area.style3 .home-search .button .btn {
      width: 100%;
    }

    .hero-area.style4 .hero-inner .hero-text {
      margin-top: 120px;
      text-align: center;
      padding: 0 !important;
    }

    .apply-process .process-item {
      padding: 0 !important;
      padding-top: 0px;
      text-align: center;
      padding-top: 80px !important;
    }

    .apply-process .process-item i {
      left: 50% !important;
      margin-left: -30px;
      height: 60px !important;
      width: 60px !important;
      font-size: 25px !important;
      line-height: 60px !important;
    }

    .apply-process .process-item h4:before {
      left: 50% !important;
      margin-left: -25px;
    }

    .call-action.style2 .text h2 {
      font-size: 24px !important;
    }

    .call-action.style2 .button::before {
      display: none;
    }

    .about-us .content-left {
      position: relative;
      text-align: center;
    }

    .about-us .content-left .md-left {
      margin-left: 0 !important;
    }

    .about-us .content-left .media-body {
      text-align: left;
    }

    .about-us .content-right {
      margin-top: 50px;
      padding: 0;
    }

    .about-us .content-right h2 {
      font-size: 27px;
      margin-bottom: 40px;
      line-height: 38px;
    }

    .featured-job .single-job .content .button .btn {
      padding: 12px 28px !important;
    }

    .testimonials .patern1 {
      display: none;
    }

    .testimonials .testimonial-right {
      display: none;
    }

    .all-categories .categories-title {
      font-size: 25px !important;
    }

    .find-job.job-list {
      padding-top: 30px !important;
    }

    .pricing-table .section-title {
      margin-bottom: 20px;
    }

    .pricing-table .single-table {
      margin-top: 30px;
    }

    .faq-area {
      padding-bottom: 30px !important;
    }

    .faq-area .heading {
      font-size: 17px;
      line-height: 28px;
    }

    .brand-area .section-title.align-left {
      padding-right: 200px;
      margin-bottom: 40px !important;
    }

    .newsletter-area .mini-call-action {
      height: auto;
    }

    .latest-news-area .section-title {
      margin-bottom: 20px;
    }

    .latest-news-area .single-news {
      margin-top: 30px;
    }

    .post-details .post-meta li {
      margin-bottom: 8px;
    }

    .latest-news-area.blog-list {
      padding-top: 30px;
    }

    .blog-list .single-news {
      margin-bottom: 0 !important;
    }

    .post-details p {
      margin: 25px 0;
    }

    .sidebar {
      margin-top: 30px;
    }

    .sidebar .widget.search-widget form input {
      padding: 0 80px 0 20px;
    }

    .sidebar .widget.social-widget ul li {
      margin-bottom: 10px;
    }

    .contact-area .contact-address-wrapper {
      padding-right: 0;
    }

    .contact-area .inner-section-title h2 {
      font-weight: 700;
      font-size: 28px;
    }

    .sidebar.service-sidebar .service-category>li>a {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      padding: 10px 15px;
    }

    .sidebar.service-sidebar .service-category {
      padding: 30px;
    }

    .sidebar.service-sidebar .service-docs {
      padding: 30px;
    }

    .sidebar.service-sidebar .service-quote {
      padding: 30px;
    }

    .adv-banner {
      padding: 30px;
    }

    .post-details .post-title {
      line-height: 30px;
    }

    .post-details .post-title a {
      font-size: 24px;
      font-weight: 600;
    }

    .blog-middle-image {
      margin-bottom: 20px;
    }

    .blog-single .sidebar {
      margin-top: 30px;
    }

    .map-section {
      background-color: #fff;
      margin-top: 50px;
      padding-bottom: 60px !important;
      height: auto;
    }

    .map-section iframe {
      height: 300px !important;
    }

    .newsletter-area .mini-call-action {
      margin-top: 30px;
    }

    .error-page .error-image img {
      width: 70%;
    }

    .error-page .error-text {
      margin-top: 50px;
      padding-left: 0 !important;
      text-align: center !important;
      padding: 0px 100px !important;
    }

    .error-area .error-content h1 {
      font-size: 90px !important;
    }

    .maill-success .success-content h1 {
      font-size: 30px !important;
    }

    .maill-success .success-content h2 {
      font-size: 20px !important;
    }

    .contact-us .form-main {
      padding: 50px 50px 50px 50px !important;
    }

    .contact-us .single-head {
      padding-top: 0 !important;
    }

    .dashbord-sidebar {
      margin-bottom: 30px;
    }

    .footer .footer-top {
      text-align: center;
    }

    .footer .footer-top .download-button {
      text-align: center !important;
      margin-top: 20px;
    }

    .footer .footer-middle {
      padding-bottom: 60px;
      padding-top: 30px;
    }

    .footer .f-about p {
      padding-right: 80px;
    }

    .footer .single-footer {
      margin-top: 30px;
    }
  }

  /* Mobile Screen */
  @media only screen and (max-width: 767px) {
    .section {
      padding: 50px 0px;
    }

    .section-title {
      margin-bottom: 40px;
      padding: 0px 20px;
    }

    .section-title span {
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 8px;
      font-size: 12px;
    }

    .section-title h2 {
      font-size: 25px;
      margin-top: 3px;
      line-height: 35px;
    }

    .section-title.align-left {
      padding: 0;
      padding-right: 0;
    }

    .section-title p {
      font-size: 13px;
    }

    .breadcrumbs {
      padding-top: 105px;
      padding-bottom: 50px;
    }

    .breadcrumbs .breadcrumbs-content .page-title {
      font-size: 25px;
      line-height: 28px;
      margin-bottom: 5px;
      color: #fff;
    }

    .breadcrumbs .breadcrumb-nav {
      margin-top: 30px;
    }

    .button .btn {
      padding: 12px 25px;
      font-size: 14px;
      font-weight: 500;
    }

    #scrollUp {
      bottom: 55px;
    }

    .navbar-brand img {
      width: 130px;
    }

    .header.index2 .navbar .navbar-nav .nav-item a {
      color: #081828;
    }

    .header.index2 .navbar .navbar-nav .nav-item a::before {
      background-color: #2042e3;
    }

    .header .button {
      margin: 0;
    }

    .header .button .btn {
      padding: 0 !important;
      width: auto !important;
      height: 30px;
      line-height: 30px;
      padding: 0px 10px !important;
      font-size: 13px;
    }

    .header .button .login {
      padding: 0 !important;
      width: auto !important;
      height: 30px;
      line-height: 30px;
      padding: 0px 10px !important;
      font-size: 13px;
      margin-right: 10px;
    }

    .header .button .login i {
      display: inline-block;
      margin-right: 6px;
      font-size: 13px;
      line-height: 30px;
    }

    .header .navbar-nav li .sub-menu {
      background: #fff;
      width: 200px;
      padding: 10px;
      z-index: 9999999;
      left: 95px;
      opacity: 1;
      visibility: visible;
      position: relative;
      left: 13px;
      top: 0;
      -webkit-transform: scaleY(1) !important;
      transform: scaleY(1) !important;
      border: 1px dashed #eee;
      border-radius: 5px;
      -webkit-box-shadow: none;
      box-shadow: none;
    }

    .header .navbar-nav li .sub-menu li a {
      padding: 5px 10px;
      font-size: 13px;
      padding: 8px 12px;
      font-size: 12px;
    }

    .header .navbar-nav li a:hover .sub-menu {
      top: 42px;
    }

    .header .navbar-nav li a {
      position: relative;
      margin-bottom: 6px;
    }

    .navbar-collapse {
      overflow: scroll;
      height: 400px;
      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease;
    }

    .navbar-nav .nav-item:last-child {
      padding-bottom: 20px;
    }

    .navbar-toggler {
      padding: 0;
      background-color: #2042e3;
      padding: 5px 8px !important;
    }

    .navbar-toggler .toggler-icon {
      background-color: #fff !important;
      width: 20px !important;
      margin: 3px 0 !important;
    }

    .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      top: 5px !important;
    }

    .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      top: -5px !important;
    }

    .right-button .btn {
      font-size: 13px;
    }

    .breadcrumbs .bread-list {
      margin-top: 8px;
    }

    .hero-area .job-search-wrap-two {
      margin-top: 30px !important;
    }

    .hero-area .hero-inner {
      height: auto;
      overflow: visible;
      padding-bottom: 50px;
    }

    .hero-area .hero-text {
      float: none;
      margin-top: 100px;
    }

    .hero-area .hero-text h1 {
      font-size: 23px;
      line-height: 30px;
    }

    .hero-area .hero-text .button {
      margin-top: 20px;
    }

    .hero-area .hero-text .button .btn {
      margin: 0 !important;
      width: 60%;
      margin-bottom: 10px !important;
    }

    .hero-area .hero-text .button .btn:last-child {
      margin: 0 !important;
    }

    .hero-area.style2 .home-slider {
      position: relative;
      height: auto !important;
    }

    .hero-area.style2 .hero-inner .hero-text {
      margin-top: 120px;
      padding: 0 !important;
    }

    .hero-area.style2 .hero-inner .hero-text .btn {
      margin: 0 !important;
      width: 100%;
      margin-bottom: 10px !important;
    }

    .hero-area.style2 .hero-inner .hero-text .btn:last-child {
      margin: 0 !important;
    }

    .hero-area.style2 .tns-controls button {
      width: 30px;
      font-size: 15px;
    }

    .hero-area.style2 .tns-controls button:hover {
      background-color: #081828;
      color: #fff;
    }

    .hero-area.style2 .tns-controls button:first-child {
      border-radius: 0 5px 5px 0 !important;
      left: 0;
    }

    .hero-area.style2 .tns-controls button:last-child {
      border-radius: 5px 0 0 5px !important;
      right: 0;
    }

    .hero-area.style2 .hero-image {
      display: none !important;
    }

    .hero-area.style3 .hero-inner {
      height: auto !important;
      padding-bottom: 50px;
    }

    .hero-area.style3 .hero-inner .hero-text {
      margin-top: 120px;
      text-align: center;
      padding: 0 !important;
    }

    .hero-area.style3 .trending-keywords {
      text-align: center;
    }

    .hero-area.style3 .trending-keywords .keywords {
      text-align: center;
      display: inline-block;
    }

    .hero-area.style3 .home-search {
      margin-top: 40px;
    }

    .hero-area.style4 .hero-inner .hero-text {
      margin-top: 120px;
      text-align: center;
      padding: 0 !important;
    }

    .apply-process {
      padding-bottom: 45px !important;
    }

    .apply-process.style4 {
      padding-top: 120px !important;
    }

    .apply-process .process-item {
      margin-bottom: 35px;
      padding-left: 80px !important;
    }

    .apply-process .process-item i {
      height: 50px !important;
      width: 50px !important;
      font-size: 20px !important;
      line-height: 50px !important;
      top: 5px !important;
    }

    .apply-process .process-item h4 {
      font-size: 16px !important;
      margin-bottom: 14px !important;
      padding-bottom: 16px !important;
    }

    .about-us .content-left {
      padding: 0;
    }

    .about-us .content-left::before {
      display: none;
    }

    .about-us .content-left .single-img {
      border-radius: 5px;
    }

    .about-us .content-left .single-img.mt-50 {
      margin-top: 30px !important;
    }

    .about-us .content-left .single-img.minus-margin {
      position: relative;
      top: 0px;
    }

    .about-us .content-left .media-body {
      padding-top: 25px;
      padding-bottom: 25px;
    }

    .about-us .content-left .media-body h6 {
      font-size: 20px;
    }

    .about-us .content-right {
      margin-top: 50px;
      padding: 0;
    }

    .about-us .content-right h2 {
      font-size: 27px;
      margin-bottom: 40px;
      line-height: 38px;
    }

    .call-action .section-title {
      padding: 0 !important;
    }

    .find-job.job-list {
      padding-top: 20px !important;
    }

    .find-job .single-job {
      padding: 0 !important;
      padding: 40px !important;
    }

    .find-job .single-job .job-image {
      margin: 0;
      position: relative !important;
      margin-bottom: 20px;
      left: 0 !important;
      top: 0 !important;
      display: inline-block;
    }

    .find-job .single-job .job-content h4 {
      padding: 0 !important;
      padding-bottom: 15px !important;
    }

    .find-job .single-job .job-button {
      position: relative !important;
      left: 0 !important;
      top: 0 !important;
      margin-top: 20px;
    }

    .featured-job .single-job .content .button .btn {
      width: 100%;
      margin: 0 !important;
      margin-bottom: 10px !important;
    }

    .featured-job .single-job .content .button .btn:last-child {
      margin: 0 !important;
    }

    .all-categories {
      padding-bottom: 20px !important;
    }

    .all-categories .categories-title {
      font-size: 20px !important;
      margin-bottom: 20px !important;
    }

    .find-job .search-job .search-nner input {
      margin-bottom: 15px !important;
    }

    .browse-resumes .inner-content .resume-item {
      padding-left: 0 !important;
    }

    .browse-resumes .inner-content .resume-item img {
      position: relative !important;
      margin-bottom: 20px;
    }

    .browse-resumes .inner-content .resume-item .right .year-exp {
      padding: 7px 15px !important;
      position: relative !important;
      width: 100%;
      text-align: center;
      margin-top: 20px;
    }

    .testimonials .patern1 {
      display: none;
    }

    .testimonials .testimonial-right {
      display: none;
    }

    .testimonials .tns-controls {
      position: absolute;
      right: 50%;
      bottom: -65px;
      z-index: 9;
      text-align: center;
      display: inline-block;
      -webkit-transform: translateX(50%);
      transform: translateX(50%);
    }

    .testimonials button {
      width: 40px !important;
      height: 40px !important;
      font-size: 13px !important;
      line-height: 40px !important;
    }

    .pricing-table .section-title {
      margin-bottom: 10px;
    }

    .pricing-table .single-table {
      margin-top: 30px;
    }

    .faq-area {
      padding-bottom: 20px !important;
    }

    .faq-area .single-faq {
      margin-bottom: 45px;
    }

    .faq-area .heading {
      font-size: 15px;
      line-height: 25px;
    }

    .brand-area .section-title.align-left {
      padding-right: 0;
      margin-bottom: 40px !important;
    }

    .client-logo-section {
      padding: 0 !important;
    }

    .client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
      max-width: 170px;
    }

    .latest-news-area .section-title {
      margin-bottom: 10px;
    }

    .latest-news-area .single-news {
      margin-top: 30px;
    }

    .latest-news-area .single-news .content-body .title {
      line-height: 24px !important;
    }

    .latest-news-area .single-news .content-body .title a {
      font-size: 17px !important;
    }

    .post-details .post-meta li {
      margin-bottom: 8px;
    }

    .post-details p {
      margin: 20px 0;
    }

    .post-image .blog-inner-big-img {
      margin-bottom: 1.5rem !important;
    }

    .post-details .list {
      margin-left: 0 !important;
    }

    .post-details .list li i {
      top: 6px !important;
    }

    .post-comments {
      padding: 30px;
    }

    .post-comments .comments-list {
      padding: 0 !important;
    }

    .post-comments .comments-list li {
      padding: 0 !important;
    }

    .post-comments .comments-list li .comment-img {
      position: relative !important;
    }

    .comment-form {
      padding: 30px;
    }

    .comment-form form .form-box .form-control-custom {
      height: 50px;
      margin-bottom: 15px;
    }

    .post-comments .comments-list li.children {
      margin-left: 0 !important;
    }

    .post-comments .comments-list li {
      padding-top: 30px !important;
    }

    .post-comments .comments-list li .comment-desc {
      margin-top: -15px;
    }

    .post-comments .comments-list li .comment-img img {
      max-width: 70px;
      max-height: 70px;
      display: inline-block !important;
      margin-bottom: -15px !important;
    }

    .post-comments .comments-list li .comment-desc .desc-top .reply-link {
      position: absolute;
      right: 0;
      top: 0;
      -webkit-transform: translateY(0);
      transform: translateY(0);
      padding: 8px 25px;
      position: relative;
      margin-top: 15px;
    }

    .post-comments .comments-list li {
      padding-left: 100px;
    }

    .latest-news-area.blog-list {
      padding-top: 20px;
    }

    .blog-list .single-news {
      margin-bottom: 0 !important;
    }

    .sidebar {
      margin-top: 30px;
    }

    .sidebar .widget.search-widget form input {
      padding: 0 80px 0 20px;
    }

    .sidebar .widget.social-widget ul li {
      margin-bottom: 10px;
    }

    .contact-area .contact-address-wrapper {
      padding-right: 0;
    }

    .contact-area .inner-section-title h2 {
      font-weight: 700;
      font-size: 28px;
    }

    .sidebar.service-sidebar .service-category>li>a {
      font-size: 14px;
      font-weight: 500;
      padding: 0;
      padding: 10px 15px;
    }

    .sidebar.service-sidebar .service-category {
      padding: 30px;
    }

    .sidebar.service-sidebar .service-docs {
      padding: 30px;
    }

    .sidebar.service-sidebar .service-quote {
      padding: 30px;
    }

    .adv-banner {
      padding: 30px;
    }

    .post-details .post-title {
      line-height: 30px;
    }

    .post-details .post-title a {
      font-size: 24px;
      font-weight: 600;
    }

    .blog-middle-image {
      margin-bottom: 20px;
    }

    .blog-single .sidebar {
      margin-top: 30px;
    }

    .map-section {
      background-color: #fff;
      margin-top: 50px;
      padding-bottom: 50px !important;
      height: auto;
    }

    .map-section iframe {
      height: 300px !important;
    }

    .brand-list {
      border: none;
    }

    .brand-list:before {
      display: none;
    }

    .brand-list li {
      border: 1px solid #eee;
    }

    .brand-list li a {
      border: none;
    }

    .faq-area .single-faq {
      margin-bottom: 30px !important;
    }

    .error-area .error-content h1 {
      font-size: 60px !important;
    }

    .error-area .error-content h2 {
      font-size: 18px !important;
    }

    .maill-success .success-content h1 {
      font-size: 28px !important;
    }

    .maill-success .success-content h2 {
      font-size: 18px !important;
    }

    .contact-us .single-head {
      padding-top: 0 !important;
    }

    .add-resume .add-resume-inner .post-header p {
      float: left !important;
    }

    .add-resume .add-post-btn {
      float: none !important;
      margin-top: 10px;
    }

    .add-resume .button {
      margin-bottom: 15px;
      display: block;
    }

    .add-resume .add-resume-inner .add-post-btn ul li {
      margin: 0 !important;
      margin-bottom: 10px !important;
    }

    .add-resume .add-resume-inner .add-post-btn ul li:last-child {
      margin: 0 !important;
    }

    .job-alerts .job-alerts-items .alerts-list {
      text-align: center;
    }

    .job-alerts .job-alerts-items .alerts-content {
      text-align: center;
    }

    .job-alerts .job-alerts-items .alerts-content h3 {
      margin-bottom: 10px;
    }

    .pagination-md-center {
      text-align: center !important;
    }

    .job-alerts .job-alerts-items .alerts-content .full-time {
      margin: 5px 0;
    }

    .job-details .job-details-inner {
      padding: 30px !important;
    }

    .job-details .content {
      padding: 0 !important;
      display: block;
      -webkit-box-flex: 1;
      -ms-flex: auto;
      flex: auto;
    }

    .job-details .company-logo {
      padding-left: 0 !important;
    }

    .job-details .title {
      display: block;
      margin-top: 10px;
    }

    .job-details .job-details-head .salary-type {
      -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
      order: 0 !important;
    }

    .job-details .job-details-sidebar .sidebar-widget:first-child {
      margin-top: 30px !important;
    }

    .modal .login-modal-main {
      padding: 25px !important;
    }

    .modal .login-modal-main .heading h3 {
      font-size: 20px !important;
      line-height: 26px !important;
    }

    .modal .login-modal-main .social-login ul li a {
      padding: 10px 10px !important;
      padding-left: 10px !important;
      font-size: 13px !important;
      padding-left: 32px !important;
    }

    .modal .login-modal-main .social-login ul li a i {
      position: absolute;
      left: 15px !important;
      top: 14px !important;
      font-size: 13px !important;
    }

    .dashbord-sidebar {
      margin-bottom: 30px;
    }

    .pagination {
      margin-top: 30px;
    }

    .pagination .pagination-list li {
      margin-top: 10px;
    }

    .bookmarked .job-items .manage-content {
      text-align: center;
    }

    .bookmarked .job-items .manage-content .can-img {
      float: none !important;
      text-align: center;
    }

    .bookmarked .job-items .manage-content .time {
      margin-top: 20px;
      padding: 7px 14px !important;
      display: inline-block !important;
      text-align: center;
      margin-bottom: 10px;
    }

    .bookmarked .job-items .manage-content .location {
      text-align: center;
      margin-bottom: 10px;
      padding: 0 !important;
    }

    .bookmarked .job-items .manage-content .location i {
      position: relative !important;
      top: 0 !important;
    }

    .bookmarked .job-items .manage-content .button .btn {
      display: inline-block !important;
      padding: 7px 14px;
    }

    .manage-applications .job-items .manage-content {
      text-align: center;
    }

    .manage-applications .job-items .manage-content .title-img .can-img {
      float: none !important;
    }

    .manage-applications .job-items .manage-content .time {
      display: inline-block;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .manage-jobs .job-items .manage-list {
      text-align: center;
    }

    .manage-jobs .job-items .manage-content {
      text-align: center;
    }

    .manage-jobs .job-items .manage-content .time {
      display: inline-block;
      margin: 15px 0 10px 0;
    }

    .manage-jobs .job-items .manage-content .can-img img {
      margin-bottom: 10px !important;
    }

    .manage-resumes .inner-content .resume-item {
      padding: 0 !important;
    }

    .manage-resumes .inner-content .resume-item img {
      position: relative !important;
      margin-bottom: 20px;
    }

    .manage-resumes .inner-content .resume-item .status {
      display: block;
      margin-bottom: 10px;
    }

    .manage-resumes .inner-content .resume-item .action-btn a {
      margin-bottom: 10px;
    }

    .manage-resumes .inner-content .resume-item .action-btn a:last-child {
      margin-bottom: 10px !important;
    }

    .notifications .job-items .manage-content {
      text-align: center;
    }

    .notifications .job-items .manage-content .can-img img {
      float: none;
      margin-bottom: 15px !important;
    }

    .notifications .job-items .manage-content .time p {
      float: none !important;
      margin-top: 15px !important;
      text-align: center;
    }

    .resume .content-right {
      margin-top: 20px;
    }

    .resume .content-right .title-main {
      margin-bottom: 20px !important;
      padding-bottom: 15px !important;
    }

    .resume .inner-content .social li {
      margin-bottom: 10px;
    }

    .resume .inner-content .single-section.exprerience .single-exp .image img {
      margin: 0 !important;
      margin-bottom: 10px !important;
    }

    .call-action.style2 {
      text-align: center;
    }

    .call-action.style2 h2 {
      font-size: 28px !important;
    }

    .call-action.style2 .button {
      position: relative;
      text-align: center;
      margin-top: 20px;
    }

    .call-action.style2 .button:before {
      display: none !important;
    }

    .call-action.style2 .button .btn {
      float: none !important;
      text-align: center;
    }

    .footer .footer-top {
      text-align: center;
    }

    .footer .footer-top .download-text h3 {
      font-size: 22px !important;
    }

    .footer .footer-top .download-button {
      text-align: center !important;
      margin-top: 20px;
    }

    .footer .footer-top .download-button .button .btn {
      width: 70%;
      margin: 0 !important;
      margin-bottom: 10px !important;
    }

    .footer .footer-top .download-button .button .btn:last-child {
      margin: 0 !important;
    }

    .footer .footer-middle {
      padding-bottom: 50px !important;
      padding-top: 20px !important;
    }

    .footer .f-about p {
      padding-right: 80px;
      line-height: 24px !important;
    }

    .footer .f-link ul li {
      margin-bottom: 10px !important;
    }

    .footer .single-footer h3 {
      margin-bottom: 22px !important;
    }

    .footer .single-footer {
      margin-top: 30px;
    }

    .footer .footer-bottom {
      text-align: center;
    }

    .footer .footer-bottom .left {
      margin-bottom: 15px;
    }

    .footer .footer-bottom .left p {
      text-align: center;
    }

    .footer .footer-bottom .right ul {
      text-align: center !important;
    }
  }

  /*======================================
	Contact CSS
========================================*/
  .contact-us {
    position: relative;
    background-color: #f6f9fc;
    padding-bottom: 0;
  }

  .contact-us .contact-head {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    position: relative;
    z-index: 5;
  }

  .contact-us .title {
    margin-bottom: 30px;
  }

  .contact-us .contant-inner-title {
    margin-bottom: 45px;
  }

  .contact-us .contant-inner-title h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #081828;
    text-transform: capitalize;
  }

  .contact-us .contant-inner-title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 10px;
    display: block;
  }

  .contact-us .single-head {
    padding: 50px;
    height: 100%;
    background: #fff;
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-left: 1px solid #eee;
  }

  .contact-us .single-info {
    text-align: left;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
  }

  .contact-us .single-info i {
    color: #2042e3;
    font-size: 18px;
    display: inline-block;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 2px;
  }

  .contact-us .single-info ul {
    display: inline-block;
  }

  .contact-us .single-info ul li:last-child {
    margin-bottom: 0;
  }

  .contact-us .single-info ul li {
    font-weight: 500;
    display: inline-block;
    font-size: 13px;
  }

  .contact-us .single-info ul li a {
    font-weight: 500;
    color: #7E8890;
    display: inline-block;
    font-size: 13px;
  }

  .contact-us .single-info ul li a:hover {
    color: #2042e3;
  }

  .contact-us .contact-social {
    display: block;
    margin-top: 65px;
  }

  .contact-us .contact-social h5 {
    color: #081828;
    font-weight: 600;
    font-size: 18px;
  }

  .contact-us .contact-social ul {
    display: inline-block;
    position: relative;
    left: -9px;
    margin-top: 15px;
  }

  .contact-us .contact-social ul {
    margin-left: 10px;
  }

  .contact-us .contact-social ul li {
    display: inline-block;
    margin-right: 6px;
  }

  .contact-us .contact-social ul li:last-child {
    margin-right: 0;
  }

  .contact-us .contact-social ul li a {
    font-size: 14px;
    color: #081828;
    height: 40px;
    width: 40px;
    text-align: center;
    display: block;
    line-height: 40px;
    background: #E8ECF1;
    border: none;
    border-radius: 4px;
    position: relative;
    z-index: 3;
  }

  .contact-us .contact-social ul li a:hover {
    color: #fff;
    background-color: #2042e3;
  }

  .contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
  }

  .contact-us .single-info .title span {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
  }

  .contact-us .form-main {
    padding: 50px 35px 50px 50px;
  }

  .contact-us .form .form-group {
    margin-bottom: 15px;
    display: block;
  }

  .contact-us .form .form-group input {
    height: 55px;
    line-height: 55px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 0px 20px;
    color: #333;
    border-radius: 0px;
    font-weight: 400;
    border-radius: 5px;
  }

  .contact-us .form .form-group textarea {
    height: 180px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 15px 20px;
    color: #333;
    border-radius: 0px;
    resize: none;
    font-weight: 400;
    border-radius: 5px;
  }

  .contact-us .form .button {
    margin: 0;
  }

  .contact-us .form .button .btn {
    height: 50px;
    border: none;
  }

  .map-section {
    background-color: #f6f9fc;
    margin-top: 50px;
    padding-bottom: 100px;
  }

  .map-section .map-container {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    padding: 20px;
    border-radius: 7px;
    background-color: #fff;
  }

  /*======================================
	Error 404 CSS
========================================*/
  .error-area {
    height: 100vh;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .d-table {
    width: 100%;
    height: 100%;
  }

  .d-table {
    display: table !important;
  }

  .d-table-cell {
    vertical-align: middle;
  }

  .d-table-cell {
    display: table-cell !important;
  }

  .error-area .error-content h1 {
    font-size: 120px;
    color: #2042e3;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .error-area .error-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #081828;
  }

  .error-area .error-content p {
    font-weight: 500;
    margin-bottom: 20px;
  }

  /*======================================
	Mail Success CSS
========================================*/
  .maill-success {
    height: 100vh;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .d-table {
    width: 100%;
    height: 100%;
  }

  .d-table {
    display: table !important;
  }

  .d-table-cell {
    vertical-align: middle;
  }

  .d-table-cell {
    display: table-cell !important;
  }

  .maill-success .success-content h1 {
    font-size: 40px;
    color: #2042e3;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .maill-success .success-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #081828;
  }

  .maill-success .success-content p {
    font-weight: 500;
    margin-bottom: 20px;
  }

  /*======================================
    Modal CSS
========================================*/
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
  }

  .position-relative {
    position: relative !important;
  }

  .pos-abs-tr {
    position: absolute;
    top: 0;
    right: 0;
  }

  .z-index-supper {
    z-index: 800;
  }

  .circle-32 {
    max-width: 32px;
    min-width: 32px;
    max-height: 32px;
    min-height: 32px;
    border-radius: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 20px;
    top: 20px;
    background: #eee !important;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .circle-32:hover {
    background-color: #081828 !important;
    color: #fff !important;
  }

  .btn-reset {
    background: transparent;
    border: 0;
  }

  .modal.show .modal-dialog {
    pointer-events: visible;
  }

  .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }

  .modal .login-modal-main {
    background-color: #fff;
    padding: 50px;
    border-radius: 6px;
    overflow: hidden;
  }

  .modal .login-modal-main .heading h3 {
    color: #081828;
    font-size: 26px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    line-height: 32px;
  }

  .modal .login-modal-main .heading h3::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #2042e3;
  }

  .modal .login-modal-main .social-login {
    margin-top: 30px;
  }

  .modal .login-modal-main .social-login ul li {
    margin-bottom: 10px;
  }

  .modal .login-modal-main .social-login ul li:last-child {
    margin-bottom: 0;
  }

  .modal .login-modal-main .social-login ul li a {
    text-align: center;
    position: relative;
    background-color: #2042e3;
    padding: 13px 30px;
    color: #fff;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    z-index: 2;
  }

  .modal .login-modal-main .social-login ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }

  .modal .login-modal-main .social-login ul li a:hover::before {
    opacity: 0.2;
    visibility: visible;
  }

  .modal .login-modal-main .social-login ul li a i {
    position: absolute;
    left: 30px;
    top: 14px;
    font-size: 20px;
  }

  .modal .login-modal-main .social-login ul li .linkedin {
    background-color: #0077B5;
  }

  .modal .login-modal-main .social-login ul li .google {
    background-color: #dd4b39;
  }

  .modal .login-modal-main .social-login ul li .facebook {
    background-color: #3b5999;
  }

  .modal .login-modal-main .or-devider {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .modal .login-modal-main .or-devider span {
    display: inline-block;
    background: white;
    padding: 15px 25px;
  }

  .modal .login-modal-main .or-devider::before {
    content: "";
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0%;
    margin-top: 1.5px;
    position: absolute;
    background: #eee;
    z-index: -1;
  }

  .modal .login-modal-main .form-group {
    margin-bottom: 20px;
  }

  .modal .login-modal-main .form-group:last-child {
    margin-bottom: 0;
  }

  .modal .login-modal-main .form-group .label {
    font-size: 15px;
    font-weight: 500;
    color: #081828;
    display: block;
    margin-bottom: 8px;
  }

  .modal .login-modal-main .form-group .form-control {
    height: 50px;
    border: 1px solid #eee;
    padding: 0px 30px;
    color: #081828;
    border-radius: 5px;
    font-size: 15px;
  }

  .modal .login-modal-main .form-group .pass {
    padding-right: 0;
  }

  .modal .login-modal-main .button {
    width: 100%;
  }

  .modal .login-modal-main .button .btn {
    width: 100%;
  }

  .modal .login-modal-main .create-new-account {
    color: #081828;
    font-size: 15px;
  }

  .modal .login-modal-main .create-new-account a {
    color: #2042e3;
  }

  .modal .login-modal-main .create-new-account a:hover {
    text-decoration: underline;
  }

  .pos-abs-cr {
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    display: block;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    line-height: 30px;
    text-align: center;
    display: block;
  }

  .pos-abs-cr::before {
    content: "\eab1";
    font-family: Lineicons;
    color: #081828;
    font-size: 17px;
  }

  .pos-abs-cr::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 14px;
    height: 2px;
    width: 20px;
    background-color: #555;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
  }

  .pos-abs-cr.show::after {
    opacity: 1;
    visibility: visible;
  }

  /*======================================
	Footer CSS
========================================*/
  .footer {
    background-color: #fff;
    z-index: 2;
    position: relative;
  }

  .footer .footer-top {
    border-bottom: 1px solid #eee;
    padding: 60px 0;
  }

  .footer .footer-top .download-text h3 {
    font-size: 30px;
    color: #081828;
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .footer .footer-top .download-button {
    text-align: right;
  }

  .footer .footer-top .download-button .btn {
    display: inline-block;
    margin-right: 10px;
  }

  .footer .footer-top .download-button .btn:last-child {
    margin-right: 0;
  }

  .footer .footer-top .download-button .btn i {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
  }

  .footer .logo {
    margin-bottom: 26px;
  }

  .footer .logo img {
    width: 150px;
  }

  .footer .f-about p {
    font-size: 14px;
    line-height: 28px;
    color: #7E8890;
  }

  .footer .f-about .contact-address {
    margin-top: 20px;
  }

  .footer .f-about .contact-address li {
    display: block;
    margin-bottom: 5px;
  }

  .footer .f-about .contact-address li:last-child {
    margin-bottom: 0;
  }

  .footer .f-about .contact-address li span {
    font-weight: 500;
    color: #081828;
    display: inline-block;
    margin-right: 4px;
  }

  .footer .footer-social {
    margin-top: 35px;
  }

  .footer .footer-social ul li {
    display: inline-block;
    margin-right: 6px;
  }

  .footer .footer-social ul li:last-child {
    margin-right: 0;
  }

  .footer .footer-social ul li a {
    font-size: 14px;
    color: #081828;
    height: 40px;
    width: 40px;
    text-align: center;
    display: block;
    line-height: 40px;
    background: #E8ECF1;
    border: none;
    border-radius: 4px;
    position: relative;
    z-index: 3;
  }

  .footer .footer-social ul li a:hover {
    color: #fff;
    background-color: #2042e3;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  }

  .footer .footer-middle {
    padding-bottom: 70px;
    padding-top: 40px;
  }

  .footer .single-footer {
    margin-top: 30px;
  }

  .footer .single-footer h3 {
    color: #081828;
    font-size: 19px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
  }

  .footer .f-link ul li {
    margin-bottom: 15px;
    position: relative;
  }

  .footer .f-link ul li:last-child {
    margin: 0;
  }

  .footer .f-link ul li a {
    display: inline-block;
    color: #7E8890;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .footer .f-link ul li a:hover {
    color: #2042e3;
    text-decoration: underline;
  }

  .footer .footer-bottom {
    border-top: 1px solid #eee;
  }

  .footer .footer-bottom .inner {
    padding: 30px 0;
    text-align: left;
  }

  .footer .footer-bottom .inner p {
    font-size: 14px;
    color: #7E8890;
  }

  .footer .footer-bottom .inner p a {
    font-weight: 400;
    display: inline-block;
    margin-left: 6px;
    color: #7E8890;
  }

  .footer .footer-bottom .inner p a:hover {
    color: #2042e3;
    text-decoration: underline;
  }

  .footer .footer-bottom .inner .right ul {
    text-align: right;
  }

  .footer .footer-bottom .inner .right ul li {
    display: inline-block;
    margin-right: 15px;
  }

  .footer .footer-bottom .inner .right ul li:last-child {
    margin: 0;
  }

  .footer .footer-bottom .inner .right ul li a {
    color: #7E8890;
  }

  .footer .footer-bottom .inner .right ul li a:hover {
    text-decoration: underline;
    color: #2042e3;
  }

  .footer .newsletter form {
    margin-top: 30px;
  }

  .footer .newsletter input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    color: #081828;
    padding: 0px 25px;
  }

  .footer .newsletter button {
    height: 50px;
    margin-top: 15px;
    width: 100%;
  }

  /* Global Modern Form Controls applied to ALL pages */
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }

  .form-group.overlap {
    margin-top: 15px;
  }

  .form-group.overlap label {
    position: absolute;
    top: 12px;
    left: 15px;
    padding: 0 5px;
    background: transparent;
    pointer-events: none;
    font-size: 14px;
    font-weight: 500;
    color: #7e8890;
    z-index: 2;
    transition: all 0.2s ease;
  }

  .form-group.overlap input:focus+label,
  .form-group.overlap input:not(:placeholder-shown)+label,
  .form-group.overlap textarea:focus+label,
  .form-group.overlap textarea:not(:placeholder-shown)+label,
  .form-group.overlap select:focus+label,
  .form-group.overlap select:not([value=""]):not(:placeholder-shown)+label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #2042e3;
    background: #fff;
  }

  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group textarea,
  .form-group .form-control,
  .form-group .dash-form-control,
  .form-group textarea.form-control,
  .form-group .select,
  .form-group select {
    width: 100%;
    padding: 11px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #081828;
    background-color: #f8fafc !important;
    border: 1.5px solid #e4e9f0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
  }

  /* Specific fix for textareas so they don't break height */
  .form-group textarea,
  .form-group textarea.form-control {
    height: auto;
    min-height: 120px;
  }

  /* Hover effects */
  input:not([type="checkbox"]):not([type="radio"]):hover,
  textarea:hover,
  input.form-control:hover,
  textarea.form-control:hover,
  select.select:hover,
  select.form-control:hover,
  .form-group input:not([type="checkbox"]):not([type="radio"]):hover,
  .form-group textarea:hover,
  .form-group .form-control:hover,
  .form-group .dash-form-control:hover,
  .form-group .select:hover,
  .form-group select:hover {
    border-color: #cbd2d9 !important;
    background-color: #fff !important;
  }

  /* Focus effects for all inputs and select boxes */
  input:not([type="checkbox"]):not([type="radio"]):focus,
  textarea:focus,
  input.form-control:focus,
  textarea.form-control:focus,
  select.select:focus,
  select.form-control:focus,
  .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
  .form-group textarea:focus,
  .form-group .form-control:focus,
  .form-group .dash-form-control:focus,
  .form-group .select:focus,
  .form-group select:focus {
    border-color: #2042e3 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(32, 66, 227, 0.1) !important;
  }

  /* Fix for standard select box arrow rendering */
  .form-group select,
  .form-group .select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 14px !important;
    padding-right: 40px !important;
    /* Space for the arrow */
    cursor: pointer;
  }

  /* Label styling to match */
  .form-group label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }



  /* ==========================================================================
   Global Auth & Form Utility Styles (Login/Signup)
   ========================================================================== */
  .login-page-section {
    padding: 80px 0;
    background: #fdfdfd;
  }

  .login-modal-main {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    max-width: 600px;
  }

  .login-modal-main .heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .login-modal-main .heading h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .login-modal-main .heading p {
    color: #666;
    font-size: 15px;
  }

  .social-login ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-login ul li a {
    display: block;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: center;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-login ul li a i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
  }

  .social-login .linkedin {
    background: #0077b5;
    color: #fff;
  }

  .social-login .google {
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
  }

  .social-login .facebook {
    background: #1877f2;
    color: #fff;
  }

  .social-login .linkedin:hover,
  .social-login .facebook:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .social-login .google:hover {
    border-color: #cbd2d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .or-devider {
    text-align: center;
    margin: 25px 0;
    position: relative;
  }

  .or-devider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    z-index: 1;
  }

  .or-devider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    color: #888;
    font-size: 14px;
    font-weight: 500;
  }

  .create-new-account {
    margin-top: 20px;
    font-weight: 500;
  }

  .create-new-account a {
    color: #2042e3;
    font-weight: 600;
    text-decoration: none;
  }

  /* Global Bootstrap 5 Checkbox Override to match Theme */
  .form-check-input:checked {
    background-color: #2042e3 !important;
    border-color: #2042e3 !important;
  }

  .form-check-input:focus {
    border-color: #2042e3 !important;
    box-shadow: 0 0 0 0.25rem rgba(32, 66, 227, 0.25) !important;
  }

  .form-check-input {
    cursor: pointer;
    border: 1.5px solid #d1d5db !important;
    width: 1.2em;
    height: 1.2em;
  }

  .form-check-label {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #444;
  }

  /* Standardizing all theme checkboxes */
  input[type="checkbox"],
  .form-group input[type="checkbox"],
  .form-check-input[type="checkbox"],
  .checkboxs {
    width: 1.2em !important;
    height: 1.2em !important;
    cursor: pointer !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 4px !important;
    margin-right: 8px !important;
    vertical-align: middle !important;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
  }

  input[type="checkbox"]:checked,
  .form-check-input:checked {
    background-color: #2042e3 !important;
    border-color: #2042e3 !important;
  }

  /* ==========================================================================
   Global Content Page Styles (Privacy, Terms, FAQ)
   ========================================================================== */
  .content-page-section {
    padding: 80px 0;
    background-color: #f6f9fc;
  }

  .content-page-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 7px;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  }

  .content-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 30px;
    border-radius: 7px;
    border: 1px solid #eee;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  }

  .content-sidebar h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
  }

  .content-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .content-sidebar ul li {
    margin-bottom: 12px;
  }

  .content-sidebar ul li a {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
  }

  .content-sidebar ul li a:hover,
  .content-sidebar ul li a.active {
    color: #2042e3;
    padding-left: 5px;
  }

  .main-content-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-top: 40px;
  }

  .main-content-text h2:first-child {
    margin-top: 0;
  }

  .main-content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }

  .main-content-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
  }

  .main-content-text ul li {
    list-style: disc;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    display: block;
    font-style: italic;
  }

  @media (max-width: 991px) {
    .content-sidebar {
      position: static;
      margin-bottom: 40px;
    }
  }

  /* ==========================================================================
   Category List View Page
   ========================================================================== */
  .list-view-section {
    background-color: #f6f9fc;
    padding: 70px 0;
  }

  /* Sidebar */
  .list-sidebar {
    position: sticky;
    top: 100px;
  }

  .sidebar-card {
    background: #fff;
    border-radius: 7px;
    padding: 25px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
  }

  .sidebar-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  /* Sub-type filter list */
  .type-filter li {
    margin-bottom: 10px;
  }

  .type-filter li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 4px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }

  .type-filter li a:hover,
  .type-filter li a.active {
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
  }

  .type-filter li a .count {
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
  }

  .type-filter li a.active .count {
    background: #2042e3;
    color: #fff;
  }

  /* Related categories */
  .related-cat li {
    margin-bottom: 8px;
  }

  .related-cat li a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }

  .related-cat li a i {
    color: #2042e3;
    font-size: 12px;
  }

  .related-cat li a:hover {
    color: #2042e3;
  }

  /* Main content header */
  .list-header {
    background: #fff;
    border-radius: 7px;
    padding: 20px 25px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }

  .list-header .result-info {
    font-size: 14px;
    color: #7E8890;
  }

  .list-header .result-info strong {
    color: #081828;
  }

  .list-header .sort-by {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }

  .list-header .sort-by label {
    font-size: 13px;
    color: #7E8890;
    white-space: nowrap;
  }

  .list-header .sort-by select {
    border: 1px solid #e3e6ef;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    color: #081828;
    outline: none;
    cursor: pointer;
  }

  /* Template Card */
  .template-card {
    background: #fff;
    border-radius: 7px;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10) !important;
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .template-card:hover {
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.18) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.18) !important;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  .template-card .accent-strip {
    width: 5px;
    background: #2042e3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .template-card .card-body-inner {
    padding: 22px 25px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 18px;
  }

  .template-card .doc-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 22px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .template-card .card-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .template-card .card-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #081828;
    margin-bottom: 6px;
  }

  .template-card .card-info h4 a {
    color: #081828;
    text-decoration: none;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }

  .template-card .card-info h4 a:hover {
    color: #2042e3;
  }

  .template-card .card-info p {
    font-size: 13px;
    color: #7E8890;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .template-card .card-info .meta-tags li {
    display: inline-block;
    font-size: 12px;
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
    padding: 4px 10px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 4px;
  }

  .template-card .card-info .meta-tags li i {
    font-size: 11px;
    margin-right: 3px;
  }

  /* Card actions */
  .template-card .card-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 22px 20px 22px 0;
    gap: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .template-card .card-actions .badge-free {
    background: rgba(22, 163, 74, 0.10);
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
  }

  .template-card .card-actions .badge-paid {
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
  }

  .template-card .card-actions .btn-view {
    display: inline-block;
    background: #2042e3;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .template-card .card-actions .btn-view:hover {
    background: #081828;
    color: #fff;
  }

  .template-card .card-actions .btn-save {
    background: transparent;
    border: 1px solid #e3e6ef;
    color: #7E8890;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }

  .template-card .card-actions .btn-save:hover {
    border-color: #2042e3;
    color: #2042e3;
  }

  /* Template price block */
  .price-block {
    text-align: right;
  }

  /* Sale price — all green */
  .price-block .price-sale {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #16a34a;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }


  /* MRP — small and struck through */
  .price-block .price-mrp {
    display: block;
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
    line-height: 1.4;
    margin-top: 2px;
  }

  /* Savings pill */
  .price-block .price-save {
    display: inline-block;
    background: rgba(255, 107, 53, 0.10);
    color: #ff6b35;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  /* Signature Premium Pagination (UL/LI Compatible) */
  .pg-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 30px 0;
    width: 100%;
  }

  .pagination.center {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .pagination-list {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.05);
    list-style: none;
    margin: 0;
  }

  .pagination-list li {
    display: inline-block;
  }

  .pagination-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  }

  .pagination-list li a i {
    font-size: 18px;
    font-weight: bold;
  }

  .pagination-list li a:hover {
    background: #fff;
    border-color: #004aad;
    color: #004aad;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 74, 173, 0.15);
  }

  .pagination-list li.active a {
    background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
    transform: scale(1.1);
  }

  .pagination-list li.active a:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.5);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .list-sidebar {
      position: static;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 767px) {
    .template-card {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    .template-card .accent-strip {
      width: 100%;
      height: 4px;
    }

    .template-card .card-actions {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      padding: 0 20px 20px;
    }
  }

  /* ==========================================================================
   View Template & Slot Booking Page
   ========================================================================== */
  .vt-section {
    background-color: #f6f9fc;
    padding: 70px 0;
  }

  /* ─── Card ─── */
  .vt-card {
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10);
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.10);
    overflow: hidden;
  }

  .vt-card-body {
    padding: 24px 28px;
  }

  /* ─── Template Header ─── */
  .vt-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f0f0;
  }

  .vt-doc-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(32, 66, 227, 0.08);
    color: #2042e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .vt-title {
    font-size: 20px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 4px;
  }

  .vt-subtitle {
    font-size: 13px;
    color: #7E8890;
    margin: 0;
  }

  .vt-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .vt-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }

  .vt-feature-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #081828;
    background: rgba(32, 66, 227, 0.06);
    padding: 6px 14px;
    border-radius: 50px;
  }

  .vt-feature-item i {
    color: #2042e3;
    font-size: 14px;
  }

  /* ─── Step Headers ─── */
  .vt-step-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
  }

  .vt-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2042e3;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .vt-step-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #081828;
    margin: 0;
  }

  /* ─── Datepicker ─── */
  .vt-datepicker-wrap {
    position: relative;
  }

  .vt-cal-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #2042e3;
    font-size: 18px;
    pointer-events: none;
  }

  .vt-datepicker {
    width: 100%;
    border: 1.5px solid #e3e6ef;
    border-radius: 6px;
    padding: 12px 16px 12px 44px;
    font-size: 14px;
    font-weight: 500;
    color: #081828;
    background: #fff;
    cursor: pointer;
    outline: none;
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }

  .vt-datepicker:focus {
    border-color: #2042e3;
  }

  /* Flatpickr theme override */
  .flatpickr-calendar {
    border-radius: 10px !important;
    -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.18) !important;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.18) !important;
    font-family: inherit !important;
    border: none !important;
  }

  .flatpickr-day.selected,
  .flatpickr-day.selected:hover {
    background: #2042e3 !important;
    border-color: #2042e3 !important;
  }

  .flatpickr-day:hover {
    background: rgba(32, 66, 227, 0.08) !important;
  }

  .flatpickr-day.today {
    border-color: #2042e3 !important;
  }


  .flatpickr-months .flatpickr-month {
    background: #2042e3 !important;
    color: #fff !important;
    border-radius: 10px 10px 0 0 !important;
  }

  .flatpickr-current-month,
  .flatpickr-current-month .cur-month,
  .flatpickr-current-month .numInputWrapper input {
    color: #fff !important;
  }

  .flatpickr-months .flatpickr-prev-month svg,
  .flatpickr-months .flatpickr-next-month svg {
    fill: #fff !important;
  }

  .flatpickr-weekday {
    color: #2042e3 !important;
    font-weight: 600 !important;
  }

  /* ─── Slot Legend ─── */
  .vt-slot-legend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .legend-item {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
  }

  .legend-item::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
  }

  .legend-item.available {
    color: #555;
  }

  .legend-item.available::before {
    background: #fff;
    border: 1.5px solid #d1d5db;
  }

  .legend-item.booked {
    color: #999;
  }

  .legend-item.booked::before {
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
  }

  .legend-item.selected {
    color: #2042e3;
  }

  .legend-item.selected::before {
    background: #2042e3;
    border: 1.5px solid #2042e3;
  }

  /* ─── Updated Booking Panel ─── */
  .vt-booking-panel {
    display: flex;
    gap: 0;
    min-height: 480px;
  }

  .vt-calendar-col {
    flex: 0 0 350px;
    padding: 24px;
    border-right: 1px solid #f0f0f0;
  }

  .vt-slots-col {
    flex: 1;
    padding: 24px;
    background: #fcfdfe;
  }

  .vt-slots-top {
    margin-bottom: 20px;
  }

  .vt-slots-date {
    font-size: 15px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .vt-slots-date i {
    color: #2042e3;
  }

  .vt-slot-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 8px;
  }

  /* Custom Scrollbar */
  .vt-slot-list::-webkit-scrollbar {
    width: 5px;
  }

  .vt-slot-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .vt-slot-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .vt-slot-list::-webkit-scrollbar-thumb:hover {
    background: #999;
  }

  .vt-slot-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: #fff;
    border: 1.5px solid #e3e6ef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }

  .vt-slot-row .slot-time {
    font-size: 13px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 4px;
    display: block;
  }

  .vt-slot-row .slot-status {
    font-size: 11px;
    font-weight: 500;
    color: #16a34a;
    display: block;
  }

  .vt-slot-row:hover:not(.booked):not(.selected) {
    border-color: #2042e3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 66, 227, 0.1);
  }

  .vt-slot-row.selected {
    background: #2042e3;
    border-color: #2042e3;
    box-shadow: 0 8px 20px rgba(32, 66, 227, 0.25);
    transform: translateY(-2px);
  }

  .vt-slot-row.selected .slot-time,
  .vt-slot-row.selected .slot-status {
    color: #fff;
  }

  .vt-slot-row.booked {
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.7;
  }

  .vt-slot-row.booked .slot-time {
    color: #94a3b8;
    text-decoration: line-through;
  }

  .vt-slot-row.booked .slot-status {
    color: #94a3b8;
  }


  /* ─── Form inputs ─── */
  .vt-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #081828;
    margin-bottom: 6px;
  }

  .vt-input {
    width: 100%;
    border: 1.5px solid #e3e6ef;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    color: #081828;
    background: #fff;
    outline: none;
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
    font-family: inherit;
  }

  .vt-input:focus {
    border-color: #2042e3;
  }

  .vt-textarea {
    resize: vertical;
    min-height: 90px;
  }

  /* ─── Hint text ─── */
  .vt-hint {
    font-size: 12px;
    color: #7E8890;
    margin-top: 12px;
    margin-bottom: 0;
  }

  /* ─── Summary Card ─── */
  .vt-summary-wrap {
    position: sticky;
    top: 100px;
  }

  .vt-summary-card {
    padding: 0;
  }

  .vt-summary-title {
    font-size: 15px;
    font-weight: 700;
    color: #081828;
    padding: 18px 22px;
    border-bottom: 1px solid #f0f0f0;
  }

  .vt-summary-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 22px;
    font-size: 13px;
    color: #555;
    gap: 8px;
  }

  .vt-summary-row span:first-child {
    color: #7E8890;
  }

  .vt-summary-row span:last-child {
    font-weight: 500;
    color: #081828;
    text-align: right;
  }

  .vt-summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 0;
  }

  .vt-summary-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #081828;
  }

  .vt-savings-note {
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
    padding: 0 22px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
  }

  /* Mini price in summary */
  .vt-price-mini {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
  }

  .vt-price-mrp {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
  }

  .vt-price-sale {
    font-size: 14px;
    font-weight: 700;
    color: #16a34a;
  }

  .fw-600 {
    font-weight: 600;
  }

  /* ─── Payment Button ─── */
  .vt-pay-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #2042e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
  }

  .vt-pay-btn:hover {
    background: #081828;
    -webkit-box-shadow: 0 8px 24px rgba(32, 66, 227, 0.35);
    box-shadow: 0 8px 24px rgba(32, 66, 227, 0.35);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }

  .vt-pay-btn i {
    font-size: 18px;
  }

  /* ─── Secure note ─── */
  .vt-secure-note {
    text-align: center;
    font-size: 12px;
    color: #7E8890;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
  }

  /* ─── Trust items ─── */
  .vt-trust-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .vt-trust-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
  }

  .vt-trust-item i {
    color: #16a34a;
    font-size: 15px;
  }

  /* ─── Responsive ─── */
  @media (max-width: 991px) {
    .vt-summary-wrap {
      position: static;
    }
  }

  @media (max-width: 767px) {
    .vt-slot-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .vt-card-header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .vt-slot-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ─── Payment Page Specifics ─── */
  .payment-card-wrap {
    max-width: 580px;
    margin: 40px auto;
  }

  .booking-details-box {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    margin-bottom: 30px;
  }

  .payment-action-wrap {
    text-align: center;
  }

  .payment-btn-premium {
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #2042e3, #6366f1);
    color: #fff;
    border: none;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(32, 66, 227, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .payment-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(32, 66, 227, 0.35);
    filter: brightness(1.1);
  }

  .payment-btn-premium:active {
    transform: translateY(0);
  }

  .payment-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0.6;
    margin-top: 25px;
  }

  .payment-trust-logos img {
    filter: grayscale(1);
    transition: filter 0.3s ease;
  }

  .payment-trust-logos img:hover {
    filter: grayscale(0);
  }

  /* ==========================================================================
   Dashboard Page Styles
   ========================================================================== */
  .dashboard-section {
    background-color: #f6f9fc;
    padding: 60px 0;
    min-height: calc(100vh - 200px);
  }

  .dashboard-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.08);
    padding: 30px;
    margin-bottom: 30px;
  }

  /* ─── Profile Section ─── */
  .dashboard-user-profile {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
  }

  .dashboard-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #2042e31c;
    color: #2042e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
  }

  .dashboard-user-name {
    font-size: 20px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 5px;
  }

  .dashboard-user-email {
    font-size: 14px;
    color: #7E8890;
    margin-bottom: 0;
  }

  .dashboard-stat-box {
    background: #f8fafc;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .dashboard-stat-box:hover {
    background: #2042e3;
    color: #fff;
  }

  .dashboard-stat-box:hover h4,
  .dashboard-stat-box:hover p {
    color: #fff;
  }

  .dashboard-stat-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: #081828;
    margin-bottom: 5px;
  }

  .dashboard-stat-box p {
    font-size: 13px;
    color: #7E8890;
    margin: 0;
  }

  /* ─── Activity Section ─── */
  .dashboard-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .dashboard-header-flex h3 {
    font-size: 20px;
    font-weight: 700;
    color: #081828;
    margin: 0;
  }

  .dashboard-action-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
  }

  .dashboard-action-btn.btn-primary {
    background: #2042e3;
    border: none;
    color: #fff;
  }

  .dashboard-action-btn.btn-outline {
    background: transparent;
    border: 1px solid #2042e3;
    color: #2042e3;
  }

  .dashboard-action-btn.btn-outline:hover {
    background: #2042e3;
    color: #fff;
  }

  /* Recent Documents Table */
  .dashboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .dashboard-table th {
    font-size: 14px;
    font-weight: 600;
    color: #081828;
    padding: 12px 15px;
    border-bottom: 2px solid #f0f0f0;
    text-align: left;
  }

  .dashboard-table td {
    padding: 15px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
  }

  .dashboard-table tr:last-child td {
    border-bottom: none;
  }

  .dashboard-doc-title {
    font-weight: 600;
    color: #081828;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .dashboard-doc-title i {
    color: #2042e3;
    font-size: 18px;
  }

  .status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
  }

  .status-badge.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
  }

  .status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
  }

  .status-badge.action-needed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
  }

  .dashboard-table-action {
    color: #2042e3;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
  }

  .dashboard-table-action:hover {
    text-decoration: underline;
  }

  /* ==========================================================================
   Category Page Styles
   ========================================================================== */

  /* Stats Bar */
  .cat-stats-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    margin-top: -60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 9;
    padding: 40px 20px;
  }

  .cat-stats-bar .stat-item {
    text-align: center;
  }

  .cat-stats-bar .stat-item h4 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    font-weight: 800;
  }

  .cat-stats-bar .stat-item p {
    font-size: 14px;
    color: #7E8890;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
  }

  /* Section Head */
  .cat-section-head h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .cat-section-head p {
    font-size: 16px;
    color: #7E8890;
  }

  /* Search */
  .cat-search .input-group {
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .cat-search .form-control {
    border: none;
    box-shadow: none;
    padding-left: 20px;
    height: 50px;
  }

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

  .cat-search .btn-search {
    background: #2042e3;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all .3s;
  }

  .cat-search .btn-search:hover {
    background: #081828;
  }

  /* Filter Tabs */
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .tab-pill {
    padding: 8px 20px;
    background: #f4f6fa;
    color: #081828;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all .3s;
  }

  .tab-pill:hover,
  .tab-pill.active {
    background: #2042e3;
    color: #fff;
    border-color: #2042e3;
  }

  /* Category Grid */
  .single-cat {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    display: block;
    transition: all .3s;
    height: 100%;
  }

  .single-cat:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #2042e3;
  }

  .single-cat i {
    font-size: 45px;
    color: #2042e3;
    margin-bottom: 20px;
    display: inline-block;
    transition: all .3s;
  }

  .single-cat:hover i {
    transform: scale(1.1);
  }

  .single-cat h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: all .3s;
    color: #081828;
    font-weight: 700;
  }

  .single-cat p {
    font-size: 14px;
    color: #7E8890;
    margin-bottom: 15px;
  }

  .doc-badge {
    display: inline-block;
    background: rgba(32, 66, 227, 0.1);
    color: #2042e3;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
  }

  .popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4c60;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 76, 96, 0.3);
  }

  /* CTA Banner */
  .cat-cta {
    background: #2042e3;
    border-radius: 8px;
    padding: 50px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
  }

  .cat-cta h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .cat-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cat-cta .btn-white {
    display: inline-block;
    background: #fff;
    color: #2042e3;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 15px;
    transition: all .3s;
  }

  .cat-cta .btn-white:hover {
    background: #081828;
    color: #fff;
  }

  .cat-cta .btn-outline-white {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all .3s;
  }

  .cat-cta .btn-outline-white:hover {
    background: #fff;
    color: #2042e3;
  }

  /* ==========================================================================
   Responsive Updates for Dashboard & Categories
   ========================================================================== */

  @media (max-width: 991px) {

    /* Dashboard */
    .dashboard-section {
      padding: 40px 0;
    }

    .dashboard-card {
      padding: 20px;
    }

    /* Categories */
    .cat-stats-bar {
      margin-top: -40px;
      margin-bottom: 40px;
      padding: 20px 10px;
    }

    .cat-stats-bar .stat-item {
      margin-bottom: 15px;
    }

    .categories-page .breadcrumbs {
      padding-top: 120px;
      padding-bottom: 80px;
    }
  }


  @media (max-width: 767px) {

    /* Dashboard */
    .dashboard-user-avatar {
      width: 80px;
      height: 80px;
      font-size: 30px;
    }

    .dashboard-stat-box h4 {
      font-size: 20px;
    }

    .dashboard-header-flex {
      flex-direction: column;
      align-items: flex-start;
    }

    .dashboard-header-flex>div {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .dashboard-action-btn {
      flex: 1;
      text-align: center;
      padding: 10px;
    }

    .dashboard-table th,
    .dashboard-table td {
      padding: 10px;
    }

    .dashboard-table {
      display: block;
      width: 100%;
      overflow-x: auto;
    }

    /* Categories */
    .cat-stats-bar {
      margin-top: -30px;
      margin-bottom: 30px;
    }

    .cat-stats-bar .stat-item h4 {
      font-size: 24px;
    }

    .cat-stats-bar .stat-item p {
      font-size: 13px;
    }

    .cat-stats-bar .row>div:nth-child(even) {
      border-right: none !important;
    }

    .cat-stats-bar .row>div:nth-child(1),
    .cat-stats-bar .row>div:nth-child(2) {
      border-bottom: 1px solid #dee2e6;
      padding-bottom: 15px !important;
    }

    .cat-section-head h2 {
      font-size: 28px;
    }

    .cat-search {
      margin-top: 20px;
    }

    .cat-search .btn-search {
      padding: 0 15px;
    }

    .filter-tabs {
      justify-content: center;
    }

    .tab-pill {
      padding: 6px 15px;
      font-size: 13px;
    }

    .single-cat {
      padding: 20px 15px;
    }

    .cat-cta {
      padding: 30px 20px;
      margin-top: 40px;
    }

    .cat-cta h3 {
      font-size: 24px;
    }

    .cat-cta .btn-white,
    .cat-cta .btn-outline-white {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
    }

    .categories-page .breadcrumbs {
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .categories-page .breadcrumbs .page-title {
      font-size: 24px !important;
      color: #081828 !important;
    }
  }

  /* ===== Premium Checkbox Moved from dashboard-shared.css ===== */
  .dash-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 12px;
  }

  .dash-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .dash-checkbox-custom {
    position: relative;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
  }

  .dash-checkbox-group:hover .dash-checkbox-input~.dash-checkbox-custom {
    border-color: #1a56db;
    background-color: #f9fafb;
  }

  .dash-checkbox-input:checked~.dash-checkbox-custom {
    background-color: #1a56db;
    border-color: #1a56db;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
  }

  .dash-checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .dash-checkbox-input:checked~.dash-checkbox-custom:after {
    display: block;
  }

  .dash-checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    font-weight: 500;
  }

  .dash-checkbox-label a {
    color: #1a56db;
    font-weight: 600;
    text-decoration: none;
  }

  .dash-checkbox-label a:hover {
    text-decoration: underline;
  }

  /* Custom Logo Styles */
  .navbar-brand.logo {
    text-decoration: none;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    background: #1a56db;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px;
  }

  .logo-icon i {
    font-size: 20px;
  }

  .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #081828;
    letter-spacing: -0.5px;
  }

  .logo-text span {
    color: #1a56db;
  }

  /* Footer Logo Styles */
  .footer-logo {
    text-decoration: none;
  }

  .footer-logo-icon {
    width: 32px;
    height: 32px;
    background: #1a56db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
  }

  .footer-logo-icon i {
    font-size: 16px;
  }

  .footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #081828;
  }

  .footer-logo-text span {
    color: #1a56db;
  }

  /* Footer Enhancements */
  .support-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .support-info h4 {
    color: #081828;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .support-info p {
    color: #7E8890;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .support-phone {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .support-phone:hover {
    color: #3b82f6;
  }

  .footer-brand {
    color: #1a56db;
    text-decoration: none;
    font-weight: 600;
  }

  .footer-brand:hover {
    color: #3b82f6;
  }

  .license-info {
    color: #7E8890;
    font-size: 12px;
    margin-top: 5px;
  }
}

/* Ultra-Compact Theme-Integrated Breadcrumbs */
.breadcrumbs {
  padding: 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 74, 173, 0.1);
}

.breadcrumbs::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  z-index: -1;
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 45px;
  padding: 8px 0;
}

.breadcrumbs .page-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.breadcrumb-path {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 8px;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.breadcrumb-link:hover {
  color: #ffffff;
}

.breadcrumb-link i {
  margin-right: 5px;
  font-size: 13px;
  color: #ffffff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  display: flex;
  align-items: center;
}

.breadcrumb-current {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive Refinements */
@media (max-width: 768px) {
  .breadcrumb-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 5px;
  }

  .breadcrumb-path {
    width: 100%;
  }
}

/* ==========================================================================
   Category List View & Template Cards
   ========================================================================== */
.list-view-section {
  padding: 60px 0;
  background: #f8fafc;
}

.sidebar-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.sidebar-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.type-filter li {
  margin-bottom: 8px;
}

.type-filter li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.type-filter li a:hover,
.type-filter li a.active {
  background: rgba(0, 74, 173, 0.05);
  color: #004aad;
}

.type-filter .count {
  font-size: 12px;
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 20px;
  color: #94a3b8;
}

.type-filter li a.active .count {
  background: #004aad;
  color: #fff;
}

.related-cat li a {
  padding: 8px 0;
  color: #64748b;
  font-size: 14px;
  display: block;
}

.related-cat li a:hover {
  color: #004aad;
  transform: translateX(5px);
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sort-by select {
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
}

.template-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 74, 173, 0.1);
}

.accent-strip {
  height: 4px;
  background: linear-gradient(90deg, #004aad, #00c6ff);
  width: 100%;
}

.card-body-inner {
  padding: 24px;
  display: flex;
  gap: 20px;
}

.doc-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 74, 173, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004aad;
  font-size: 24px;
  flex-shrink: 0;
}

.card-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-info h4 a {
  color: #0f172a;
}

.card-info p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.6;
}

.meta-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meta-tags li {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-actions {
  padding: 16px 24px;
  background: #fbfcfd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
}

.price-sale {
  font-size: 20px;
  font-weight: 800;
  color: #004aad;
  margin-right: 8px;
}

.price-mrp {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 8px;
}

.price-save {
  font-size: 12px;
  color: #10b981;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.btn-save {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-save:hover {
  background: #f1f5f9;
  color: #ef4444;
}

.btn-view {
  background: #004aad;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-view:hover {
  background: #003a8c;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
}

/* ==========================================================================
   Payment Page Styles
   ========================================================================== */
/* ==========================================================================
   Payment & View Template Styles
   ========================================================================== */
.vt-section {
  padding: 60px 0;
  background: #f8fafc;
}

.vt-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  margin-bottom: 24px;
}

.vt-card-header {
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.vt-doc-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 74, 173, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004aad;
  font-size: 20px;
  flex-shrink: 0;
}

.vt-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.vt-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.vt-card-body {
  padding: 24px;
}

.vt-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.vt-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vt-feature-item {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vt-feature-item i {
  color: #10b981;
}

.vt-step-header {
  padding: 20px 24px;
  background: #fbfcfd;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.vt-step-badge {
  width: 28px;
  height: 28px;
  background: #004aad;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.vt-step-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.vt-booking-panel {
  padding: 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

.vt-calendar-col {
  border-right: 1px solid #f1f5f9;
  padding-right: 30px;
}

.flatpickr-calendar {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

.vt-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 15px;
}

.vt-slots-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.vt-slots-date {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.vt-slot-legend {
  display: flex;
  gap: 12px;
}

.legend-item {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
}

.legend-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-item.available::before {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.legend-item.booked::before {
  background: #fee2e2;
}

.legend-item.selected::before {
  background: #004aad;
}

.vt-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

.vt-slot-row {
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.vt-slot-row:hover:not(:disabled) {
  border-color: #004aad;
  background: rgba(0, 74, 173, 0.05);
}

.vt-slot-row.selected {
  background: #004aad !important;
  border-color: #004aad !important;
  color: #fff !important;
}

.vt-slot-row.booked {
  background: #fef2f2;
  border-color: #fee2e2;
  color: #f87171;
  cursor: not-allowed;
}

.slot-time {
  font-weight: 700;
  font-size: 13px;
}

.slot-status {
  font-size: 10px;
  opacity: 0.7;
}

.vt-summary-wrap {
  position: sticky;
  top: 100px;
}

.vt-summary-card {
  padding: 24px;
}

.vt-summary-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.vt-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
  color: #64748b;
}

.vt-summary-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 15px 0;
}

.vt-price-mini {
  display: flex;
  gap: 8px;
  align-items: center;
}

.vt-price-mrp {
  text-decoration: line-through;
  font-size: 12px;
}

.vt-price-sale {
  color: #004aad;
  font-weight: 800;
}

.vt-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.vt-savings-note {
  margin-top: 15px;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  font-size: 12px;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

.vt-pay-btn {
  width: 100%;
  padding: 16px;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
  margin-bottom: 15px;
}

.vt-pay-btn:hover {
  background: #003a8c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 74, 173, 0.25);
}

.vt-secure-note {
  color: #64748b;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.vt-trust-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vt-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

.vt-trust-item i {
  color: #004aad;
}

/* Booking Details Box (Payment Page) */
.booking-details-box {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  margin-bottom: 24px;
}

.payment-btn-premium {
  width: 100%;
  padding: 16px;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.payment-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .vt-booking-panel {
    grid-template-columns: 1fr;
  }

  .vt-calendar-col {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding-right: 0;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vt-summary-wrap {
    position: static;
  }
}

/* Responsive Table / List View */
@media (max-width: 768px) {
  .template-card {
    flex-direction: column;
  }

  .card-body-inner {
    padding: 15px;
    gap: 12px;
  }

  .doc-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .card-actions {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn-view {
    width: 100%;
    text-align: center;
  }

  .list-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .sort-by {
    width: 100%;
  }

  .sort-by select {
    width: 100%;
  }
}

/* ==========================================================================
   About Page & Sections
   ========================================================================== */
.section {
  padding: 80px 0;
}

.about-us .content-left .single-img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about-us .content-right h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-us .single-list {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.about-us .single-list:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 74, 173, 0.08);
}

.about-us .single-list i {
  width: 45px;
  height: 45px;
  background: rgba(0, 74, 173, 0.08);
  color: #004aad;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.list-bod h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.list-bod p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Apply Process */
.apply-process {
  background: #f8fafc;
}

.process-item {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.process-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 74, 173, 0.1);
}

.process-item i {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  box-shadow: 0 8px 16px rgba(0, 74, 173, 0.2);
}

.process-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-table .section-title span {
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.single-table {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.single-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.single-table.active {
  border-color: #004aad;
}

.table-head .title {
  font-size: 14px;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.table-head .amount {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
}

.table-head .duration {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  margin-left: 5px;
}

.table-list li {
  padding: 10px 0;
  color: #64748b;
  font-size: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.table-list li:last-child {
  border: none;
}

.single-table .button {
  margin-top: 35px;
}

.single-table .btn {
  width: 100%;
  background: #f1f5f9;
  color: #0f172a;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s;
}

.single-table.active .btn,
.single-table .btn:hover {
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.2);
}

/* ==========================================================================
   View Application & Dashboard Panels
   ========================================================================== */
.view-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 20px;
}

.view-app-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.view-app-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 74, 173, 0.2);
}

.view-app-info h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.view-app-id {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.view-app-meta-chips {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.app-meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.app-meta-chip i {
  color: #004aad;
}

.app-meta-chip strong {
  color: #0f172a;
  font-weight: 700;
}

/* Dash Panels */
.dash-panel {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.dash-panel-header {
  padding: 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.dash-panel-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.dash-panel-header h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.dash-panel-header p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.dash-panel-body {
  padding: 24px;
}

/* Timeline Components */
.timeline {
  position: relative;
  padding-left: 35px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f1f5f9;
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -35px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e2e8f0;
  z-index: 1;
}

.timeline-item.completed .timeline-marker {
  background: #10b981;
  border-color: #10b981;
}

.timeline-item.active .timeline-marker {
  background: #fff;
  border-color: #004aad;
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.15);
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.timeline-date {
  font-size: 12px;
  color: #94a3b8;
}

.timeline-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.6;
}

/* Doc Item in dashboard */
.doc-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.3s;
}

.doc-item:hover {
  background: #fff;
  border-color: #004aad;
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.08);
}

.dash-view-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.dash-view-btn:hover {
  background: #004aad;
  color: #fff;
  border-color: #004aad;
}

/* ==========================================================================
   Categories Page Styles
   ========================================================================== */
.cat-stats-bar {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 50px;
  border: 1px solid #f1f5f9;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 28px;
  font-weight: 800;
  color: #004aad;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.cat-section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.cat-section-head p {
  color: #64748b;
  font-size: 15px;
}

.cat-search .input-group {
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.cat-search .form-control {
  border: none;
  box-shadow: none;
  padding-left: 15px;
  font-size: 15px;
}

.btn-search {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-search:hover {
  background: #003a8c;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2);
}

.filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.tab-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  transition: all 0.2s;
}

.tab-pill:hover,
.tab-pill.active {
  background: #004aad;
  color: #fff;
  border-color: #004aad;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.15);
}

.cat-grid {
  margin-bottom: 60px;
}

.single-cat {
  display: block;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.single-cat:hover {
  transform: translateY(-8px);
  border-color: #004aad;
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.1);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #004aad;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 35px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-cat i {
  width: 70px;
  height: 70px;
  background: rgba(0, 74, 173, 0.05);
  color: #004aad;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.single-cat:hover i {
  background: #004aad;
  color: #fff;
  transform: scale(1.1);
}

.single-cat h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.single-cat p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.doc-badge {
  font-size: 12px;
  font-weight: 700;
  color: #004aad;
  background: rgba(0, 74, 173, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
}

.cat-cta {
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  padding: 60px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 74, 173, 0.2);
}

.cat-cta h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.cat-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-white {
  background: #fff;
  color: #004aad !important;
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  margin: 10px;
  transition: all 0.3s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: transparent;
  color: #fff !important;
  padding: 13px 35px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin: 10px;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .cat-cta {
    padding: 40px 20px;
  }

  .cat-cta h3 {
    font-size: 24px;
  }
}

/* About Page Premium Styles */
.about-us .single-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about-us .single-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.about-us .content-right h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 25px;
}

.about-us .single-list {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.about-us .single-list:hover {
  border-color: #004aad;
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.06);
}

.about-us .single-list i {
  background: linear-gradient(135deg, #004aad 0%, #00c6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
}

/* Apply Process */
.process-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.process-item:hover {
  transform: translateY(-10px);
  border-color: #004aad;
  box-shadow: 0 15px 40px rgba(0, 74, 173, 0.08);
}

.process-item i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f8fafc;
  border-radius: 18px;
  font-size: 28px;
  color: #004aad;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s;
}

.process-item:hover i {
  background: #004aad;
  color: #fff;
}

/* Pricing Table */
.single-table {
  background: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.single-table:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-color: #004aad;
}

.single-table .table-head .title {
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.single-table .price .amount {
  font-size: 42px;
  font-weight: 900;
  color: #004aad;
}

.single-table .price .duration {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-left: 5px;
}

.single-table .table-list li {
  color: #475569;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}

.single-table.recommended {
  border-color: #004aad;
  background: #f8fafc;
}

.single-table.recommended .tag {
  background: #004aad;
  color: #fff;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 700;
}

.leave-reason-wrapper {
  max-width: 250px;
}

.leave-reason-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  text-decoration: underline;
}

.read-more-btn:hover {
  color: #1d4ed8;
}

.modal_loader_div {
  position: absolute;
  inset: 0;
  z-index: 1056;
  background: rgba(255, 255, 255, .6);

  display: none;
  /* hidden by default */
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
}

.modal_loader_div.active {
  display: flex;
  /* enable flex + centering */
}

.modal_loader_div .spinner-border {
  width: 3rem;
  height: 3rem;
}

.minheight {
  min-height: 30vh;
}

.dash-btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #16a34a;
  border: 1.5px solid #e2e8f0;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.dash-btn-success:hover {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.badge.bedge-success {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}
/* Extracted from prepare.blade.php */
        .view-app-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .view-app-title-wrap {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .view-app-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            flex-shrink: 0;
        }

        .view-app-info h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1e293b;
        }

        .view-app-id {
            font-size: 13px;
            color: #64748b;
        }

        /* Metadata Chips */
        .view-app-meta-chips {
            display: flex;
            gap: 20px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .app-meta-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
            background: #f1f5f9;
            padding: 4px 12px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .app-meta-chip i {
            font-size: 14px;
            color: #3b82f6;
        }

        .app-meta-chip strong {
            color: #1e293b;
            font-weight: 700;
        }

        /* Details Grid */
        .app-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 24px;
        }

        .detail-item {
            background: #f8fafc;
            padding: 16px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }

        .detail-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #94a3b8;
            margin-bottom: 6px;
            display: block;
        }

        .detail-value {
            font-size: 15px;
            font-weight: 600;
            color: #334155;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 32px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e2e8f0;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-marker {
            position: absolute;
            left: -32px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #cbd5e1;
            z-index: 1;
        }

        .timeline-item.completed .timeline-marker {
            background: #22c55e;
            border-color: #22c55e;
        }

        .timeline-item.active .timeline-marker {
            background: #3b82f6;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
        }

        .timeline-content {
            padding-top: 0;
        }

        .timeline-title {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
        }

        .timeline-date {
            font-size: 12px;
            color: #94a3b8;
        }

        .timeline-desc {
            font-size: 13px;
            color: #64748b;
            margin-top: 6px;
        }

        /* Document List */
        .doc-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .doc-item {
            display: flex;
            align-items: center;
            padding: 16px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .doc-item:hover {
            border-color: #cbd5e1;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .doc-icon {
            width: 44px;
            height: 44px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #64748b;
            margin-right: 16px;
        }

        .doc-info {
            flex: 1;
        }

        .doc-name {
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            display: block;
            margin-bottom: 2px;
        }

        .doc-meta {
            font-size: 12px;
            color: #94a3b8;
        }

        .dash-view-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #f8fafc;
            color: #64748b;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }

        .dash-view-btn:hover {
            background: #4f46e5;
            color: #fff;
            border-color: #4f46e5;
        }

        /* Action Panels */
        .app-steps-panel {
            display: none;
            padding: 0;
            margin-top: 0;
            transition: all 0.3s ease;
        }

        .app-steps-panel.open {
            display: block;
            margin-bottom: 30px;
        }

        .btn-app-resched:hover,
        .btn-app-prepare:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            filter: brightness(0.95);
        }

        .btn-app-resched.active {
            background: #d97706 !important;
            color: #fff !important;
        }

        .btn-app-prepare.active {
            background: #2563eb !important;
            color: #fff !important;
        }

        /* Step Styles Refinement */
        .step-heading {
            padding: 24px 30px;
            font-size: 18px;
            font-weight: 800;
            color: #1e293b;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-track {
            padding: 40px 30px;
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .step-footer {
            padding: 20px 30px;
            background: #f8fafc;
            border-top: 1px solid #f1f5f9;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }
