/* =====================================================
Template Name   : Jobox
Description     : Job Board And Hiring HTML5 Template
Author          : Themesland
Version         : 1.3
=======================================================*/


/*=====================================================
Table of contents
=======================================================
1. Google fonts
2. Theme variables
3. General css
4. Preloader
5. Theme default css
6. Site title css
7. Margin & padding
8. Theme button
9. Scroll-top css
10. Nav menu css
11. Multi level dropdown menu
12. Hero css 
13. Play btn
14. Search css
15. Category css
16. Career css
17. Job css
18. Job sidebar
19. Job sort
20. Job single
21. Price range slider
22. Employer css
23. Employer single css 
24. Candidate css 
25. Candidate single css 
26. Location css 
27. Banner css 
28. About css 
29. Service css 
30. Service single
31. Skill css
32. Feature css 
33. Video css 
34. Step/process css 
35. Choose css 
36. Testimonial css 
37. Counter css 
38. Cta-area css 
39. Portfolio css 
40. Portfolio single
41. Blog css 
42. Blog single css
43. Sidebar css
44. Partner css
45. Contact us css 
46. Quote css
47. Team css 
48. Pricing css 
49. Faq css 
50. Breadcrumb css
51. Auth css
52. User profile css
53. Coming soon css  
54. Error css 
55. Terms/privacy css 
56. Footer css 
57. Home 2
58. Home 3
59. Home 4
60. Home 5
=======================================================*/


/* ===================
1. Google fonts
====================== */

@import url('../../../css2');


/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --theme-color: #EFBD4c;
  --theme-bg-light: #F2F6FD;
  --body-text-color: #757F95;
  --color-white: #FFFFFF;
  --color-dark: #fff;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --transition: all .5s ease-in-out;
  --footer-bg: #F2F6FD;
  --footer-text-color: #66789C;
}


/* ===================
3. General css
====================== */

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color: #09325e;
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #EFBD4c;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #10225e;
  margin: 0px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.4;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/* ===================
4. Preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader {
  position: absolute;
  text-align: center;
  width: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--theme-color);
  margin: 35px 10px;
}

.loader span:nth-child(1) {
  animation: loader-bounce 1s ease-in-out infinite;
}

.loader span:nth-child(2) {
  animation: loader-bounce 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3) {
  animation: loader-bounce 1s ease-in-out 0.66s infinite;
}

@keyframes loader-bounce {

  0%,
  75%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}




/* ===================
5. Theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: var(--theme-bg-light);
}



/* ===================
6. Site title css
====================== */

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  padding-left: 4px;
}

.site-title-tagline::after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  border-radius: 50px;
  height: 18px;
  width: 100%;
  left: 0;
  bottom: -7px;
  opacity: 0.1;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 35px;
  color: #10225e;
  margin-top: 4px;
  margin-bottom: 0;
}

.site-title span {
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 5px;
  font-size: 17px;
  text-transform: capitalize;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: var(--theme-color);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}


@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
7. Margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 40px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}



/* ===================
8. Theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: #0B1A45;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: rgba(60, 101, 245, .1);
  color: var(--theme-color);
  box-shadow: none;
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}




/* ===================
9. Scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 25px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top {
    bottom: 80px;
  }
}




/* ===================
10. Nav menu css
====================== */

.main {
  margin-top: -7rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 20px 0 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 8px;
    border: none;
    left: -15px;
    border-radius: 12px;
    background: var(--color-white);
    width: 220px;
    box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(224, 232, 252, .5);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0px 10px 15px;
    color: #10225e;
    position: relative;
    text-transform: capitalize;
    transition: var(--transition);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 30px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 22.5px;
    width: 0;
    height: 4px;
    border-radius: 10px;
    background: var(--theme-color);
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    width: 10px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 30px;
  }

  .header-nav-link {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-link:hover {
    color: var(--theme-color);
  }

  .header-nav-link.search-box-outer {
    font-size: 18px;
  }

  #main_nav {
    /* justify-content: flex-end; */
  }

}


/*bootstrap nav*/
.navbar {
  /* background: transparent; */
  /* padding-top: 20px; */
  /* padding-bottom: 20px; */
  z-index: 999;
  background-color: #10225e;
}

.navbar.fixed-top {
  background: #10225e;
  /* padding-top: 10px; */
  /* padding-bottom: 10px; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

.navbar.fixed-top .nav-item .nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link {
  color: var(--color-dark);
}

.navbar.fixed-top .header-nav-link:hover {
  color: var(--theme-color);
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
  color: var(--theme-color);
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 160px;
}

.navbar .header-btn {
  display: flex;
  gap: 10px;
}

/* dropdown toggler */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    /* background-color: var(--color-white); */
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: var(--color-dark);
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

  .mobile-menu-link:hover {
    color: var(--theme-color);
  }

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 500;
  }

  .navbar.fixed-top .mobile-menu-link {
    color: var(--color-dark);
  }

  .navbar.fixed-top .navbar-toggler-btn-icon {
    color: var(--color-dark);
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .header-nav-right {
    display: none;
  }

}



/* ===========================
11. Multi level dropdown menu
============================== */

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 12px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}




/* ===================
12. Hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 220px;
  padding-bottom: 150px;
  background: var(--theme-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single .hero-content .hero-title {
  color: #10225e;
  font-size: 45px;
  margin: 20px 0;
  font-weight: 800;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: var(--theme-color);
  position: relative;
  z-index: 1;
}

.hero-single .hero-content .hero-title span::after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  height: 25px;
  width: 100%;
  left: 0;
  bottom: -6px;
  z-index: -1;
  opacity: 0.1;
}

.hero-single .hero-content .hero-sub-title {
  color: var(--theme-color);
  font-size: 22px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
}

.hero-single .hero-content p {
  color: #10225e;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-info-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-info-img {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.hero-info-img span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  overflow: hidden;
  margin-left: -10px;
}

.hero-info-img span img {
  border-radius: 50%;
}

.hero-info-content h6 {
  font-weight: 600;
}

.hero-info-content h6 span {
  color: var(--theme-color);
  font-weight: 700;
}

.hero-single .hero-img img {
  position: absolute;
  bottom: 0;
  width: 46%;
  z-index: 2;
}

.hero-single .hero-img-shape {
  position: absolute;
  bottom: 150px;
  margin-left: 100px;
  width: 70%;
  z-index: 1;
}

.hero-shape img {
  position: absolute;
}

.hero-shape .hero-shape-1 {
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero-shape .hero-shape-2 {
  left: 40%;
  top: 20%;
  width: 100px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-3 {
  right: 10%;
  top: 20%;
  width: 50px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-4 {
  left: 22%;
  top: 0;
  width: 120px;
  opacity: .1;
  z-index: -1;
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
  .hero-single {
    padding-top: 300px;
  }

  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-img {
    display: none;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px;
  }

  .search-form-wrapper {
    padding: 15px 20px !important;
  }

  .search-form-wrapper .theme-btn {
    width: 100%;
  }

}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

  .hero-shape .hero-shape-2 {
    left: 10%;
  }

  .search-form-wrapper div[class*='col-'] {
    border-right: none !important;
  }

  .search-form-wrapper .theme-btn {
    margin-top: 20px;
  }
}



/* =====================
13. Play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}




/* ===================
14. Search css
====================== */

.search-form {
  position: relative;
}

.search-form-wrapper {
  background: var(--color-white);
  border-radius: 15px;
  padding: 10px 20px 8px 15px;
  box-shadow: 0px 10px 20px rgb(10 42 105 / 7%);
}

.search-form-wrapper div[class*='col-'] {
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.search-form-wrapper div[class*='col-']:nth-last-child(1),
.search-form-wrapper div[class*='col-']:nth-last-child(2) {
  border: none;
}

.search-form .form-group-icon {
  position: relative;
}

.search-form .form-group-icon i {
  position: absolute;
  left: 10px;
  top: 16px;
}

.search-form .form-control {
  padding: 12px 10px 12px 35px;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  outline: none;
}

.search-form .nice-select {
  width: 100%;
  height: 50.5px;
  line-height: 50px;
  border-radius: 0px;
  padding-left: 30px;
  font-size: 16px;
  border: none;
  outline: none;
}

.search-form .nice-select:after {
  height: 8px;
  width: 8px;
  margin-top: -6px;
}

.search-form .nice-select .list {
  width: 100%;
  background: var(--color-white);
  border-radius: 12px;
  border: none;
  box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
}

.search-form .nice-select .option.focus,
.search-form .nice-select .option.selected.focus,
.search-form .nice-select .option:hover {
  background: #021e41;
  color: var(--theme-color);
}

.search-form-wrapper .theme-btn {
  padding: 10px 14px;
}

.popular-search {
  margin-top: 30px;
}

.popular-search span {
  font-weight: 600;
  color: #10225e;
  margin-right: 10px;
}

.popular-search a {
  color: #4F5E64;
}

.popular-search a:hover {
  color: var(--theme-color);
}

.search-area {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.search-area .nice-select,
.search-area .form-control {
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.search-area .search-form-wrapper {
  padding: 20px 30px;
}

.search-area .search-form-wrapper div[class*='col-'] {
  border: none;
}

.search-area label {
  margin-bottom: 5px;
  color: var(--color-dark);
}



/* ===================
15. Category css
====================== */

.category-area {
  position: relative;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  background: var(--color-white);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.category-item:hover {
  transform: translateY(-7px);
}

.category-icon {
  background: rgba(60, 101, 245, .1);
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 40px;
  color: var(--theme-color);
  border-radius: 15px;
  transition: var(--transition);
}

.category-item:hover .category-icon {
  background: #10225e;
  color: #d9a441;
}

.category-item h6 {
  font-size: 17px;
  margin-bottom: 3px;
  transition: var(--transition);
}

.category-item p {
  font-weight: 500;
  color: var(--body-text-color);
  font-size: 15px;
  transition: var(--transition);
}

.category-item p:hover,
.category-item h6:hover {
  color: var(--theme-color);
}



/* ===================
16. Career css
====================== */

.career-area {
  position: relative;
}

.career-img img {
  border-radius: 15px;
}

.career-img-3 {
  margin-top: 24px;
}

.career-right {
  margin-left: 20px;
}

.career-list {
  margin-top: 20px;
  margin-bottom: 35px;
}

.career-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.career-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

@media all and (max-width: 991px) {
  .career-right {
    margin-top: 60px;
  }
}

@media all and (max-width: 767px) {
  .career-img-1 {
    margin-bottom: 24px;
  }
}




/* ===================
17. Job css
====================== */

.job-area {
  position: relative;
}

.job-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition);
}

.job-item:hover {
  transform: translateY(-7px);
}

.job-bookmark {
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--theme-color);
  border-radius: 50px;
}

.job-bookmark:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.job-top {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.job-title a {
  color: #10225e;
}

.job-title a:hover {
  color: var(--theme-color);
}

.job-employer {
  margin-top: 5px;
  color: #10225e;
  font-weight: 500;
}

.job-employer:hover {
  color: var(--theme-color);
}

.job-img {
  width: 60px;
}

.job-img img {
  border-radius: 15px;
}

.job-info-list li {
  display: inline-block;
  margin: 0 10px 8px 0;
}

.job-skill {
  margin-top: 5px;
}

.job-skill a {
  background: rgba(60, 101, 245, .1);
  border-radius: 50px;
  padding: 2px 12px;
  color: var(--theme-color);
  font-size: 14px;
}

.job-skill a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.job-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, .04);
}

.job-salary-amount {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 600;
}

.job-salary-type {
  font-size: 15px;
}

.job-bottom .theme-btn {
  padding: 7px 15px;
}

/* job grid */
.job-grid .job-item {
  box-shadow: var(--box-shadow);
}

.job-grid2 .search-form-wrapper,
.job-grid2 .job-sort,
.job-grid2 .job-sidebar {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-grid2 .job-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-grid2 .job-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-grid2 .job-img img {
  border-radius: 50%;
}

.job-grid2 .job-top {
  margin-bottom: 15px;
}

/* job list */
.job-list .job-item {
  box-shadow: var(--box-shadow);
}

.job-list2 .search-form-wrapper,
.job-list2 .job-sort,
.job-list2 .job-sidebar {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-list2 .job-item {
  display: flex;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-list2 .job-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-list2 .job-img img {
  border-radius: 50%;
}

.job-list2 .job-top {
  margin-bottom: 15px;
}

@media all and (max-width: 991px) {
  .job-list2 .job-item {
    flex-direction: column;
    gap: 5px;
  }
}



/* ===================
18. Job sidebar
=================== */

.job-sidebar {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.job-sidebar-item {
  margin-bottom: 35px;
}

.job-sidebar-item:last-child {
  margin-bottom: 0;
}

.job-sidebar-title {
  font-size: 19px;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.job-sidebar .form-check-input {
  margin-top: 6px;
  box-shadow: none;
  border-color: #10225e;
}

.job-sidebar .form-check-input:focus {
  border-color: var(--theme-color);
}

.job-sidebar .form-check-label {
  width: 100%;
  color: #10225e;
}

.job-sidebar .form-check-label span {
  float: right;
}

.job-sidebar .form-check {
  margin: 12px 0;
}



/* ===================
19. Job sort
=================== */
.job-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  margin-bottom: 25px;
  padding: 10px 10px 10px 15px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.job-sort-list-grid a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #CED4DA;
  color: #10225e;
}

.job-sort-list-grid a.active {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.job-sort .nice-select {
  width: 100%;
  height: 46px;
  line-height: 44px;
  border-radius: 8px;
  padding-left: 15px;
  font-size: 16px;
  border-color: #CED4DA;
  color: var(--color-dark);
}

.job-sort .form-control:focus,
.job-sort .nice-select:focus {
  border-color: var(--theme-color);
}

.job-sort .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.job-sort .nice-select .option.focus,
.job-sort .nice-select .option.selected.focus,
.job-sort .nice-select .option:hover {
  background: #030836;
  color: var(--theme-color);
  border-radius: 8px;
}

.job-sort .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -6px;
  right: 15px;
}

@media all and (max-width: 767px) {
  .job-sort {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .job-sort-box {
    width: 100%;
  }

}



/* ===================
20. Job single
=================== */
.job-single {
  position: relative;
}

.job-single-img img {
  border-radius: 15px;
}

.job-single-title {
  margin-top: 25px;
  margin-bottom: 15px;
}

.job-single-info {
  margin-top: 25px;
}

.job-single-info h5 {
  margin-bottom: 15px;
}

.job-single-info ul li {
  margin: 8px 0;
  position: relative;
}

.job-single-info ul li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.job-location h5 {
  margin-top: 35px;
  margin-bottom: 20px;
}

.job-location iframe {
  width: 100%;
  height: 300px;
  border-radius: 15px;
}

.job-single-social-share {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.job-single-social-share span {
  color: var(--color-dark);
  font-weight: 600;
  margin-right: 10px;
}

.job-single-social-share a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  background: rgba(57, 101, 245, .1);
  color: var(--theme-color);
  margin: 0 2px;
}

.job-single-social-share a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.job-single .job-sidebar {
  padding: 30px;
}

.job-single-employer {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.job-single-employer img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
}

.job-single-employer-info a {
  color: var(--theme-color) !important;
}

.job-single-heading-btns {
  margin-top: 20px;
}

.job-single-heading-btns .theme-btn2 {
  margin-left: 8px;
}

.job-single-list {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.job-single-list h5 {
  margin-bottom: 25px;
}

.job-single-list li {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.job-single-list-icon {
  width: 30px;
  line-height: 38px;
  font-size: 25px;
  color: var(--theme-color);
}

.job-single-list-info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.job-employer-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.job-employer-contact h5 {
  margin-bottom: 15px;
}

.job-employer-contact li {
  margin: 8px 0;
}

.job-employer-contact li i {
  width: 20px;
}

.related-job {
  margin-top: 60px;
}

.related-job h4 {
  margin-bottom: 30px;
}

.related-job .job-item {
  box-shadow: var(--box-shadow);
}



/* =====================
21. Price range slider
===================== */

.price-range-slider {
  margin-bottom: 50px;
}

.price-range-slider .price-range-info {
  margin-bottom: 20px;
}

.priceRange {
  background: transparent;
  border: none;
  font-weight: 800;
  outline: none;
  color: var(--theme-color);
}

.price-range-slider label {
  color: var(--color-dark);
  font-weight: 500;
}

.price-range-slider .ui-slider-handle {
  top: -0.36em !important;
  border-radius: 50px;
  background: var(--color-white) !important;
  border: 4px solid var(--theme-color) !important;
  width: 1.1em;
  height: 1.1em;
  outline: none;
}

.price-range-slider .ui-widget.ui-widget-content {
  background: #E6E9EC;
  border: none;
  border-radius: 50px;
  padding: 0;
  height: 0.4em;
}

.price-range-slider .ui-widget-header {
  background: var(--theme-color);
}



/* ===================
22. Employer css
====================== */
.employer-area {
  position: relative;
}

.employer-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 25px;
  background: var(--color-white);
  position: relative;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: var(--transition);
  height: 90%;
  /* flex-direction: column; */
}

.employer-content {
  flex-grow: 1;
}

.employer-item:hover {
  transform: translateY(-7px);
}

.employer-bookmark {
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--theme-color);
  border-radius: 50px;
}

.employer-bookmark:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.employer-img {
  width: 60px;
}

.employer-img img {
  border-radius: 50px;
}

.employer-content h5 a {
  color: #10225e;
}

.employer-content h5 a:hover {
  color: var(--theme-color);
}

.employer-job {
  font-weight: 500;
  color: var(--theme-color);
  margin-top: 3px;
}

.employer-content p {
  margin-top: 8px;
}

.employer-content p i {
  color: var(--theme-color);
}

/* employer grid */
.employer-grid .employer-item {
  border: none;
  box-shadow: var(--box-shadow);
}

.employer-grid2 .employer-item {
  flex-direction: column;
}

.employer-grid2 .search-form-wrapper,
.employer-grid2 .job-sidebar,
.employer-grid2 .job-sort {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

/* employer list */
.employer-list .employer-item {
  border: none;
  box-shadow: var(--box-shadow);
}

.employer-list2 .employer-item {
  align-items: center;
}

.employer-list2 .employer-img {
  width: 100px;
}

.employer-list2 .employer-img img {
  border-radius: 15px;
}

.employer-list2 .search-form-wrapper,
.employer-list2 .job-sidebar,
.employer-list2 .job-sort {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}



/* ======================
23. Employer single css 
=========================*/

.employer-single {
  position: relative;
}

.employer-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.employer-heading-content {
  display: flex;
  gap: 20px;
}

.employer-heading-content img {
  width: 160px;
  height: 160px;
  border-radius: 15px;
}

.employer-heading-list {
  margin-top: 5px;
}

.employer-heading-list li {
  display: inline-block;
  margin-right: 10px;
}

.employer-heading-list li i {
  margin-right: 5px;
}

.employer-heading-rate {
  margin-top: 8px;
}

.employer-heading-rate i {
  color: #F5BE3D;
}

.employer-heading-tag {
  margin-top: 15px;
}

.employer-heading-tag a {
  background: var(--theme-bg-light);
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.employer-heading-tag a:hover {
  color: var(--theme-color);
}

.employer-gallery-item {
  position: relative;
  margin-bottom: 25px;
}

.employer-gallery-item img {
  border-radius: 15px;
}

.employer-gallery-item .gallery-link {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.employer-gallery-item:hover .gallery-link {
  opacity: 1;
  visibility: visible;
}

.employer-single-job .job-item {
  box-shadow: var(--box-shadow);
}

.employer-single .job-sidebar {
  padding: 30px;
}

.employer-overview ul {
  margin-top: 25px;
  margin-bottom: 30px;
}

.employer-overview li {
  margin: 8px 0;
  font-weight: 500;
}

.employer-overview li span {
  float: right;
  font-weight: normal;
}

.employer-overview li a {
  color: var(--theme-color);
}

.employer-location-map {
  margin-top: 30px;
}

.employer-location-map iframe {
  border-radius: 15px;
  margin-top: 20px;
  width: 100%;
  height: 250px;
}

.employer-social {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.employer-social-link {
  margin-top: 18px;
}

.employer-social-link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
  margin-right: 5px;
}

.employer-social-link a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.employer-heading-with-img {
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.employer-single-img img {
  border-radius: 15px;
}

.employer-heading-with-img .employer-heading {
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .employer-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .employer-heading-tag a:first-child {
    margin-bottom: 15px;
  }

  .employer-heading-content {
    flex-direction: column;
  }
}




/* ===================
24. Candidate css 
====================== */
.candidate-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.candidate-item:hover {
  transform: translateY(-7px);
}

.candidate-bookmark {
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--theme-color);
  border-radius: 50px;
}

.candidate-bookmark:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.candidate-bio {
  display: flex;
  align-items: center;
  gap: 14px;
}

.candidate-bio-content h5 a:hover {
  color: var(--theme-color);
}

.candidate-img {
  width: 95px;
}

.candidate-img img {
  border-radius: 50%;
}

.candidate-content p {
  margin-top: 15px;
}

.candidate-bio-rate i {
  font-size: 13px;
  color: #F5BE3D;
}

.candidate-bio-rate span {
  font-size: 13px;
  margin-left: 2px;
}

.candidate-skill {
  margin-top: 15px;
  margin-bottom: 20px;
}

.candidate-skill a {
  background: var(--theme-bg-light);
  padding: 2px 20px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
}

.candidate-skill a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.candidate-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.candidate-salary {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
}

.candidate-salary span {
  font-weight: normal;
  font-size: 15px;
  color: var(--body-text-color);
}

.candidate-bottom .theme-btn {
  padding: 6px 15px;
}

/* candidate grid */
.candidate-grid2 .candidate-item {
  flex-direction: column;
  box-shadow: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bio {
  flex-direction: column;
}

.candidate-grid2 .search-form-wrapper,
.candidate-grid2 .job-sidebar,
.candidate-grid2 .job-sort {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bottom {
  justify-content: center;
}

/* candidate list */
.candidate-list2 .candidate-item {
  align-items: center;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  justify-content: space-between;
}

.candidate-list2 .candidate-img {
  width: 100px;
}

.candidate-list2 .candidate-img img {
  border-radius: 15px;
}

.candidate-list2 .search-form-wrapper,
.candidate-list2 .job-sidebar,
.candidate-list2 .job-sort {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

@media all and (max-width: 767px) {
  .candidate-list2 .candidate-item {
    flex-direction: column;
    text-align: center;
  }

  .candidate-list2 .candidate-skill {
    padding: 20px 0;
  }

  .candidate-list2 .candidate-bio {
    flex-direction: column;
  }
}



/* ======================
25. Candidate single css 
======================== */
.candidate-single {
  position: relative;
}

.candidate-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.candidate-heading-content {
  display: flex;
  gap: 20px;
}

.candidate-heading-content img {
  width: 185px;
  height: 185px;
  border-radius: 15px;
}

.candidate-heading-list {
  margin-top: 5px;
}

.candidate-heading-list li {
  display: inline-block;
  margin-right: 10px;
}

.candidate-heading-list li i {
  margin-right: 5px;
}

.candidate-heading-rate {
  margin-top: 8px;
}

.candidate-heading-rate i {
  color: #F5BE3D;
}

.candidate-heading-tag {
  margin-top: 15px;
}

.candidate-heading-tag a {
  background: var(--theme-bg-light);
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.candidate-heading-tag a:hover {
  color: var(--theme-color);
}

.candidate-heading-with-img {
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.candidate-single-img img {
  border-radius: 15px;
}

.candidate-heading-with-img .candidate-heading {
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}

.candidate-skill-item {
  margin-bottom: 20px;
  position: relative;
}

.candidate-skill-item .skill-tag {
  margin-bottom: 10px;
  display: inline-block;
  color: var(--body-text-color);
  font-size: 15px;
  position: relative;
}

.candidate-skill-item .skill-box {
  width: 100%;
  height: 5px;
  background: #F1F1FA;
  border-radius: 50px;
  position: relative
}

.candidate-skill-item .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  background: var(--theme-color);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  width: 0;
}

.candidate-skill-item .skill-percentage {
  color: var(--body-text-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -35px;
}

.candidate-timeline-wrapper {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-timeline {
  margin-bottom: 50px;
  margin-left: 50px;
}

.candidate-timeline:last-child {
  margin-bottom: 0px;
}

.candidate-timeline-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 15px;
  border-radius: 50px;
  color: var(--theme-color);
  margin-left: 15px;
  background: rgba(60, 101, 245, .1);
}

.candidate-timeline-title {
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.candidate-timeline-title::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--theme-color);
  background: var(--color-white);
  border-radius: 50%;
  left: -50px;
  top: 3px;
}

.candidate-timeline-title::after {
  content: '';
  position: absolute;
  width: 22px;
  border-top: 3px solid var(--theme-color);
  left: -26px;
  top: 13px;
}

.candidate-timeline-sub-title {
  margin: 10px 0px;
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-color);
}

.candidate-timeline-discription p:last-child {
  margin-bottom: 0px;
}

.candidate-single .job-sidebar {
  padding: 35px;
}

.candidate-sidebar-btns a:first-child {
  margin-right: 8px;
}

.candidate-social {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.candidate-social-link {
  margin-top: 18px;
}

.candidate-social-link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
  margin-right: 5px;
}

.candidate-social-link a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

@media all and (max-width: 767px) {
  .candidate-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .candidate-heading-tag a:first-child {
    margin-bottom: 15px;
  }

  .candidate-heading-content {
    flex-direction: column;
  }
}



/* ===================
26. Location css 
====================== */

.location-area {
  position: relative;
}

.location-item {
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 25px;
  background: var(--color-white);
  transition: var(--transition);
}

.location-item:hover {
  transform: translateY(-7px);
}

.location-img img {
  border-radius: 15px;
  width: 100%;
}

.location-content {
  padding-top: 10px;
}

.location-content h5 {
  margin-bottom: 5px;
}

.location-content h5 a:hover {
  color: var(--theme-color);
}

.location-content-info {
  display: flex;
  gap: 15px;
  align-items: center;
}



/* ===================
27. Banner css 
====================== */

.banner-item {
  width: 100%;
  height: Auto;
  border-radius: 10px;
  position: relative;
}

.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

.banner-item img {
  border-radius: 10px;
  width: 100%;
}

.banner-item-content {
  position: absolute;
  top: 20px;
  right: 20px;
}

.banner-item-content h2 {
  color: var(--color-white);
}

.banner-item-content p {
  color: var(--color-white);
}

.banner-item-content a {
  padding: 6px 20px;
  color: var(--color-white);
  background: var(--theme-color);
  margin-top: 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.banner-item-content a:hover {
  background: var(--theme-color);
}

.banner-item2 .banner-item-content {
  top: unset;
  right: unset;
  left: 20px;
  bottom: 20px;
}

.banner-item3 .banner-item-content {
  top: unset;
  bottom: 20px;
}

@media all and (max-width: 991px) {
  .banner-item {
    margin-bottom: 25px;
  }
}




/* ===================
28. About css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  margin: 0 40px 0 20px;
}

.about-img img {
  border-radius: 15px;
}

.about-img::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #ECF0FE;
  border-radius: 50%;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-shape {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.about-right {
  position: relative;
  display: block;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.about-list li .about-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .about-icon span {
  font-size: 20px;
  color: var(--theme-color);
}


@media all and (max-width: 991px) {
  .about-left {
    margin-bottom: 60px;
  }
}



/* ===================
29. Service css 
====================== */

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  padding: 15px 15px 30px 15px;
  margin-top: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: var(--color-white);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.service-img {
  overflow: hidden;
  border-radius: 10px;
  margin-top: -30px;
}

.service-img img {
  border-radius: 12px;
}

.service-item:hover .service-img img {
  transform: scale(1.1) rotate(2deg);
  transition: var(--transition);
}

.service-content {
  position: relative;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: var(--color-white);
  border-radius: 30px 0 30px 0;
  margin: -45px 0 0 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  position: relative;
  transition: var(--transition);
}

.service-icon i {
  color: var(--theme-color);
  font-size: 48px;
  line-height: 1;
  transform: rotate(-45deg);
}

.service-icon img {
  width: 70px;
}

.service-arrow {
  margin-top: 25px;
}

.service-title a {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-title a:hover {
  color: var(--theme-color);
}

.service-arrow a {
  width: 50px;
  height: 50px;
  line-height: 42px;
  border-radius: 15px;
  border: 3px solid var(--color-white);
  background: var(--theme-color);
  transform: rotate(45deg);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.service-item:hover .service-arrow a {
  border-color: var(--theme-color);
  background: var(--color-white);
}

.service-item .service-arrow a i {
  transition: var(--transition);
}

.service-item:hover .service-arrow a i {
  color: var(--theme-color);
  transform: rotate(-45deg);
}

/* service-area 2 */
.service-area2 {
  position: relative;
}

.service-area2 .service-item {
  background: #00081D;
  padding: 28px;
  position: relative;
}

.service-area2 .service-icon {
  margin: 0 auto;
}

.service-area2 .service-item p,
.service-area2 .service-item .service-title a {
  color: var(--color-white);
}

.service-area2 .service-item:hover .theme-btn {
  background: var(--theme-color);
}

.service-slider .service-item {
  box-shadow: none;
}

.service-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.service-slider .owl-dots .owl-dot span {
  background: rgba(28, 185, 200, .4);
  margin: 5px;
  width: 20px;
  height: 7px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}

.service-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}



/* ====================
30. Service single
==================== */

.service-single-wrapper .widget-title {
  font-weight: 700;
}

.service-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.service-download a {
  border: 2px solid var(--theme-color);
  padding: 10px 20px;
  color: var(--color-dark);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

.service-details h3 {
  color: var(--color-dark);
  font-weight: 700;
}

.service-details img {
  border-radius: 7px;
}




/* ===================
31. Skill css 
====================== */

.skills-section {
  margin-top: 40px;
}

.skill-left {
  position: relative;
}

.skill-left img {
  border-radius: 7px;
}

.skill-shape {
  position: absolute;
  z-index: -1;
  left: -22px;
  top: -1px;
  width: 100%;
  height: 100%;
}

.skill-img {
  position: relative;
  display: block;
  -webkit-mask-image: url(../img/shape/03.png);
  mask-image: url(../img/shape/03.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: 100% 100%;
  -webkit-mask-position: center center;
  mask-position: center center;
  overflow: hidden;
}

.progress-box {
  margin-bottom: 30px;
  position: relative;
}

.progress-box:last-child {
  margin-bottom: 0;
}

.progress-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-box .progress {
  box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
  border: 1px solid #D5E0F5;
  height: 16px;
  padding: 4px;
  border-radius: 50px;
  background-color: var(--color-white);
}

.progress-box .progress .progress-bar {
  background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
  border-radius: 50px;
}

@media all and (max-width: 991px) {
  .skill-right .site-heading {
    font-size: 30px;
  }

  .skill-img img {
    width: 100%;
  }

}




/* ===================
32. Feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-item {
  padding: 50px 20px;
  position: relative;
  background: var(--color-dark);
  text-align: center;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 12px;
  transition: var(--transition);
  z-index: 1;
}

.feature-item::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--theme-color);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  z-index: -1;
}

.feature-icon {
  font-size: 80px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 15px;
}

.feature-title {
  color: var(--color-white);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--color-white);
}




/* ===================
33. Video css 
====================== */

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 450px;
  z-index: 100;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }

  .video-wrapper h1 {
    font-size: 28px;
    margin-top: 25px;
  }
}



/* ===================
34. Step/process css 
====================== */

.process-area {
  position: relative;
}

.process-item {
  position: relative;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: var(--transition);
}

.process-item:hover {
  transform: translateY(-7px);
}

.process-count {
  position: absolute;
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  right: 15px;
  top: 15px;
  color: var(--theme-color);
  opacity: .1;
}

.process-icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50px;
  font-size: 28px;
  color: var(--color-white);
  text-align: center;
  background: var(--theme-color);
  margin-bottom: 10px;
}

.process-content h5 {
  margin-bottom: 5px;
}




/* ===================
35. Choose css 
====================== */

.choose-area {
  position: relative;
  z-index: 1;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 35px;
}

.choose-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--color-dark);
  border-radius: 50px;
  color: var(--color-white);
  transition: 0.4s;
  margin-top: 2px;
  font-size: 40px;
}

.choose-item-content {
  flex: 1;
}

.choose-item-content h4 {
  margin-bottom: 5px;
}

.choose-img {
  margin-left: 50px;
  position: relative;
  z-index: 1;
}

.choose-img img {
  border-radius: 12px;
}

.choose-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  left: 0;
  top: 0;
  border-radius: 12px;
  transform: rotate(5deg);
  z-index: -1;
}

@media all and (max-width: 991px) {
  .choose-img {
    margin-top: 60px;
  }
}



/* ===================
36. Testimonial css 
====================== */

.testimonial-area {
  position: relative;
}

.testimonial-item {
  background: var(--theme-bg-light);
  padding: 20px;
  border-radius: 15px;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  right: 30px;
  bottom: -20px;
  font-size: 80px;
  color: var(--theme-color);
  opacity: .1;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-bottom: 5px;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.testimonial-author-img {
  width: 60px;
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: rgba(60, 101, 245, .2);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 18px;
}



/* ===================
37. Counter css 
====================== */

.counter-area {
  position: relative;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  position: relative;
  transition: var(--transition);
}

.counter-box:hover {
  transform: translateY(-7px);
}

.counter-box .icon {
  position: relative;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.counter-box .counter-number {
  display: flex;
  align-items: center;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #10225e;
  font-size: 40px;
  font-weight: 600;
}

.counter-box .counter-sign {
  font-size: 35px;
  color: var(--color-dark);
  line-height: 1;
  font-weight: 600;
}

.counter-box .title {
  margin-top: 5px;
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 1199px) {
  .counter-area .counter-box {
    margin-bottom: 25px;
  }
}



/* ===================
38. Cta-area css 
====================== */

.cta-area {
  position: relative;
}

.cta-wrapper {
  background: var(--theme-color);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #587AF3;
  border-radius: 50%;
  left: 10%;
  top: -50px;
  z-index: -1;
}

.cta-wrapper::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid #587AF3;
  border-radius: 50%;
  right: 10%;
  bottom: -50px;
  z-index: -1;
}

.cta-content h1 {
  color: var(--color-white);
}

.cta-content p {
  color: var(--color-white);
  font-size: 18px;
  margin: 10px 0 25px 0;
}

.cta-content .theme-btn {
  background: var(--color-white);
  color: var(--theme-color);
}

.cta-content .theme-btn:hover {
  color: var(--color-white);
}




/* ========================
39. Portfolio css 
=========================== */

.portfolio-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.portfolio-img {
  height: 100%;
}

.portfolio-img img {
  width: 100%;
  border-radius: 8px;
}

.portfolio-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.portfolio-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-content:hover::before {
  opacity: 0.9;
  visibility: visible
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50px;
  top: 0px;
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  color: var(--theme-color);
}

.portfolio-link::before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 2px dashed var(--color-white);
  border-radius: 50px;
}

.portfolio-link:hover {
  color: var(--theme-color);
}

.portfolio-content:hover .portfolio-link {
  opacity: 1;
  visibility: visible;
  top: 50px;
}

.portfolio-info {
  position: absolute;
  bottom: 35px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
  visibility: visible;
  bottom: 45px;
}

.portfolio-subtitle {
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-subtitle span {
  color: var(--color-white);
}

.portfolio-title {
  color: var(--color-white);
  font-size: 30px;
}

.filter-btns {
  text-align: center;
}

.filter-btns li {
  display: inline-block;
  text-transform: capitalize;
  margin: 4px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark);
  border-radius: 50px;
  padding: 3px 20px 4px 20px;
  border: 2px solid var(--theme-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btns li:hover,
.filter-btns li.active {
  color: var(--color-white);
  background: var(--theme-color);
}

.portfolio-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.portfolio-slider .owl-dots .owl-dot span {
  background: rgba(28, 185, 200, .5);
  margin: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}

.portfolio-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 18px;
}

@media all and (max-width: 991px) {
  .filter-controls {
    margin-top: 30px;
  }

  .filter-btns {
    margin-top: 30px;
    text-align: left;
  }
}



/* ======================
40. Portfolio single
====================== */

.portfolio-details img {
  border-radius: 7px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
  border-bottom: none;
}

.portfolio-sidebar-title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
  display: block;
  font-weight: normal;
  margin: 0;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
  color: var(--theme-color);
}

.new-portfolio {
  background: var(--theme-color) !important;
}

.new-portfolio h4 {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 28px;
}

.new-portfolio-btn {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.new-portfolio-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.new-portfolio-btn i {
  margin-left: 8px;
}

.portfolio-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.portfolio-details h3 {
  font-weight: 700;
}



/* ===================
41. Blog css 
====================== */

.blog-area {
  position: relative;
}

.blog-item {
  margin-bottom: 25px;
  background: var(--color-white);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: var(--transition);
}

.blog-item-img {
  overflow: hidden;
  border-radius: 15px;
}

.blog-item-img img {
  border-radius: 15px;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-info {
  padding: 15px 15px 5px 15px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #e6e8eb;
  padding-bottom: 18px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info h5 a {
  color: #030836;
}

.blog-item-info h5 a:hover {
  color: var(--theme-color);
}

@media all and (max-width: 991px) {
  .blog-item-info {
    padding: 23px 15px 30px 15px;
  }
}



/* ===========================
42. Blog single css
=========================== */

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 10px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li {
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: #66788a;
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color: var(--color-dark);
}

.blockqoute {
  background: #F5F7FA;
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 15px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: #F5F7FA;
  color: red;
  padding: 6px 18px;
  border-radius: 6px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #F5F7FA;
  border-radius: 15px;
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
  position: relative;
}

.blog-author-img::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px 0 30px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-img {
  margin-top: 3px;
}

.blog-comments-single img {
  border-radius: 50%;
  width: 120px;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-comments-content a:hover {
  color: var(--color-dark);
}

.blog-comments-content h5 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: #F5F7FA;
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  color: var(--color-dark);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control::placeholder {
  color: var(--body-text-color);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}

@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0 0;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/* =========================
43. Sidebar css
========================= */

.widget {
  background: #F5F7FA;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  color: rgb(231, 194, 26);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .blog-search-form .form-control {
  color: var(--color-dark);
  padding: 12px 15px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
}

.widget .blog-search-form .form-control::placeholder {
  color: var(--body-text-color);
}

.widget .blog-search-form {
  position: relative;
}

.widget .blog-search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .blog-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 7px;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  /* color: var(--color-dark); */
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}



/* =========================
44. Partner css
========================= */

.partner-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 20px 20px;
  border-radius: 15px;
  margin-bottom: 10px;
}

.partner-item img {
  height: 40px;
  width: auto !important;
}

@media all and (max-width: 767px) {
  .partner-item img {
    height: 30px;
  }
}




/* ===================
45. Contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-white);
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  color: var(--color-dark);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control::placeholder {
  color: var(--body-text-color);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  background: var(--color-white);
  border-radius: 10px;
  padding: 30px 30px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 20px;
  border: 2px solid #587AF3;
  border-radius: 15px;
  margin-bottom: 25px;
}

.contact-info:last-child {
  margin-bottom: 0;
}

.contact-info-icon i {
  font-size: 25px;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info p {
  font-weight: 500;
}

@media all and (max-width: 768px) {
  .contact-form {
    margin-bottom: 50px;
  }
}




/* ===================
46. Quote css
====================== */

.quote-area {
  position: relative;
  background-image: url('../img/quote/01.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.quote-content {
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
}

.quote-content .quote-header h6 {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--theme-color);
  font-size: 18px;
  letter-spacing: 2px;
}

.quote-content .quote-header h2 {
  color: var(--color-dark);
  font-size: 35px;
  margin-bottom: 30px;
  margin-top: 10px;
  font-weight: 700;
}

.quote-content .form-group {
  margin-bottom: 20px
}

.quote-content .form-group .form-control {
  padding: 15px 22px;
  font-size: 16px;
  background: 0 0;
  border-radius: 8px;
  background-color: #F3F7FA;
  border: none;
  box-shadow: none
}

.quote-content .form-group .form-select {
  padding: 15px 22px;
  background-color: #F3F7FA;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

.quote-content .theme-btn:hover {
  color: var(--color-white);
}

@media all and (max-width:1199px) {
  .quote-content .quote-header h2 {
    font-size: 25px
  }
}

@media all and (max-width:991px) {
  .quote-thum {
    margin-top: 40px;
  }
}




/* ===================
47. Team css 
====================== */

.team-area {
  position: relative;
}

.team-item {
  background: var(--color-white);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.team-item:hover {
  transform: translateY(-7px);
}

.team-img img {
  border-radius: 15px;
}

.team-content {
  text-align: center;
}

.team-bio {
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-bio h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio h5 a {
  color: var(--color-dark);
}

.team-bio span {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color: var(--theme-color);
}

.team-social {
  margin-bottom: 6px;
}

.team-social li {
  display: inline-block;
  margin: 5px;
}

.team-social li a {
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  border: 2px solid var(--color-dark);
  border-radius: 50px;
}

.team-social li a:hover {
  color: var(--color-white);
  background: var(--color-dark);
}




/* ===================
48. Pricing css 
====================== */

.pricing-area {
  position: relative;
}

.pricing-wrapper {
  background: #F1F6FC;
  border-radius: 30px;
}

.pricing-item {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 20px;
  z-index: 1;
}

.pricing-popular {
  position: absolute;
  display: block;
  padding: 3px 15px 2px 15px;
  background: var(--color-white);
  color: var(--theme-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 50px;
  right: 15px;
  top: 15px;
}

.pricing-content h4 {
  margin-bottom: 10px;
  color: var(--theme-color);
}

.pricing-amount {
  color: var(--color-dark);
  font-weight: 700;
}

.pricing-amount span {
  font-size: 16px;
  font-weight: 600;
}

.pricing-content p {
  margin-top: 10px;
}

.pricing-feature ul {
  margin-top: 20px;
  margin-bottom: 35px;
}

.pricing-feature ul li {
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--theme-color);
  border-radius: 50px;
  left: 0;
  top: 8.5px;
}

.pricing-item.active {
  background: var(--theme-color);
  margin-top: -40px;
}

.pricing-item.active .pricing-content h4 {
  color: var(--color-white);
  margin-top: 20px;
}

.pricing-item.active .pricing-amount {
  color: var(--color-white);
}

.pricing-item.active .pricing-content p {
  color: var(--color-white);
}

.pricing-item.active .pricing-feature ul li {
  color: var(--color-white);
}

.pricing-item.active .pricing-feature ul li::before {
  border-color: var(--color-white);
}

.pricing-item.active .theme-btn {
  background: var(--color-white);
  color: var(--theme-color);
}

.pricing-item.active .theme-btn:hover {
  color: var(--color-white);
}


@media all and (max-width: 991px) {
  .pricing-item.active {
    margin-top: 0;
  }
}



/* ===================
49. Faq css 
====================== */

.faq-area {
  position: relative;
}

.faq-area .faq-left {
  position: relative;
  text-align: center;
}

.faq-img {
  margin: auto auto;
  padding-top: 50px;
  position: relative;
  width: 85%;
  z-index: 1;
}

.faq-img::before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  left: -20px;
  top: 5px;
  width: 100%;
  height: 100%;
  border-radius: 50% 20px 50% 50%;
  z-index: -1;
}

.faq-img img {
  border-radius: 50% 20px 50% 50%;
}

.faq-area .accordion-item {
  border: none;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px dashed var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-top: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}



/* ===================
50. Breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--theme-bg-light);
  padding-top: 134px;
  padding-bottom: 25px;
  z-index: 1;
}

.site-breadcrumb .hero-shape-3 {
  top: 200px;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: #10225e;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #10225e;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #10225e;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #10225e;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 280px;
  }
}




/* ===================
51. Pagination css 
====================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  background: #F2c14e;
  color: var(--color-white);
  margin: 0 10px;
  border-radius: 10px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}

.pagination-showing {
  text-align: center;
  margin-top: 20px;
}



/* ===================
51. Auth css 
====================== */

.login-form {
  padding: 40px;
  background: var(--theme-bg-light);
  border-radius: 10px;
  position: relative;
}

.login-form .login-header {
  text-align: center;
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: var(--color-dark);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: var(--color-dark);
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  color: var(--color-dark);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control::placeholder {
  color: var(--body-text-color);
}

.login-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .forgot-pass {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: var(--color-dark);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn::before {
  width: 480px;
  height: 480px;
  transition-duration: .2s;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: var(--theme-color);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.login-divider {
  position: relative;
  margin: 15px 0;
  text-align: center;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #E8E8E8;
}

.login-divider span {
  position: relative;
  background: #F1F5FC;
  padding: 0 20px;
}

.social-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.social-login a {
  width: 100%;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
}

.social-login a i {
  margin-right: 5px;
}

.btn-fb {
  background: #506DAB;
  color: var(--color-white) !important;
}

.btn-gl {
  background: #DD4B39;
  color: var(--color-white) !important;
}


@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }

  .social-login {
    flex-direction: column;
  }
}




/* ===================
52. User profile css 
====================== */

.header-account img {
  width: 60px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid rgba(0, 0, 0, .1);
  cursor: pointer;
}

.header-account .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.header-account .dropdown-menu li a i {
  margin-right: 5px;
}

.header-account .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  color: var(--color-dark);
  font-weight: 500;
}

.header-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color);
  padding-left: 25px;
}

.mobile-menu-right {
  gap: 20px;
}

.mobile-menu-right .header-account img {
  width: 30px;
  padding: 0;
  border: none;
}

.user-profile-sidebar {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.user-profile-sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
}

.user-profile-img img {
  border-radius: 50%;
}

.user-profile-sidebar-top h4 {
  font-size: 20px;
}

.user-profile-sidebar-top p {
  color: var(--color-dark);
  font-weight: 500;
}

.profile-img-file {
  display: none;
}

.user-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.user-profile-sidebar-list li {
  margin: 5px 0;
}

.user-profile-sidebar-list li a {
  color: var(--color-dark);
  font-weight: 500;
  padding: 6px 6px 6px 15px;
  display: block;
  transition: var(--transition);
}

.user-profile-sidebar-list li a:hover {
  color: var(--theme-color);
}

.user-profile-sidebar-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.user-profile-sidebar-list .active i {
  color: var(--color-white);
}

.user-profile-sidebar-list .active {
  background: var(--theme-color);
  color: var(--color-white) !important;
  border-radius: 8px;
}

.user-profile-sidebar-list li .badge {
  float: right;
  margin-top: 5px;
  background: #F96768;
}

.profile-menu-angle {
  float: right;
}

.profile-menu-list {
  margin-left: 40px;
}

.profile-menu-list li a {
  position: relative;
}

.profile-menu-list li a::before {
  content: "\e122";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0px;
  top: 13px;
  color: var(--theme-color);
  font-size: 8px;
  font-weight: bold;
}

.user-profile-card {
  background: var(--color-white);
  padding: 25px 30px 30px 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.user-profile-card-title {
  color: var(--color-dark);
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 19px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card .text-success {
  color: var(--theme-color) !important;
}

.user-profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card-header .user-profile-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.user-profile-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-search .form-group {
  position: relative;
}

.user-profile-search .form-control {
  padding: 8px 12px 9px 35px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--body-text-color);
}

.user-profile-search .form-control::placeholder {
  color: var(--body-text-color);
}

.user-profile-search .form-control:focus {
  border-color: var(--theme-color);
}

.user-profile-search i {
  position: absolute;
  left: 12px;
  top: 13px;
}

.user-profile-sort .nice-select {
  border-radius: 8px;
  border: 1px solid #ced4da;
}

.user-profile-sort .nice-select::after {
  width: 7px;
  height: 7px;
  margin-top: -6px;
}

.user-profile-sort .nice-select .list {
  width: 100%;
  border-radius: 8px;
}

.user-profile-sort .nice-select:focus {
  border-color: var(--theme-color);
}

.user-profile-card-header .theme-btn {
  padding: 8px 15px;
}

.profile-info-list li {
  margin: 12px 0;
  font-weight: 500;
  color: var(--color-dark);
}

.profile-info-list li span {
  float: right;
  font-weight: normal;
}

.profile-skill a {
  background: var(--theme-bg-light);
  padding: 5px 20px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
}

.profile-skill a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.profile-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-bg-light);
  border-radius: 50px;
  text-align: center;
  color: var(--theme-color);
  margin: 8px 8px 8px 0;
}

.profile-social a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

/* profile form */
.profile-form .nice-select,
.profile-form .form-group {
  margin-bottom: 20px;
}

.profile-form .form-group label {
  color: var(--color-dark);
  margin-bottom: 5px;
}

.profile-form .form-control {
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: none;
  color: var(--color-dark);
}

.profile-form .form-control::placeholder {
  color: var(--body-text-color);
}

.profile-form .nice-select {
  border-radius: 12px;
  width: 100%;
  height: 55px;
  line-height: 53px;
  font-size: 16px;
  color: var(--color-dark);
  box-shadow: none;
  border: 1px solid #ced4da;
}

.profile-form .nice-select::after {
  width: 9px;
  height: 9px;
  margin-top: -6px;
  right: 15px;
}

.profile-form .nice-select .list {
  width: 100%;
  border-radius: 12px;
}

.profile-form .nice-select:focus,
.profile-form .form-control:focus {
  border-color: var(--theme-color);
}

.profile-form .theme-btn2 {
  padding: 7px 15px;
}

/* dashboard */
.dashboard-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.dashboard-widget-info span {
  font-weight: 500;
}

.dashboard-widget-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-widget-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 20px;
}

.dashboard-widget-color-1 {
  background: rgba(60, 101, 245, .2);
  color: var(--theme-color);
}

.dashboard-widget-color-1 h1 {
  color: var(--theme-color);
}

.dashboard-widget-color-1 .dashboard-widget-icon {
  background: var(--theme-color);
  color: var(--color-white);
}

.dashboard-widget-color-2 {
  background: rgba(0, 230, 130, 0.2);
  color: #09AD95;
}

.dashboard-widget-color-2 h1 {
  color: #09AD95;
}

.dashboard-widget-color-2 .dashboard-widget-icon {
  background: #09AD95;
  color: var(--color-white);
}

.dashboard-widget-color-3 {
  background: rgba(249, 103, 104, .2);
  color: #F96768;
}

.dashboard-widget-color-3 h1 {
  color: #F96768;
}

.dashboard-widget-color-3 .dashboard-widget-icon {
  background: #F96768;
  color: var(--color-white);
}

.user-notification-item {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 10px 0;
}

.user-notification-item a {
  display: flex;
  gap: 15px;
}

.user-notification-item a:hover {
  color: var(--color-dark);
}

.user-notification-item:first-child {
  padding-top: 0;
}

.user-notification-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.user-notification-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  margin-top: 5px;
  text-align: center;
}

.user-notification-info {
  flex: 1;
}

.user-notification-info p {
  font-size: 15px;
}

.user-notification-info span {
  font-size: 14px;
}

.table-property-info a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-property-info h6 {
  transition: var(--transition);
}

.table-property-info:hover h6 {
  color: var(--theme-color);
}

.table-property-info img {
  width: 70px;
  border-radius: 8px;
}

.user-profile-card .table>:not(caption)>*>* {
  vertical-align: middle;
  padding: 1rem 0.5rem;
  color: var(--color-dark);
}

/* profile badge */
.user-profile-card .badge {
  border-radius: 50px;
}

.user-profile-card .badge-success {
  background: rgba(9, 173, 149, .2);
  color: #09AD95;
}

.user-profile-card .badge-warning {
  background: rgba(113, 103, 255, .2);
  color: var(--theme-color);
}

.user-profile-card .badge-danger {
  background: rgba(249, 103, 104, .2);
  color: #F96768;
}

/* profile btn */
.user-profile-card .btn {
  border-radius: 8px;
}

/* profile table */
.user-profile-card .table {
  color: var(--color-dark);
}

/* profile job list */
.user-profile-job .job-item {
  border: 1px solid rgba(0, 0, 0, .08);
}

.profile-job-info {
  display: flex;
  gap: 15px;
}

.profile-job-info img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.profile-job-list {
  margin-top: 5px;
}

.profile-job-list li {
  display: inline-block;
  margin-right: 8px;
}

.profile-job-list li h6 a:hover {
  color: var(--theme-color);
}

/* profile candidate list */
.user-profile-candidate .candidate-item {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

/* profile upload */
.profile-upload {
  width: 100%;
  height: 200px;
  border: 2px dashed rgba(0, 0, 0, .1);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-file {
  display: none;
}

.profile-upload span i {
  margin-right: 5px;
}

/* profile message */
.profile-message-wrapper {
  display: flex;
}

.profile-message-inbox {
  max-width: 340px;
  border: 1px solid #EDF1F9;
  border-radius: 10px;
}

.profile-message-inbox {
  overflow: hidden;
}

.message-content {
  padding-left: 30px;
  position: relative;
  overflow: hidden;
}

.message-content-info {
  max-height: 750px;
  overflow-y: scroll;
  margin-right: -50px;
  padding-right: 50px;
}

.profile-message-inbox,
.message-content {
  flex: 1;
}

.profile-message-inbox ul {
  max-height: 950px;
  overflow-y: scroll;
  width: 357px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-message-inbox ul li.message-active {
  border-left: 3px solid var(--theme-color);
}

.profile-message-inbox ul li {
  border-bottom: 1px solid #EDF1F9;
  transition: .2s;
  list-style: none;
}

.profile-message-inbox ul li:last-child {
  border-bottom: none;
}

.message-by-content h5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.profile-message-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.profile-message-inbox .message-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.message-avatar img {
  width: 50px;
  height: 50px;
}

.profile-message-inbox .message-by {
  margin-left: 50px;
}

.message-by-content h5 i {
  background: #F98F14;
  padding: 3px 8px;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 13px;
}

.message-by-content span {
  font-size: 13px;
  position: absolute;
  top: 25.5px;
  right: 25px;
  float: right;
  color: #888888;
}

.profile-message-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #6B747D;
  line-height: 27px;
}

.message-item {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.message-item .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.message-item .message-avatar img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}

.message-item .message-description {
  margin-left: 70px;
  background: #F4F5F7;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item .message-description::before {
  position: absolute;
  top: 0px;
  left: -9px;
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 31px;
  color: #F4F5F7;
}

.message-item .message-description p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 27px;
}

.message-item.me .message-avatar {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.message-item.me .message-description {
  color: var(--theme-color);
  background: #EBEFFE;
  margin-left: 0;
  margin-right: 70px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item.me .message-description::before {
  content: "\f0da";
  left: auto;
  right: -9px;
  color: #EBEFFE;
}

.message-reply {
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 15px;
}

.message-reply .form-control {
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 10px;
}

.message-reply .form-control:focus {
  border-color: var(--theme-color);
}

.message-reply .theme-btn {
  margin-top: 15px;
}

.message-status {
  width: 12px;
  height: 12px;
  background: #252629;
  display: flex;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  position: absolute;
  right: -5px;
  top: 50%;
}

.message-status.online {
  background: #09AD95;
}

.message-status.offline {
  background: #DD4B39;
}

.message-status.busy {
  background: #F6B500;
}

.profile-message .header-account img {
  width: 45px;
}

@media all and (max-width: 991px) {
  .message-by-content span {
    right: 65px;
  }

  .message-reply {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .table-property-info a {
    display: block;
  }

  .table-property-info h6 {
    margin-top: 10px;
  }

  .user-profile-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .user-profile-card-header-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .profile-message .profile-message-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .profile-message .user-profile-card-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .profile-message .message-content {
    padding-left: 0;
    padding-bottom: 200px;
  }

  .message-reply {
    left: 0;
  }

}




/* ===================
53. Coming soon css 
====================== */

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 50px;
  background: var(--theme-color);
  display: inline-block;
  color: var(--color-white);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--color-white);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: var(--theme-color);
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.countdown-single h2 {
  color: var(--color-white);
}

.countdown-single h5 {
  color: var(--color-white);
}




/* ===================
54. Error css 
====================== */

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
  line-height: 1;
}

.error-wrapper h1 span {
  color: var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}



/* ===================
55. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  font-size: 24px;
  margin-bottom: 23px;
  position: relative;
  font-weight: 700;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}




/* ===================
56. Footer css 
====================== */

.footer-area {
  background: var(--footer-bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-area::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--theme-color);
  left: 30%;
  top: -50px;
  border-radius: 50%;
  opacity: .08;
}

.footer-area::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 20px solid var(--theme-color);
  right: 30%;
  bottom: -50px;
  border-radius: 50%;
  opacity: .08;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 276px;
  margin-bottom: 30px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-dark);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 10px;
  height: 2.5px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 35px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-list li a {
  color: #cbd0d9;
  position: relative;
  padding-left: 10px;
  transition: var(--transition);
}

.footer-list li a::before {
  content: "";
  position: absolute;
  height: 1.8px;
  width: 5px;
  background: var(--footer-text-color);
  left: 0;
  top: 14px;
  transition: var(--transition);
}

.footer-list li a:hover::before {
  width: 10px;
  background: var(--theme-color);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 14px;
}

.footer-list li a:hover {
  padding-left: 20px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--footer-text-color);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: #d2def7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-group-icon {
  position: relative;
}

.subscribe-form .form-control {
  padding: 17px 65px 17px 45px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
  color: var(--footer-text-color);
}

.subscribe-form .form-control::placeholder {
  color: var(--footer-text-color);
}

.subscribe-form .form-group-icon i {
  position: absolute;
  left: 15px;
  top: 19px;
  font-size: 20px;
  color: var(--theme-color);
}

.subscribe-form .theme-btn {
  position: absolute;
  right: 5px;
  bottom: 6px;
  font-size: 20px;
  padding: 5px 15px;
}

.subscribe-form .theme-btn span {
  margin-right: 0;
}

.footer-download {
  margin-top: 20px;
}

.footer-download h5 {
  margin-bottom: 12px;
}

.footer-download-content {
  display: flex;
  gap: 10px;
}

.footer-download img {
  border-radius: 10px;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {

  .footer-area::before {
    display: none;
  }

  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}




/* ======================
57. Home 2
====================== */

.home-2 .main {
  margin-top: 0;
}

.home-2 .hero-single {
  background: transparent;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-2 .hero-single::before {
  content: "";
  position: absolute;
  background: #f0f6fe;
  border-radius: 0 80px 80px 0;
  height: 100%;
  width: 65%;
  left: 0;
  top: 0;
  z-index: -1;
}

.home-2 .hero-img {
  padding-right: 30px;
  position: relative;
}

.home-2 .hero-img::before {
  content: "";
  position: absolute;
  background: #FFD04E;
  right: 0;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border-radius: 50px;
}

.home-2 .hero-img img {
  position: relative;
  width: 100%;
  border-radius: 50px;
}

.home-2 .category-item {
  flex-direction: column;
  text-align: center;
  padding: 30px 30px;
}

.home-2 .category-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}




/* ======================
58. Home 3
====================== */

.home-3 .main {
  margin-top: 0;
}

.home-3 .navbar {
  background: var(--color-white);
}

.home-3 .hero-single {
  background-image: url(../img/hero/02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.home-3 .hero-single::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 38, 78, .8);
  z-index: -1;
}

.home-3 .hero-single .hero-content p,
.home-3 .hero-single .hero-content .hero-sub-title,
.home-3 .hero-single .hero-content .hero-title {
  color: var(--color-white);
}

.home-3 .hero-single .hero-content p {
  font-weight: normal;
}

.home-3 .popular-search,
.home-3 .popular-search a,
.home-3 .popular-search span {
  color: var(--color-white);
}

.home-3 .popular-search a {
  margin-left: 2px;
  text-decoration: underline;
}



/* ======================
59. Home 4
====================== */

.home-4 .main {
  margin-top: 0;
}

.home-4 .navbar {
  background: var(--color-white);
}

.home-4 .hero-single {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  padding-top: 150px;
  padding-bottom: 180px;
}

.home-4 .hero-single::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: -1;
}

.home-4 .hero-single .hero-content p,
.home-4 .hero-single .hero-content .hero-sub-title,
.home-4 .hero-single .hero-content .hero-title {
  color: var(--color-white);
}

.home-4 .hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--theme-color);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.home-4 .hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

@media all and (max-width: 1199px) {

  .home-4 .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-prev,
  .home-4 .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 50px !important;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}



/* ======================
60. Home 5
====================== */

.home-5 .main {
  margin-top: 0;
}

.home-5 .hero-single {
  background: transparent;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-5 .hero-single::before {
  content: "";
  position: absolute;
  background: #f0f6fe;
  border-radius: 30px;
  height: 100%;
  width: 85%;
  z-index: -1;
}

.home-5 .hero-content {
  padding-left: 50px;
}

.home-5 .hero-img img {
  width: 40%;
  margin-left: -80px;
  z-index: -1;
}


@media all and (max-width: 1199px) {
  .home-5 .hero-content {
    padding-left: 0px;
  }

  .home-5 .search-form-wrapper .theme-btn {
    width: unset !important;
  }
}

@media all and (max-width: 991px) {
  .home-5 .hero-single {
    padding-top: 150px;
  }

  .home-5 .hero-single::before {
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
  }
}

/* ==================END================== */

/* ===========================
   PREMIUM HERO SECTION
=========================== */

/* ===========================
   PREMIUM HERO OVERRIDE
   (Same structure, new look)
=========================== */

.hero-single {
  background: radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .20) 0%, transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(16, 34, 94, .18) 0%, transparent 55%),
    linear-gradient(120deg, #f7f9ff 0%, #f1f6ff 40%, #fff7e6 100%);
  overflow: hidden;
  position: relative;
}

/* soft noise / premium layer */
.hero-single::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .35;
  z-index: 0;
  pointer-events: none;
}

/* subtle floating blob */
.hero-single::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 189, 76, .35), transparent 70%);
  left: -180px;
  top: -180px;
  filter: blur(10px);
  animation: heroBlob 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 50px) scale(1.1);
  }
}

/* =====================
   HERO CONTENT
===================== */

.hero-single .hero-content {
  position: relative;
  z-index: 5;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 18px 45px rgba(16, 34, 94, .08);
  animation: fadeUp .9s ease both;
}

.hero-single .hero-content .hero-title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 18px 0 18px 0;
  animation: fadeUp 1.1s ease both;
}

.hero-single .hero-content p {
  max-width: 520px;
  font-size: 17px;
  opacity: .9;
  animation: fadeUp 1.25s ease both;
}

/* Premium highlight */
.hero-single .hero-content .hero-title span {
  color: #10225e;
  padding: 0 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(239, 189, 76, .35), rgba(239, 189, 76, .12));
}

.hero-single .hero-content .hero-title span::after {
  display: none;
}

/* Buttons premium */
.hero-single .hero-content .hero-btn {
  animation: fadeUp 1.35s ease both;
}

.hero-single .hero-content .hero-btn .theme-btn {
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: 0 18px 50px rgba(239, 189, 76, .25);
}

.hero-single .hero-content .hero-btn .theme-btn2 {
  background: rgba(16, 34, 94, .06);
  border: 1px solid rgba(16, 34, 94, .10);
  color: #10225e;
}

/* ===========================
   SEARCH BAR FINAL PREMIUM
=========================== */

.search-form-wrapper {
  padding: 14px 18px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .72) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 34, 94, .12);
  box-shadow:
    0 25px 60px rgba(16, 34, 94, .12),
    inset 0 1px 0 rgba(255, 255, 255, .65);
  transition: all .35s ease;
  animation: fadeUp 1.45s ease both;
}

.search-form-wrapper:hover {
  transform: translateY(-2px);
  box-shadow:
    0 35px 80px rgba(16, 34, 94, .16),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

/* divider */
.search-form-wrapper div[class*='col-'] {
  border-right: 1px solid rgba(16, 34, 94, .10) !important;
}

/* icons */
.search-form .form-group-icon i {
  color: rgba(16, 34, 94, .55);
  font-size: 18px;
  top: 17px;
}

/* input + select */
.search-form .form-control,
.search-form .nice-select {
  height: 54px !important;
  line-height: 54px !important;
  border: none !important;
  background: transparent !important;
  font-weight: 700;
  color: #10225e !important;
  transition: all .25s ease;
}

.search-form .form-control::placeholder {
  color: rgba(16, 34, 94, .45) !important;
  font-weight: 600;
}

/* focus glow */
.search-form-wrapper:focus-within {
  border-color: rgba(239, 189, 76, .45);
  box-shadow:
    0 35px 90px rgba(16, 34, 94, .18),
    0 0 0 6px rgba(239, 189, 76, .18);
}

/* dropdown arrow */
.search-form .nice-select:after {
  border-bottom: 2px solid rgba(16, 34, 94, .45);
  border-right: 2px solid rgba(16, 34, 94, .45);
  width: 8px;
  height: 8px;
  margin-top: -5px;
}

/* dropdown list */
.search-form .nice-select .list {
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 25px 60px rgba(16, 34, 94, .14);
}

/* Search button */
.search-form-wrapper .theme-btn {
  height: 54px;
  border-radius: 18px;
  padding: 0 26px !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #EFBD4c 0%, #ffcf62 100%);
  box-shadow:
    0 20px 45px rgba(239, 189, 76, .30),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  transition: all .35s ease;
}

.search-form-wrapper .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px rgba(239, 189, 76, .35),
    inset 0 1px 0 rgba(255, 255, 255, .65);
}

.search-form-wrapper .theme-btn::before {
  background: #10225e;
}

/* =====================
   INFO BOX
===================== */

.hero-info-box {
  margin-top: 26px;
  animation: fadeUp 1.6s ease both;
}

.hero-info-img span {
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: 0 10px 25px rgba(16, 34, 94, .12);
}

.hero-info-content h6 {
  font-size: 16px;
}

.hero-info-content h6 span {
  background: linear-gradient(90deg, #EFBD4c, #ffce57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================
   HERO IMAGE
===================== */

.hero-single .hero-img img {
  width: 47%;
  right: 7%;
  bottom: 0;
  filter: drop-shadow(0 35px 80px rgba(16, 34, 94, .20));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* shape behind image */
.hero-single .hero-img-shape {
  right: 4%;
  bottom: 120px;
  width: 62%;
  opacity: .9;
  filter: blur(0px);
  animation: rotateSlow 18s linear infinite;
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =====================
   ENTRY ANIMATION
===================== */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   RESPONSIVE
===================== */

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 44px;
  }
}

@media all and (max-width: 991px) {
  .hero-single {
    padding-top: 260px;
    padding-bottom: 120px;
  }

  .hero-single .hero-content .hero-title {
    font-size: 38px;
  }

  .search-form-wrapper {
    padding: 14px 14px !important;
    border-radius: 18px !important;
  }

  .search-form-wrapper div[class*='col-'] {
    border-right: none !important;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-title {
    font-size: 32px;
  }

  .hero-single .hero-content p {
    font-size: 16px;
  }

  .search-form-wrapper .theme-btn {
    margin-top: 14px !important;
  }
}

/* ===========================
   CAREER 2026 PREMIUM SECTION
=========================== */

.career2026 {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .16) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(16, 34, 94, .14) 0%, transparent 55%),
    linear-gradient(120deg, #f7f9ff 0%, #f1f6ff 40%, #fff7e6 100%);
}

.career2026::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .55), transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.career2026__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.career2026__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ======================
   LEFT MEDIA
====================== */

.career2026__mediaWrap {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 40px 100px rgba(16, 34, 94, .14);
  animation: fadeUp 1s ease both;
}

.career2026__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 34, 94, .10);
  font-weight: 700;
  font-size: 13px;
  color: #10225e;
  z-index: 5;
}

.career2026__badgeDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EFBD4c, #ffcf62);
  box-shadow: 0 0 0 6px rgba(239, 189, 76, .18);
}

.career2026__photos {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.career2026__photo {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 30px 70px rgba(16, 34, 94, .10);
  transform: translateZ(0);
}

.career2026__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.career2026__photo:hover img {
  transform: scale(1.08);
}

.career2026__photo--big {
  min-height: 420px;
}

.career2026__stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.career2026__photo--small {
  min-height: 200px;
}

.career2026__photo--shift {
  transform: translateY(8px);
}

/* floating stat cards */
.career2026__stat {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 25px 70px rgba(16, 34, 94, .14);
  z-index: 6;
  animation: floatSoft 5.5s ease-in-out infinite;
}

.career2026__stat h6 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #10225e;
  letter-spacing: -0.5px;
}

.career2026__stat p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(16, 34, 94, .70);
}

.career2026__stat--one {
  bottom: 18%;
  left: -10px;
}

.career2026__stat--two {
  top: 28%;
  right: -12px;
  animation-delay: 1.2s;
}

/* ======================
   RIGHT CONTENT
====================== */

.career2026__content {
  animation: fadeUp 1.2s ease both;
}

.career2026__tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: #10225e;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 20px 60px rgba(16, 34, 94, .08);
}

.career2026__title {
  margin: 16px 0 14px 0;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #10225e;
  font-weight: 900;
}

.career2026__title span {
  padding: 0 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(239, 189, 76, .35), rgba(239, 189, 76, .12));
}

.career2026__text {
  max-width: 520px;
  font-size: 16.5px;
  line-height: 30px;
  font-weight: 600;
  color: rgba(16, 34, 94, .80);
  margin-bottom: 26px;
}

/* feature cards */
.career2026__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.career2026__feature {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 18px 55px rgba(16, 34, 94, .08);
  transition: all .35s ease;
}

.career2026__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(16, 34, 94, .12);
}

.career2026__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 189, 76, .25), rgba(239, 189, 76, .10));
  border: 1px solid rgba(239, 189, 76, .25);
  color: #10225e;
  font-size: 18px;
  flex: 0 0 auto;
}

.career2026__featureText h6 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 900;
  color: #10225e;
}

.career2026__featureText p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(16, 34, 94, .72);
  line-height: 24px;
}

/* CTA */
.career2026__cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.career2026__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 800;
  color: #10225e;
  text-decoration: none;

  background: linear-gradient(135deg, #EFBD4c 0%, #ffcf62 100%);
  box-shadow: 0 22px 60px rgba(239, 189, 76, .28);
  transition: all .35s ease;
}

.career2026__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(239, 189, 76, .35);
}

.career2026__mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(16, 34, 94, .70);
}

.career2026__miniDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EFBD4c;
  box-shadow: 0 0 0 6px rgba(239, 189, 76, .18);
}

/* ======================
   Animations
====================== */

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================
   Responsive
====================== */

@media all and (max-width: 991px) {
  .career2026 {
    padding: 85px 0;
  }

  .career2026__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career2026__title {
    font-size: 34px;
  }

  .career2026__photo--big {
    min-height: 340px;
  }
}

@media all and (max-width: 575px) {
  .career2026__title {
    font-size: 30px;
  }

  .career2026__mediaWrap {
    padding: 18px;
  }

  .career2026__photos {
    grid-template-columns: 1fr;
  }

  .career2026__photo--big {
    min-height: 260px;
  }

  .career2026__photo--small {
    min-height: 220px;
  }
}

/* ==========================
   SCROLL REVEAL (NO LIBRARY)
========================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: all .9s cubic-bezier(.2, .8, .2, 1);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* directions */
[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="up"] {
  transform: translateY(22px);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   STATS 2026 (WOW PREMIUM)
========================= */

.stats2026 {
  padding: 35px 0 10px;
  position: relative;
}

.stats2026__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats2026__card {
  position: relative;
  overflow: hidden;

  padding: 18px 18px;
  border-radius: 22px;

  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow:
    0 25px 70px rgba(16, 34, 94, .10),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  display: flex;
  align-items: center;
  gap: 16px;

  transition: all .35s ease;
}

/* shine effect */
.stats2026__card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 120%;
  height: 120%;
  background: linear-gradient(120deg,
      transparent 35%,
      rgba(255, 255, 255, .65) 50%,
      transparent 65%);
  transform: rotate(18deg);
  opacity: 0;
  transition: .55s ease;
}

/* premium glow border */
.stats2026__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 20%, rgba(239, 189, 76, .22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(16, 34, 94, .18), transparent 60%);
  opacity: .55;
  pointer-events: none;
}

.stats2026__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(16, 34, 94, .16),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

.stats2026__card:hover::before {
  opacity: 1;
  top: -60%;
  left: 10%;
}

/* icon */
.stats2026__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #EFBD4c 0%, #ffd77a 100%);
  box-shadow:
    0 20px 45px rgba(239, 189, 76, .28),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  flex: 0 0 auto;
}

.stats2026__icon i {
  font-size: 28px;
  color: #10225e;
}

/* text */
.stats2026__text h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: #10225e;
  letter-spacing: -1px;
}

.stats2026__text p {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: rgba(16, 34, 94, .65);
}

/* responsive */
@media(max-width: 1199px) {
  .stats2026__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 575px) {
  .stats2026__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PROCESS 2026 (WOW PREMIUM)
========================== */

.process2026 {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  /* background:
    radial-gradient(circle at 20% 10%, rgba(239, 189, 76, .14), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(16, 34, 94, .12), transparent 55%),
    linear-gradient(120deg, #ffffff 0%, #f7f9ff 45%, #fff8e9 100%); */
}

/* premium noise */
.process2026::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .25;
  pointer-events: none;
  z-index: 0;
}

.process2026 .container {
  position: relative;
  z-index: 2;
}

/* heading */
.process2026__heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.process2026__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  color: #10225e;

  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(16, 34, 94, .10);
}

.process2026__title {
  margin: 16px 0 10px;
  font-size: 46px;
  font-weight: 900;
  color: #10225e;
  letter-spacing: -1px;
}

.process2026__sub {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: rgba(16, 34, 94, .62);
}

/* grid */
.process2026__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* connector line */
.process2026__grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(16, 34, 94, 0),
      rgba(16, 34, 94, .12),
      rgba(239, 189, 76, .20),
      rgba(16, 34, 94, .12),
      rgba(16, 34, 94, 0));
  z-index: 0;
}

/* card */
.process2026__card {
  position: relative;
  z-index: 2;
  padding: 22px 22px 22px;
  border-radius: 26px;

  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow:
    0 30px 85px rgba(16, 34, 94, .10),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  transition: all .35s ease;
  overflow: hidden;
}

/* shine */
.process2026__card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 140%;
  height: 140%;
  background: linear-gradient(120deg,
      transparent 35%,
      rgba(255, 255, 255, .65) 50%,
      transparent 65%);
  transform: rotate(18deg);
  opacity: 0;
  transition: .55s ease;
}

.process2026__card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 45px 120px rgba(16, 34, 94, .16),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

.process2026__card:hover::before {
  opacity: 1;
  left: 10%;
}

/* top */
.process2026__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.process2026__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #EFBD4c 0%, #ffd77a 100%);
  box-shadow:
    0 18px 50px rgba(239, 189, 76, .28),
    inset 0 1px 0 rgba(255, 255, 255, .60);
}

.process2026__icon i {
  font-size: 28px;
  color: #10225e;
}

.process2026__step {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(16, 34, 94, .08);
}

/* text */
.process2026__cardTitle {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #10225e;
}

.process2026__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 28px;
  font-weight: 600;
  color: rgba(16, 34, 94, .62);
}

/* staggered height (sexy flow) */
.process2026__card:nth-child(2) {
  transform: translateY(12px);
}

.process2026__card:nth-child(4) {
  transform: translateY(12px);
}

.process2026__card:hover:nth-child(2),
.process2026__card:hover:nth-child(4) {
  transform: translateY(2px);
}

/* responsive */
@media(max-width: 1199px) {
  .process2026__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process2026__grid::before {
    display: none;
  }
}

@media(max-width: 575px) {
  .process2026__title {
    font-size: 34px;
  }

  .process2026__grid {
    grid-template-columns: 1fr;
  }

  .process2026__card:nth-child(2),
  .process2026__card:nth-child(4) {
    transform: none;
  }
}

/* Mobile: content first, images later */
@media all and (max-width: 991px) {

  .career2026__grid {
    display: flex;
    flex-direction: column;
  }

  .career2026__content {
    order: 1;
  }

  .career2026__media {
    order: 2;
  }
}

/* =========================
   LOCATION 2026 (WOW)
========================= */

.loc2026 {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .12), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(16, 34, 94, .10), transparent 55%),
    linear-gradient(120deg, #ffffff 0%, #f7f9ff 50%, #fff8e9 100%);
}

.loc2026__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.loc2026__tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  color: #10225e;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(16, 34, 94, .10);
}

.loc2026__title {
  margin: 16px 0 10px;
  font-size: 46px;
  font-weight: 900;
  color: #10225e;
  letter-spacing: -1px;
}

.loc2026__sub {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: rgba(16, 34, 94, .62);
}

/* grid */
.loc2026__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* cards */
.loc2026__card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 30px 90px rgba(16, 34, 94, .10);
  background: rgba(255, 255, 255, .65);

  min-height: 240px;
  transition: all .35s ease;
}

/* wide cards */
.loc2026__card--wide {
  grid-column: span 2;
  min-height: 260px;
}

.loc2026__img {
  position: absolute;
  inset: 0;
}

.loc2026__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s ease;
}

/* overlay */
.loc2026__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(16, 34, 94, .00) 0%,
      rgba(16, 34, 94, .10) 45%,
      rgba(16, 34, 94, .85) 100%);
  opacity: .95;
  transition: opacity .35s ease;
}

/* content */
.loc2026__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.loc2026__content h5 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
}

.loc2026__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.loc2026__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.loc2026__meta i {
  color: #EFBD4c;
}

/* hover wow */
.loc2026__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 130px rgba(16, 34, 94, .16);
}

.loc2026__card:hover .loc2026__img img {
  transform: scale(1.14);
}

.loc2026__card:hover::after {
  opacity: .98;
}

/* responsive */
@media(max-width: 1199px) {
  .loc2026__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc2026__card--wide {
    grid-column: span 2;
  }
}

@media(max-width: 575px) {
  .loc2026__title {
    font-size: 34px;
  }

  .loc2026__grid {
    grid-template-columns: 1fr;
  }

  .loc2026__card--wide {
    grid-column: span 1;
  }
}

/* ==========================
   TESTIMONIAL 2026 PREMIUM
   (Same Owl HTML)
========================== */

.testimonial-area {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(239, 189, 76, .16), transparent 45%),
    radial-gradient(circle at 82% 35%, rgba(16, 34, 94, .12), transparent 55%),
    linear-gradient(120deg, #ffffff 0%, #f7f9ff 45%, #fff7e6 100%);
}

/* soft noise */
.testimonial-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}

.testimonial-area .container {
  position: relative;
  z-index: 2;
}

/* heading upgrade */
.testimonial-area .site-heading .site-title-tagline {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  color: #10225e;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(16, 34, 94, .10);
}

.testimonial-area .site-heading .site-title {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 46px;
  margin-top: 14px;
}

.testimonial-area .site-heading p {
  font-size: 17px;
  font-weight: 600;
  color: rgba(16, 34, 94, .62);
}

/* owl spacing */
.testimonial-slider {
  margin-top: 40px;
}

/* card */
.testimonial-item {
  position: relative;
  border-radius: 28px;
  padding: 28px 26px 26px;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 34, 94, .10);

  box-shadow:
    0 30px 90px rgba(16, 34, 94, .12),
    inset 0 1px 0 rgba(255, 255, 255, .65);

  transition: all .35s ease;
  overflow: hidden;
}

/* glow circle */
.testimonial-item::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 189, 76, .22), transparent 70%);
  top: -110px;
  right: -110px;
  opacity: .85;
}

/* shine sweep */
.testimonial-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .22) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: .85s ease;
  pointer-events: none;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 45px 130px rgba(16, 34, 94, .16),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}

.testimonial-item:hover::after {
  transform: translateX(120%);
}

/* stars */
.testimonial-rate {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.testimonial-rate i {
  color: #EFBD4c;
  font-size: 15px;
  filter: drop-shadow(0 10px 18px rgba(239, 189, 76, .25));
}

/* quote text */
.testimonial-quote p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: rgba(16, 34, 94, .70);
}

/* author row */
.testimonial-content {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.testimonial-author-img img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .95);
  box-shadow: 0 18px 45px rgba(16, 34, 94, .14);
}

.testimonial-author-info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #10225e;
}

.testimonial-author-info p {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(16, 34, 94, .55);
}

/* quote icon bottom right (your flaticon) */
.testimonial-quote-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(239, 189, 76, .16);
  border: 1px solid rgba(239, 189, 76, .25);
  box-shadow: 0 25px 70px rgba(239, 189, 76, .18);
}

.testimonial-quote-icon i {
  font-size: 20px;
  color: #EFBD4c;
}

/* owl dots premium */
.testimonial-slider .owl-dots {
  margin-top: 28px !important;
}

.testimonial-slider .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: rgba(16, 34, 94, .18) !important;
  transition: .35s ease !important;
}

.testimonial-slider .owl-dot.active span {
  width: 34px !important;
  background: linear-gradient(135deg, #EFBD4c, #ffcf62) !important;
  box-shadow: 0 16px 40px rgba(239, 189, 76, .25);
}

/* responsive */
@media(max-width: 991px) {
  .testimonial-area .site-heading .site-title {
    font-size: 36px;
  }
}

/* =========================
   CTA 2026 PREMIUM
========================= */

.cta2026 {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta2026__box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px 60px;

  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, .22), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(16, 34, 94, .16), transparent 60%),
    linear-gradient(135deg, #EFBD4c 0%, #ffcf62 45%, #ffe6b3 100%);

  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow:
    0 40px 120px rgba(16, 34, 94, .18),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  text-align: center;
}

/* soft noise */
.cta2026__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .18;
  pointer-events: none;
}

/* shine sweep */
.cta2026__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .28) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: .9s ease;
}

.cta2026__box:hover::after {
  transform: translateX(120%);
}

.cta2026__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.cta2026__content h2 {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: #10225e;
}

.cta2026__content p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: rgba(16, 34, 94, .72);
  margin: 0 auto 28px;
  max-width: 720px;
}

/* buttons */
.cta2026__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta2026__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 54px;
  padding: 0 26px;
  border-radius: 18px;

  background: #10225e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 22px 60px rgba(16, 34, 94, .25);
  transition: .35s ease;
}

.cta2026__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(16, 34, 94, .30);
}

.cta2026__btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 54px;
  padding: 0 24px;
  border-radius: 18px;

  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(16, 34, 94, .14);
  color: #10225e;
  font-weight: 800;
  text-decoration: none;

  backdrop-filter: blur(12px);
  transition: .35s ease;
}

.cta2026__btn2:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .72);
}

/* animated blobs */
.cta2026__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .85;
  z-index: 1;
  animation: ctaBlob 10s ease-in-out infinite;
}

.cta2026__blob--1 {
  left: -160px;
  top: -170px;
  background: radial-gradient(circle, rgba(16, 34, 94, .18), transparent 70%);
}

.cta2026__blob--2 {
  right: -170px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(255, 255, 255, .30), transparent 70%);
  animation-delay: 1.6s;
}

/* rings */
.cta2026__ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 16px solid rgba(16, 34, 94, .18);
  z-index: 1;
  opacity: .55;
  animation: ctaRing 18s linear infinite;
}

.cta2026__ring--1 {
  top: -80px;
  left: 110px;
}

.cta2026__ring--2 {
  bottom: -110px;
  right: 120px;
  border-color: rgba(16, 34, 94, .12);
  animation-duration: 24s;
}

/* animations */
@keyframes ctaBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(45px, 40px) scale(1.08);
  }
}

@keyframes ctaRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* responsive */
@media(max-width: 991px) {
  .cta2026__box {
    padding: 54px 24px;
  }

  .cta2026__content h2 {
    font-size: 38px;
  }
}

@media(max-width: 575px) {
  .cta2026__content h2 {
    font-size: 32px;
  }

  .cta2026__btns {
    gap: 10px;
  }

  .cta2026__btn,
  .cta2026__btn2 {
    width: 100%;
  }
}

/* ===========================
   BLOG 2026 PREMIUM
=========================== */

.blog2026 {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 189, 76, .10), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(16, 34, 94, .10), transparent 55%),
    #fff;
}

.blog2026__heading {
  margin-bottom: 44px;
}

.blog2026__tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  color: #EFBD4c;
  background: rgba(239, 189, 76, .12);
  border: 1px solid rgba(239, 189, 76, .22);
}

.blog2026__title {
  margin: 16px 0 10px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #10225e;
}

.blog2026__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(16, 34, 94, .65);
}

/* card */
.blog2026__card {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(16, 34, 94, .10);
  transition: all .35s ease;
  animation: blogFadeUp .9s ease both;
}

.blog2026__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 120px rgba(16, 34, 94, .16);
}

/* image */
.blog2026__img {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
}

.blog2026__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}

.blog2026__card:hover .blog2026__img img {
  transform: scale(1.08);
}

/* overlay */
.blog2026__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 34, 94, .05) 0%, rgba(16, 34, 94, .55) 100%);
  opacity: .65;
  transition: .35s ease;
}

.blog2026__card:hover .blog2026__overlay {
  opacity: .8;
}

/* chip */
.blog2026__chip {
  position: absolute;
  top: 16px;
  left: 16px;

  padding: 9px 14px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;
  color: #10225e;

  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
}

/* content */
.blog2026__content {
  padding: 22px 22px 26px;
}

.blog2026__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(16, 34, 94, .65);
}

.blog2026__meta i {
  color: rgba(239, 189, 76, .95);
  margin-right: 6px;
}

.blog2026__h {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 12px;
}

.blog2026__h a {
  color: #10225e;
  text-decoration: none;
  transition: .25s ease;
}

.blog2026__h a:hover {
  color: #EFBD4c;
}

.blog2026__p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
  color: rgba(16, 34, 94, .70);
  margin: 0 0 18px;
}

/* button */
.blog2026__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  text-decoration: none;

  height: 46px;
  padding: 0 18px;
  border-radius: 16px;

  color: #10225e;
  background: rgba(239, 189, 76, .16);
  border: 1px solid rgba(239, 189, 76, .30);

  transition: .35s ease;
}

.blog2026__btn:hover {
  transform: translateY(-2px);
  background: rgba(239, 189, 76, .26);
}

/* entry animation */
@keyframes blogFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width: 991px) {
  .blog2026__title {
    font-size: 36px;
  }
}

@media(max-width: 575px) {
  .blog2026__title {
    font-size: 30px;
  }

  .blog2026__img {
    height: 210px;
  }
}

/* ===========================
   PARTNER 2026 PREMIUM
=========================== */

.partner2026 {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 40%, rgba(239, 189, 76, .10), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(16, 34, 94, .10), transparent 55%),
    #fff;
}

/* glass wrapper */
.partner2026__wrap {
  position: relative;
  padding: 26px 18px;
  border-radius: 26px;

  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 35px 90px rgba(16, 34, 94, .10),
    inset 0 1px 0 rgba(255, 255, 255, .65);
}

/* shine sweep */
.partner2026__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .35) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: .9s ease;
  pointer-events: none;
}

.partner2026__wrap:hover::after {
  transform: translateX(120%);
}

/* owl spacing */
.partner2026 .owl-stage {
  display: flex;
  align-items: center;
}

.partner2026__item {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;

  border-radius: 18px;
  transition: all .35s ease;
}

/* logo style */
.partner2026__item img {
  max-height: 48px;
  width: auto;
  opacity: .65;
  filter: grayscale(1);
  transition: all .35s ease;
}

/* hover wow */
.partner2026__item:hover {
  transform: translateY(-6px);
  background: rgba(239, 189, 76, .10);
  border: 1px solid rgba(239, 189, 76, .25);
}

.partner2026__item:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* dots remove */
.partner2026 .owl-dots {
  display: none;
}

/* arrows premium */
.partner2026 .owl-nav {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.partner2026 .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 14px !important;

  background: rgba(16, 34, 94, .06) !important;
  border: 1px solid rgba(16, 34, 94, .10) !important;

  transition: .35s ease;
}

.partner2026 .owl-nav button:hover {
  background: rgba(239, 189, 76, .20) !important;
  border-color: rgba(239, 189, 76, .35) !important;
  transform: translateY(-2px);
}

/* responsive */
@media(max-width: 575px) {
  .partner2026__wrap {
    padding: 20px 12px;
    border-radius: 20px;
  }

  .partner2026__item {
    height: 70px;
  }

  .partner2026__item img {
    max-height: 40px;
  }
}

/* ==========================
   FOOTER 2026 PREMIUM LOOK
========================== */

.footer-area {
  position: relative;
  overflow: hidden;
  background: url("../img/logo/footer.jpg") center/cover no-repeat;
}

/* dark overlay */
.footer-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(16, 34, 94, .92) 0%,
      rgba(16, 34, 94, .85) 45%,
      rgba(0, 0, 0, .78) 100%);
  z-index: 0;
}

/* soft premium glow */
.footer-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(239, 189, 76, .18), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, .08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.footer-widget,
.copyright {
  position: relative;
  z-index: 2;
}

/* widget wrapper spacing */
.footer-widget-wrapper {
  border-radius: 26px;
  padding: 70px 35px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 35px 120px rgba(0, 0, 0, .30);
}

/* titles */
.footer-widget-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -.2px;
  position: relative;
}

.footer-widget-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, #EFBD4c, rgba(239, 189, 76, .20));
}

/* text */
.footer-area p,
.footer-area li,
.footer-area a {
  color: rgba(255, 255, 255, .78);
}

.footer-area a {
  text-decoration: none;
  transition: .25s ease;
}

.footer-area a:hover {
  color: #EFBD4c;
}

/* logo */
.footer-logo img {
  max-height: 159px;
  /* filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35)); */
}

/* contact list */
.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact li i {
  margin-top: 3px;
  color: #EFBD4c;
  font-size: 16px;
}

/* links list */
.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  position: relative;
  padding-left: 14px;
}

.footer-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239, 189, 76, .75);
  transition: .25s ease;
}

.footer-list li a:hover::before {
  background: #EFBD4c;
  transform: scale(1.2);
}

/* Newsletter */
.footer-newsletter p {
  margin-bottom: 16px;
}

.footer-newsletter .form-group-icon {
  position: relative;
}

.footer-newsletter .form-group-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: 18px;
  z-index: 2;
}

.footer-newsletter .form-control {
  height: 54px;
  border-radius: 18px;
  padding-left: 52px;
  padding-right: 70px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}

.footer-newsletter .form-control:focus {
  border-color: rgba(239, 189, 76, .55);
  box-shadow: 0 0 0 5px rgba(239, 189, 76, .15);
}

/* send button */
.footer-newsletter .theme-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 44px;
  border-radius: 14px;
  padding: 0;
  background: linear-gradient(135deg, #EFBD4c, #ffcf62);
  box-shadow: 0 18px 40px rgba(239, 189, 76, .25);
  border: none;
}

/* Download buttons */
.footer-download h5 {
  color: #fff;
  font-weight: 900;
  margin-top: 26px;
  margin-bottom: 14px;
}

.footer-download-content {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-download-content a img {
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  transition: .35s ease;
}

.footer-download-content a:hover img {
  transform: translateY(-4px);
}

/* copyright bar */
.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.copyright-text {
  margin: 0;
  font-weight: 600;
}

/* social */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social li {
  list-style: none;
}

.footer-social li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;

  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: .35s ease;
}

.footer-social li a:hover {
  transform: translateY(-3px);
  background: rgba(239, 189, 76, .18);
  border-color: rgba(239, 189, 76, .35);
}

/* responsive */
@media(max-width: 991px) {
  .footer-widget-wrapper {
    padding: 55px 18px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

/* ==========================
   JOB PRELOADER 2026 (SEARCH)
========================== */

.jobPreloader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .15), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(16, 34, 94, .18), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f6f9ff 50%, #fff7e6 100%);
}

.jobPreloader__box {
  width: min(460px, 92%);
  padding: 40px 28px;
  border-radius: 28px;
  text-align: center;

  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 35px 120px rgba(16, 34, 94, .14);
}

/* search icon wrapper */
.jobPreloader__search {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(16, 34, 94, .05);
  border: 1px solid rgba(16, 34, 94, .10);

  box-shadow:
    0 25px 70px rgba(16, 34, 94, .12),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  position: relative;
  overflow: hidden;
}

/* glow */
.jobPreloader__search::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(239, 189, 76, .25), transparent 65%);
  opacity: .9;
  z-index: 0;
}

/* icon itself */
.jobPreloader__search i {
  position: relative;
  z-index: 2;
  font-size: 34px;
  color: #10225e;
  animation: preSearch 1.2s ease-in-out infinite;
}

/* title */
.jobPreloader__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  color: #10225e;
  letter-spacing: -.2px;
}

/* progress bar */
.jobPreloader__bar {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  background: rgba(16, 34, 94, .08);
  overflow: hidden;
  position: relative;
}

.jobPreloader__bar span {
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: 999px;
  background: linear-gradient(135deg, #EFBD4c, #ffcf62);
  animation: preBar 1.2s ease-in-out infinite;
}

/* sub */
.jobPreloader__sub {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(16, 34, 94, .60);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* animations */
@keyframes preSearch {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-8px) rotate(12deg) scale(1.06);
  }
}

@keyframes preBar {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

/* ===========================
   EMPLOYER 2026 PREMIUM
=========================== */

.employer2026 {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 189, 76, .10), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(16, 34, 94, .10), transparent 55%),
    #fff;
}

/* heading */
.employer2026__heading {
  margin-bottom: 46px;
}

.employer2026__tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #EFBD4c;
  background: rgba(239, 189, 76, .12);
  border: 1px solid rgba(239, 189, 76, .22);
}

.employer2026__title {
  margin: 16px 0 10px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #10225e;
}

.employer2026__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(16, 34, 94, .65);
}

/* card */
.employer2026__card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 30px 90px rgba(16, 34, 94, .10);
  transition: all .35s ease;
}

/* shine */
.employer2026__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .35) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: .9s ease;
  pointer-events: none;
}

.employer2026__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 120px rgba(16, 34, 94, .16);
  border-color: rgba(239, 189, 76, .28);
}

.employer2026__card:hover::after {
  transform: translateX(120%);
}

/* logo */
.employer2026__logo {
  width: 84px;
  height: 84px;
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  background: rgba(16, 34, 94, .04);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .70);
  position: relative;
}

.employer2026__logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(239, 189, 76, .18), transparent 70%);
  opacity: .85;
  z-index: 0;
}

.employer2026__logo img {
  position: relative;
  z-index: 2;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(16, 34, 94, .12));
}

/* name */
.employer2026__name {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.3;
}

.employer2026__name a {
  color: #10225e;
  text-decoration: none;
  transition: .25s ease;
}

.employer2026__name a:hover {
  color: #EFBD4c;
}

/* meta */
.employer2026__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.employer2026__jobs,
.employer2026__loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 800;

  padding: 10px 12px;
  border-radius: 16px;

  background: rgba(16, 34, 94, .04);
  border: 1px solid rgba(16, 34, 94, .08);
  color: rgba(16, 34, 94, .78);
}

.employer2026__jobs i,
.employer2026__loc i {
  color: rgba(239, 189, 76, .95);
  font-size: 18px;
}

/* button */
.employer2026__btn {
  width: 100%;
  height: 48px;

  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  font-weight: 900;

  color: #10225e;
  background: rgba(239, 189, 76, .14);
  border: 1px solid rgba(239, 189, 76, .25);

  transition: .35s ease;
}

.employer2026__btn:hover {
  transform: translateY(-2px);
  background: rgba(239, 189, 76, .22);
}

/* responsive */
@media(max-width: 991px) {
  .employer2026__title {
    font-size: 36px;
  }
}

@media(max-width: 575px) {
  .employer2026__title {
    font-size: 30px;
  }
}

/* =========================
  ABOUT US PAGE 2026
========================= */

.about2026Hero {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .20) 0%, transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(16, 34, 94, .18) 0%, transparent 55%),
    linear-gradient(120deg, #f7f9ff 0%, #f1f6ff 40%, #fff7e6 100%);
}

.about2026Hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .30;
  z-index: 0;
  pointer-events: none;
}

.about2026Hero * {
  position: relative;
  z-index: 2;
}

.about2026Hero__tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 18px 45px rgba(16, 34, 94, .08);
}

.about2026Hero__title {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 18px 0 18px;
  color: #10225e;
}

.about2026Hero__title span {
  background: linear-gradient(90deg, rgba(239, 189, 76, .40), rgba(239, 189, 76, .15));
  padding: 0 10px;
  border-radius: 12px;
}

.about2026Hero__text {
  font-size: 17px;
  max-width: 560px;
  opacity: .92;
}

.about2026Hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.about2026Hero__btn2 {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(16, 34, 94, .06);
  border: 1px solid rgba(16, 34, 94, .12);
  color: #10225e;
  transition: .3s ease;
}

.about2026Hero__btn2:hover {
  transform: translateY(-2px);
}

.about2026Hero__mini {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 520px;
}

.about2026Hero__miniItem {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(12px);
}

.about2026Hero__miniItem h5 {
  margin: 0 0 6px;
  font-weight: 900;
  color: #10225e;
}

.about2026Hero__miniItem p {
  margin: 0;
  font-size: 14px;
  opacity: .85;
}

.about2026Hero__visual {
  position: relative;
  min-height: 520px;
}

.about2026Hero__imgWrap {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(16, 34, 94, .18);
  border: 1px solid rgba(16, 34, 94, .08);
}

.about2026Hero__imgWrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.about2026Hero__floatCard {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(16, 34, 94, .12);
  animation: aboutFloat 5s ease-in-out infinite;
}

.about2026Hero__floatCard i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFBD4c 0%, #ffcf62 100%);
  color: #10225e;
  font-size: 18px;
}

.about2026Hero__floatCard h6 {
  margin: 0;
  font-weight: 900;
  color: #10225e;
}

.about2026Hero__floatCard p {
  margin: 0;
  font-size: 13px;
  opacity: .82;
}

.fc-1 {
  top: 10%;
  left: 0;
}

.fc-2 {
  top: 46%;
  left: -10px;
  animation-delay: 1.2s;
}

.fc-3 {
  bottom: 8%;
  left: 40px;
  animation-delay: 2.4s;
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* =========================
  INTRO SECTION
========================= */

.about2026Intro {
  padding: 90px 0;
  background: #fff;
}

.about2026Intro__tag {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  background: rgba(239, 189, 76, .14);
  color: #10225e;
}

.about2026Intro__title {
  margin: 16px 0 14px;
  font-size: 38px;
  font-weight: 900;
  color: #10225e;
}

.about2026Intro__title span {
  background: linear-gradient(90deg, rgba(239, 189, 76, .35), rgba(239, 189, 76, .12));
  padding: 0 10px;
  border-radius: 10px;
}

.about2026Intro__text {
  font-size: 16px;
  opacity: .9;
  max-width: 560px;
}

.about2026Intro__list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.about2026Intro__li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  color: #10225e;
}

.about2026Intro__li i {
  color: #EFBD4c;
  font-size: 18px;
}

.about2026Intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about2026Intro__img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(16, 34, 94, .14);
  border: 1px solid rgba(16, 34, 94, .08);
}

.about2026Intro__img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about2026Intro__img.img3 {
  grid-column: span 2;
}

.about2026Intro__img.img3 img {
  height: 260px;
}

/* =========================
  MVV SECTION
========================= */

.about2026Mvv {
  padding: 90px 0;
  background: #f7f9ff;
}

.about2026Mvv__tag {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(16, 34, 94, .10);
}

.about2026Mvv__title {
  font-size: 42px;
  font-weight: 950;
  margin-top: 14px;
  color: #10225e;
}

.about2026Mvv__sub {
  max-width: 680px;
  margin: 10px auto 0;
  opacity: .85;
}

.about2026Mvv__card {
  padding: 28px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 25px 70px rgba(16, 34, 94, .12);
  transition: .35s ease;
}

.about2026Mvv__card:hover {
  transform: translateY(-6px);
}

.about2026Mvv__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFBD4c 0%, #ffcf62 100%);
  color: #10225e;
  font-size: 22px;
  margin-bottom: 14px;
}

.about2026Mvv__card h4 {
  font-weight: 950;
  color: #10225e;
  margin-bottom: 10px;
}

.about2026Mvv__card p {
  margin: 0;
  opacity: .88;
}

/* =========================
  STEPS SECTION
========================= */

.about2026Steps {
  padding: 90px 0;
  background: #fff;
}

.about2026Steps__tag {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 17px;
  background: rgba(239, 189, 76, .14);
  color: #10225e;
}

.about2026Steps__title {
  font-size: 40px;
  font-weight: 950;
  margin-top: 14px;
  color: #10225e;
}

.about2026Steps__sub {
  max-width: 720px;
  margin: 10px auto 0;
  opacity: .86;
}

.about2026Steps__card {
  position: relative;
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 25px 70px rgba(16, 34, 94, .10);
  transition: .35s ease;
  overflow: hidden;
}

.about2026Steps__card:hover {
  transform: translateY(-6px);
}

.about2026Steps__no {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 48px;
  font-weight: 950;
  opacity: .08;
  color: #10225e;
}

.about2026Steps__card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 34, 94, .06);
  color: #10225e;
  font-size: 22px;
  margin-bottom: 14px;
}

.about2026Steps__card h5 {
  font-weight: 950;
  color: #10225e;
}

.about2026Steps__card p {
  margin: 6px 0 0;
  opacity: .86;
}

/* =========================
  CTA SECTION
========================= */

.about2026Cta {
  padding: 90px 0;
  background: #f7f9ff;
}

.about2026Cta__box {
  border-radius: 28px;
  padding: 60px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(239, 189, 76, .25) 0%, transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(16, 34, 94, .18) 0%, transparent 55%),
    linear-gradient(120deg, #ffffff 0%, #f3f7ff 50%, #fff7e6 100%);
  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow: 0 35px 90px rgba(16, 34, 94, .12);
}

.about2026Cta__box h2 {
  font-weight: 950;
  color: #10225e;
  margin-bottom: 10px;
}

.about2026Cta__box p {
  max-width: 720px;
  margin: 0 auto 22px;
  opacity: .86;
}

.about2026Cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.about2026Cta__btn2 {
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 900;
  background: rgba(16, 34, 94, .06);
  border: 1px solid rgba(16, 34, 94, .12);
  color: #10225e;
  transition: .3s ease;
}

.about2026Cta__btn2:hover {
  transform: translateY(-2px);
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 991px) {
  .about2026Hero {
    padding: 90px 0 60px;
  }

  .about2026Hero__title {
    font-size: 38px;
  }

  .about2026Hero__mini {
    grid-template-columns: 1fr;
  }

  .about2026Hero__visual {
    min-height: auto;
  }

  .fc-1,
  .fc-2,
  .fc-3 {
    display: none;
  }
}

@media (max-width: 767px) {

  .about2026Intro__title,
  .about2026Mvv__title,
  .about2026Steps__title {
    font-size: 30px;
  }
}

/* ==============================
   ABOUT HERO - WOW PREMIUM UPGRADE
============================== */

.about2026Hero {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 28%, rgba(239, 189, 76, .26) 0%, transparent 48%),
    radial-gradient(circle at 80% 35%, rgba(16, 34, 94, .18) 0%, transparent 55%),
    linear-gradient(120deg, #f7f9ff 0%, #eef4ff 45%, #fff6df 100%);
}

/* premium animated gradient layer */
.about2026Hero::after {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 30% 40%, rgba(239, 189, 76, .18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(16, 34, 94, .12), transparent 55%);
  filter: blur(30px);
  opacity: .85;
  animation: aboutGlowMove 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes aboutGlowMove {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 25px) scale(1.05);
  }
}

/* soft noise */
.about2026Hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  opacity: .35;
  z-index: 1;
  pointer-events: none;
}

.about2026Hero * {
  position: relative;
  z-index: 2;
}

/* tag more premium */
.about2026Hero__tag {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 70px rgba(16, 34, 94, .10);
}

/* heading = wow */
.about2026Hero__title {
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 18px 0 18px;
  color: #0b1f55;
  font-weight: 950;
}

/* premium highlight */
.about2026Hero__title span {
  position: relative;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 14px;

  background: linear-gradient(90deg,
      rgba(239, 189, 76, .42),
      rgba(239, 189, 76, .16));
}

/* text */
.about2026Hero__text {
  font-size: 17px;
  line-height: 30px;
  max-width: 560px;
  color: rgba(11, 31, 85, .82);
}

/* buttons premium */
.about2026Hero__cta {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about2026Hero__cta .theme-btn {
  border-radius: 16px;
  padding: 14px 24px;
  box-shadow:
    0 22px 60px rgba(239, 189, 76, .30),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  transition: .35s ease;
}

.about2026Hero__cta .theme-btn:hover {
  transform: translateY(-3px);
}

.about2026Hero__btn2 {
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 900;

  background: rgba(16, 34, 94, .06);
  border: 1px solid rgba(16, 34, 94, .14);
  color: #10225e;

  box-shadow: 0 18px 45px rgba(16, 34, 94, .08);
  transition: .35s ease;
}

.about2026Hero__btn2:hover {
  transform: translateY(-3px);
  background: rgba(16, 34, 94, .08);
}

/* mini cards */
.about2026Hero__mini {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 540px;
}

.about2026Hero__miniItem {
  padding: 18px 18px;
  border-radius: 22px;

  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(18px);

  box-shadow:
    0 25px 70px rgba(16, 34, 94, .10),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  transition: .35s ease;
}

.about2026Hero__miniItem:hover {
  transform: translateY(-4px);
}

.about2026Hero__miniItem h5 {
  margin: 0 0 6px;
  font-weight: 950;
  color: #10225e;
}

.about2026Hero__miniItem p {
  margin: 0;
  font-size: 14px;
  opacity: .82;
}

/* ==============================
   RIGHT SIDE - WOW MOCK PANEL
============================== */

.about2026Hero__visual {
  position: relative;
  min-height: 560px;
}

/* big glass panel behind */
.about2026Hero__visual::before {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  width: 88%;
  height: 78%;
  border-radius: 30px;

  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, .55);

  box-shadow:
    0 55px 140px rgba(16, 34, 94, .18),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  z-index: 0;
}

/* image wrap */
.about2026Hero__imgWrap {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  border-radius: 30px;
  overflow: hidden;

  border: 1px solid rgba(16, 34, 94, .10);
  box-shadow:
    0 45px 120px rgba(16, 34, 94, .20),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  transform: translateY(6px);
  animation: heroImgFloat 5s ease-in-out infinite;
}

@keyframes heroImgFloat {

  0%,
  100% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about2026Hero__imgWrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* floating cards premium */
.about2026Hero__floatCard {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;

  padding: 14px 16px;
  border-radius: 20px;

  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 34, 94, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 25px 70px rgba(16, 34, 94, .14),
    inset 0 1px 0 rgba(255, 255, 255, .70);

  animation: aboutFloat 5s ease-in-out infinite;
  z-index: 3;
}

.about2026Hero__floatCard i {
  width: 46px;
  height: 46px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #EFBD4c 0%, #ffcf62 100%);
  box-shadow:
    0 18px 40px rgba(239, 189, 76, .25),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  color: #10225e;
  font-size: 18px;
}

.about2026Hero__floatCard h6 {
  margin: 0;
  font-weight: 950;
  color: #10225e;
}

.about2026Hero__floatCard p {
  margin: 0;
  font-size: 13px;
  opacity: .82;
}

/* positions (BEST LOOK) */
.fc-1 {
  top: 16%;
  left: 0;
}

.fc-2 {
  top: 48%;
  left: -12px;
  animation-delay: 1.3s;
}

.fc-3 {
  bottom: 10%;
  left: 70px;
  animation-delay: 2.6s;
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 991px) {
  .about2026Hero__title {
    font-size: 40px;
  }

  .about2026Hero__mini {
    grid-template-columns: 1fr;
  }

  .about2026Hero__visual {
    min-height: auto;
  }

  .about2026Hero__visual::before {
    display: none;
  }

  .fc-1,
  .fc-2,
  .fc-3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .about2026Hero {
    padding: 90px 0 60px;
  }

  .about2026Hero__title {
    font-size: 34px;
  }
}

.about2026Hero__content {
  animation: fadeUpAbout .9s ease both;
}

.about2026Hero__visual {
  animation: fadeUpAbout 1.1s ease both;
}

@keyframes fadeUpAbout {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Mission Vision Ubuntu Section
================================= */

.mvuv-section {
  padding: 90px 0;
  background: radial-gradient(circle at 20% 10%, #f2f7ff 0%, #f8fbff 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.mvuv-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: -180px;
  background: rgba(44, 120, 255, 0.10);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}

.mvuv-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -220px;
  background: rgba(255, 178, 0, 0.12);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 0;
}

.mvuv-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.mvuv-head {
  max-width: 900px;
  margin: 0 auto;
}

.mvuv-pill {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #3a4b72;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 40, 90, 0.08);
  box-shadow: 0 12px 25px rgba(10, 20, 60, 0.08);
  margin-bottom: 18px;
}

.mvuv-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0b1b3a;
  margin-bottom: 12px;
}

.mvuv-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #667aa3;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* Cards */
.mvuv-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 40, 90, 0.08);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 18px 45px rgba(15, 40, 90, 0.10);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.mvuv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 40, 90, 0.18);
  border-color: rgba(44, 120, 255, 0.22);
}

/* center card slightly highlighted */
.mvuv-card-center {
  border-color: rgba(255, 178, 0, 0.28);
}

/* top shine */
.mvuv-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: rgba(44, 120, 255, 0.10);
  border-radius: 50%;
  filter: blur(0px);
  transition: 0.35s ease;
}

.mvuv-card:hover::before {
  transform: scale(1.05);
}

/* icon badge */
.mvuv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffb200, #ffd66a);
  box-shadow: 0 14px 28px rgba(255, 178, 0, 0.35);
}

.mvuv-icon i {
  font-size: 24px;
  color: #0b1b3a;
}

/* card title */
.mvuv-card-title {
  font-size: 26px;
  font-weight: 900;
  color: #0b1b3a;
  margin-bottom: 12px;
}

/* text */
.mvuv-text {
  font-size: 15px;
  font-weight: 600;
  color: #6c7fa8;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* list */
.mvuv-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.mvuv-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1d2f57;
  line-height: 1.5;
}

.mvuv-list li i {
  color: #2c78ff;
  font-size: 18px;
  margin-top: 1px;
}

/* highlight bar */
.mvuv-highlight {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(44, 120, 255, 0.06);
  border: 1px dashed rgba(44, 120, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  color: #0b1b3a;
}

.mvuv-highlight span {
  color: #2c78ff;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .mvuv-title {
    font-size: 34px;
  }

  .mvuv-card {
    padding: 28px 22px;
  }
}

/* ================================
   Mission Vision Ubuntu Section
================================= */

.mvuv-section {
  padding: 90px 0;
  background: radial-gradient(circle at 20% 10%, #f2f7ff 0%, #f8fbff 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.mvuv-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  top: -180px;
  background: rgba(44, 120, 255, 0.10);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}

.mvuv-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -220px;
  background: rgba(255, 178, 0, 0.12);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 0;
}

.mvuv-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.mvuv-head {
  max-width: 900px;
  margin: 0 auto;
}

.mvuv-pill {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #3a4b72;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 40, 90, 0.08);
  box-shadow: 0 12px 25px rgba(10, 20, 60, 0.08);
  margin-bottom: 18px;
}

.mvuv-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #0b1b3a;
  margin-bottom: 12px;
}

.mvuv-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #667aa3;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* Cards */
.mvuv-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 40, 90, 0.08);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 18px 45px rgba(15, 40, 90, 0.10);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.mvuv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 40, 90, 0.18);
  border-color: rgba(44, 120, 255, 0.22);
}

/* center card slightly highlighted */
.mvuv-card-center {
  border-color: rgba(255, 178, 0, 0.28);
}

/* top shine */
.mvuv-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: rgba(44, 120, 255, 0.10);
  border-radius: 50%;
  filter: blur(0px);
  transition: 0.35s ease;
}

.mvuv-card:hover::before {
  transform: scale(1.05);
}

/* icon badge */
.mvuv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffb200, #ffd66a);
  box-shadow: 0 14px 28px rgba(255, 178, 0, 0.35);
}

.mvuv-icon i {
  font-size: 24px;
  color: #0b1b3a;
}

/* card title */
.mvuv-card-title {
  font-size: 26px;
  font-weight: 900;
  color: #0b1b3a;
  margin-bottom: 12px;
}

/* text */
.mvuv-text {
  font-size: 15px;
  font-weight: 600;
  color: #6c7fa8;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* list */
.mvuv-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.mvuv-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1d2f57;
  line-height: 1.5;
}

.mvuv-list li i {
  color: #2c78ff;
  font-size: 18px;
  margin-top: 1px;
}

/* highlight bar */
.mvuv-highlight {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(44, 120, 255, 0.06);
  border: 1px dashed rgba(44, 120, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  color: #0b1b3a;
}

.mvuv-highlight span {
  color: #2c78ff;
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .mvuv-title {
    font-size: 34px;
  }

  .mvuv-card {
    padding: 28px 22px;
  }
}

/* ================================
   PREMIUM CONTACT PAGE
================================= */

.contactProWrap {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, #f2f7ff 0%, #f8fbff 45%, #ffffff 100%);
}

/* heading */
.contactProHead {
  max-width: 900px;
  margin: 0 auto;
}

.contactProTag {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #3a4b72;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 40, 90, 0.08);
  box-shadow: 0 12px 25px rgba(10, 20, 60, 0.08);
  margin-bottom: 16px;
}

.contactProTitle {
  font-size: 46px;
  font-weight: 950;
  color: #0b1b3a;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.contactProSub {
  font-size: 16px;
  font-weight: 650;
  color: #6c7fa8;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* cards */
.contactProInfoCard,
.contactProFormCard {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 40, 90, 0.08);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 18px 45px rgba(15, 40, 90, 0.10);
  backdrop-filter: blur(10px);
}

/* left info */
.contactProInfoTitle {
  font-size: 26px;
  font-weight: 950;
  color: #0b1b3a;
  margin-bottom: 8px;
}

.contactProInfoText {
  font-size: 15px;
  font-weight: 650;
  color: #6c7fa8;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* info list */
.contactProInfoList {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.contactProInfoItem {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(44, 120, 255, 0.04);
  border: 1px solid rgba(44, 120, 255, 0.10);
  transition: 0.3s ease;
}

.contactProInfoItem:hover {
  transform: translateY(-4px);
  background: rgba(44, 120, 255, 0.06);
  border-color: rgba(44, 120, 255, 0.18);
}

.contactProInfoIcon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffb200, #ffd66a);
  box-shadow: 0 14px 28px rgba(255, 178, 0, 0.30);
  flex: 0 0 auto;
}

.contactProInfoIcon i {
  font-size: 22px;
  color: #0b1b3a;
}

.contactProInfoContent span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #2c78ff;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.contactProInfoContent a {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0b1b3a;
  text-decoration: none;
  margin-bottom: 4px;
}

.contactProInfoContent a:hover {
  color: #2c78ff;
}

.contactProInfoContent p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #6c7fa8;
  line-height: 1.6;
}

/* social */
.contactProSocialWrap h4 {
  font-size: 16px;
  font-weight: 950;
  color: #0b1b3a;
  margin-bottom: 12px;
}

.contactProSocial {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contactProSocialBtn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(44, 120, 255, 0.06);
  border: 1px solid rgba(44, 120, 255, 0.14);
  transition: 0.3s ease;
}

.contactProSocialBtn i {
  font-size: 18px;
  color: #2c78ff;
}

.contactProSocialBtn:hover {
  transform: translateY(-4px);
  background: rgba(44, 120, 255, 0.10);
  border-color: rgba(44, 120, 255, 0.22);
}

/* form */
.contactProFormTitle {
  font-size: 26px;
  font-weight: 950;
  color: #0b1b3a;
  margin-bottom: 6px;
}

.contactProFormText {
  font-size: 15px;
  font-weight: 650;
  color: #6c7fa8;
  line-height: 1.7;
  margin-bottom: 22px;
}

.contactProField label {
  font-size: 13px;
  font-weight: 900;
  color: #1d2f57;
  margin-bottom: 7px;
  display: block;
}

.contactProField .form-control {
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(15, 40, 90, 0.10);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  color: #0b1b3a;
  padding: 12px 16px;
  box-shadow: none !important;
  outline: none !important;
  transition: 0.25s ease;
}

.contactProField textarea.form-control {
  height: auto;
  padding-top: 14px;
}

.contactProField .form-control:focus {
  border-color: rgba(44, 120, 255, 0.35);
  box-shadow: 0 0 0 4px rgba(44, 120, 255, 0.10) !important;
}

/* button */
.contactProBtn {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #ffb200, #ffd66a);
  color: #0b1b3a;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 35px rgba(255, 178, 0, 0.35);
  transition: 0.3s ease;
}

.contactProBtn i {
  margin-right: 8px;
}

.contactProBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(255, 178, 0, 0.45);
}

/* note */
.contactProNote {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 650;
  color: #6c7fa8;
}

/* background shapes */
.contactProShapes span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}

.contactProShapes .shape1 {
  width: 520px;
  height: 520px;
  left: -180px;
  top: -180px;
  background: rgba(44, 120, 255, 0.35);
}

.contactProShapes .shape2 {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
  background: rgba(255, 178, 0, 0.35);
}

.contactProShapes .shape3 {
  width: 320px;
  height: 320px;
  left: 40%;
  top: 35%;
  background: rgba(0, 200, 150, 0.18);
}

/* Responsive */
@media (max-width: 991px) {
  .contactProTitle {
    font-size: 34px;
  }

  .contactProInfoCard,
  .contactProFormCard {
    padding: 26px 20px;
  }
}

/* ======================================================
   BLOG NEW VERSION (UNSEEN PREMIUM)
====================================================== */

.blog-area {
  background: radial-gradient(circle at 20% 10%, #f2f7ff 0%, #f8fbff 45%, #ffffff 100%);
}

/* Card */
.blog-item {
  border-radius: 26px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(15, 40, 90, 0.08) !important;
  box-shadow: 0 18px 45px rgba(15, 40, 90, 0.10) !important;
  transition: 0.35s ease !important;
  height: 100%;
  position: relative;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 95px rgba(15, 40, 90, 0.16) !important;
  border-color: rgba(44, 120, 255, 0.22) !important;
}

/* Image */
.blog-item-img {
  height: 230px !important;
  position: relative;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.65s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.12);
}

/* Gradient overlay */
.blog-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(11, 27, 58, 0.10),
      rgba(11, 27, 58, 0.75));
}

/* Category Badge (Job Seeker) */
.blog-item-img::before {
  /*content: "";*/
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  color: #0b1b3a;
  background: linear-gradient(135deg, #ffb200, #ffd66a);
  box-shadow: 0 18px 35px rgba(255, 178, 0, 0.35);
}

/* Content */
.blog-item-info {
  padding: 18px 20px 22px !important;
}

/* Title */
.blog-title {
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  margin: 0 0 12px !important;
}

.blog-title a {
  color: #0b1b3a !important;
  text-decoration: none !important;
  transition: 0.25s ease;
}

.blog-title a:hover {
  color: var(--theme-color) !important;
}

/* Meta chips */
.blog-item-meta ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  list-style: none !important;
}

.blog-item-meta ul li a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  color: #1d2f57 !important;
  background: rgba(44, 120, 255, 0.06) !important;
  border: 1px solid rgba(44, 120, 255, 0.12) !important;
}

.blog-item-meta ul li a i {
  color: #2c78ff !important;
}

/* Description */
.blog-item-info p {
  font-size: 14px !important;
  font-weight: 650 !important;
  color: #6c7fa8 !important;
  line-height: 1.7 !important;
  margin-bottom: 18px !important;
}

/* Button new version */
.blog-item-info .theme-btn {
  height: 48px !important;
  border-radius: 16px !important;
  padding: 0 18px !important;
  font-weight: 950 !important;
  background: linear-gradient(135deg, #ffb200, #ffd66a) !important;
  /* color: #0b1b3a !important; */
  border: none !important;
  box-shadow: 0 18px 35px rgba(255, 178, 0, 0.28) !important;
  transition: 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.blog-item-info .theme-btn::after {
  content: "→";
  font-size: 18px;
  font-weight: 950;
  transition: 0.3s ease;
}

.blog-item-info .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(255, 178, 0, 0.40) !important;
}

.blog-item-info .theme-btn:hover::after {
  transform: translateX(4px);
}

/* Responsive */
@media(max-width: 991px) {
  .blog-item-img {
    height: 200px !important;
  }
}

.blog-search-wrap {
  width: min(900px, 92%);
  margin: 18px auto 35px;
}

.blog-search-box {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 14px 16px 14px 52px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #64748b;
}

.blog-search-input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
}

.blog-search-input::placeholder {
  font-weight: 500;
  color: #94a3b8;
}

.blog-search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 6px;
  color: #64748b;
  font-size: 13px;
}

.blog-search-clear {
  border: 0;
  background: transparent;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.75;
}

.blog-search-clear:hover {
  opacity: 1;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 22px 0 12px;
  flex-wrap: wrap;
}

/* TABS */
.blog-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-tab {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
  cursor: pointer;
  transition: 0.25s ease;
}

.blog-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.10);
}

.blog-tab.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* SEARCH */
.blog-search-box {
  position: relative;
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  padding: 14px 16px 14px 52px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #64748b;
}

.blog-search-input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  background: transparent;
}

.blog-search-input::placeholder {
  font-weight: 600;
  color: #94a3b8;
}

/* RIGHT SIDE */
.blog-right-filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-sort-select {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 0 14px;
  font-weight: 800;
  color: #0f172a;
  outline: none;
}

.blog-clear-btn {
  height: 48px;
  border-radius: 14px;
  border: 0;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  background: #ffb200;
  color: #111827;
  transition: 0.25s ease;
}

.blog-clear-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 178, 0, 0.35);
}

/* META */
.blog-search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   BLOG SINGLE - PREMIUM THEME CSS
   ========================================================= */

/* Main spacing */
.blog-single-area {
  background: #f8fafc;
}

/* Main wrapper */
.blog-single-wrapper {
  background: transparent;
}

/* Blog Content Card */
.blog-single-content {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Thumbnail */
.blog-thumb-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog info padding */
.blog-info {
  padding: 28px 28px 30px;
}

/* Meta row */
.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-meta-left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-meta-left ul li {
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-left ul li i {
  color: #ffb200;
}

.blog-meta-left ul li a {
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
}

.blog-meta-left ul li a:hover {
  color: #ffb200;
}

/* Share link */
.blog-meta-right .share-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 14px;
  color: #0f172a;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.8);
  transition: 0.25s ease;
}

.blog-meta-right .share-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Title */
.blog-details-title {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 1000;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Paragraphs */
.blog-details p {
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
  font-weight: 500;
}

/* Images inside blog */
.blog-details img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Blockquote */
.blockqoute {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 178, 0, 0.16), rgba(15, 23, 42, 0.05));
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px 22px 22px 24px;
  border-radius: 20px;
  margin: 24px 0;
  font-weight: 700;
  color: #0f172a;
}

.blockqoute::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: 18px;
  font-size: 60px;
  font-weight: 1000;
  color: rgba(255, 178, 0, 0.9);
}

.blockqoute-author {
  margin-top: 12px;
  font-weight: 900;
  color: #0f172a;
}

/* Tags */
.blog-details-tags {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-details-tags h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 1000;
  color: #0f172a;
}

.blog-details-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-details-tags ul li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.blog-details-tags ul li a:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

/* Author box */
.blog-author {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
}

.blog-author-img img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.author-info h6 {
  margin: 0 0 5px;
  font-weight: 900;
  color: #64748b;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.author-name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 1000;
  color: #0f172a;
}

.author-info p {
  margin: 0 0 14px;
  color: #475569;
  font-weight: 500;
  line-height: 1.7;
}

/* Author socials */
.author-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.8);
  color: #0f172a;
  transition: 0.25s ease;
}

.author-social a:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

/* Comments */
.blog-comments {
  margin-top: 30px;
  padding: 26px 28px 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-comments h3 {
  font-size: 22px;
  font-weight: 1000;
  color: #0f172a;
  margin-bottom: 18px;
}

.blog-comments-single {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
}

.blog-comments-reply {
  margin-left: 50px;
  background: rgba(15, 23, 42, 0.03);
}

.blog-comments-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-comments-content h5 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 1000;
  color: #0f172a;
}

.blog-comments-content span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

.blog-comments-content p {
  margin: 10px 0 12px;
  color: #475569;
  line-height: 1.7;
  font-weight: 500;
}

.blog-comments-content a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 900;
  color: #0f172a;
}

.blog-comments-content a:hover {
  color: #ffb200;
}

/* Comment Form */
.blog-comments-form {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-comments-form h3 {
  margin-bottom: 14px;
}

.blog-comments-form .form-control {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 14px 14px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: none;
}

.blog-comments-form .form-control:focus {
  border-color: rgba(255, 178, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 178, 0, 0.16);
}

.blog-comments-form textarea.form-control {
  padding: 16px 14px;
}

/* =========================================================
   SIDEBAR
   ========================================================= */

.sidebar {
  position: sticky;
  top: 90px;
}

.widget {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
  margin-bottom: 22px;
}

.widget-title {
  font-size: 18px;
  font-weight: 1000;
  color: #0f172a;
  margin-bottom: 14px;
}

/* Sidebar Search */
.blog-search-form {
  position: relative;
}

.blog-search-form input {
  height: 52px;
  border-radius: 18px;
  padding-right: 52px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  font-weight: 700;
  box-shadow: none;
}

.blog-search-form input:focus {
  border-color: rgba(255, 178, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 178, 0, 0.16);
}

.blog-search-form button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
}

/* Category list */
.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.category-list a i {
  color: #ffb200;
}

.category-list a span {
  color: #64748b;
  font-weight: 900;
}

.category-list a:hover {
  transform: translateY(-1px);
  background: rgba(255, 178, 0, 0.10);
}

/* Recent post */
.recent-post-single {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 12px;
  transition: 0.25s ease;
}

.recent-post-single:hover {
  transform: translateY(-1px);
  background: rgba(255, 178, 0, 0.10);
}

.recent-post-img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.recent-post-bio h6 {
  margin: 0 0 6px;
  font-weight: 1000;
  font-size: 14px;
  line-height: 1.4;
}

.recent-post-bio h6 a {
  color: #0f172a;
  text-decoration: none;
}

.recent-post-bio h6 a:hover {
  color: #ffb200;
}

.recent-post-bio span {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Follow us */
.social-share-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-share-link a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.03);
  color: #0f172a;
  transition: 0.25s ease;
}

.social-share-link a:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  color: #0f172a;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.tag-list a:hover {
  background: #0f172a;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .sidebar {
    position: static;
    top: auto;
    margin-top: 30px;
  }

  .blog-details-title {
    font-size: 24px;
  }

  .blog-info {
    padding: 20px 18px 22px;
  }

  .blog-comments {
    padding: 20px 18px 22px;
  }

  .blog-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-comments-reply {
    margin-left: 22px;
  }
}

/* SECTION */
.process2026 {
  padding: 100px 0;
  /* background: radial-gradient(circle at top center, #f7f4ef 0%, #ffffff 60%); */
  position: relative;
}

/* HEADING */
.process2026__heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.employer2026__tag {
  display: inline-block;
  padding: 8px 22px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 30px;
  background: #75a9eb;
  color: white;
  margin-bottom: 20px;
}

.process2026__title {
  font-size: 48px;
  font-weight: 700;
  color: #162a5f;
  margin-bottom: 15px;
}

.process2026__sub {
  font-size: 17px;
  color: #6b7390;
}

/* GRID */
.process2026__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.process2026__card {
  width: 350px;
  padding: 40px;
  border-radius: 22px;
  background: #f8f9fc;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: 0.3s ease;
}

.process2026__card:hover {
  transform: translateY(-8px);
}

/* TOP AREA */
.process2026__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.process2026__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2c35d, #e7b94a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #162a5f;
}

.process2026__step {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
}

/* TEXT */
.process2026__cardTitle {
  font-size: 20px;
  font-weight: 700;
  color: #162a5f;
  margin-bottom: 12px;
}

.process2026__text {
  font-size: 15px;
  color: #6b7390;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process2026__card {
    width: 100%;
    max-width: 500px;
  }
}

/* Minimal Footer Design */
.footer-minimal {
  background: #10225e;
  padding: 80px 0 0;
  color: #fff;
}

.footer-minimal-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo img {
  width: 269px;
  /* filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)); */
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-box li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-contact-box i {
  width: 36px;
  height: 36px;
  background: #f5c062;
  color: #0c2b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.footer-contact-box a {
  color: #fff;
  text-decoration: none;
}

.footer-contact-box a:hover {
  color: #f5c062;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-minimal-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-box li {
    justify-content: center;
  }
}

/* Contact alignment fix */
@media (max-width: 768px) {

  .footer-contact-box {
    width: 100%;
  }

  .footer-contact-box ul {
    padding: 0;
    margin: 0 auto;
  }

  .footer-contact-box li {
    display: flex;
    align-items: center;
    justify-content: center;
    /* center everything */
    text-align: left;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-contact-box i {
    flex-shrink: 0;
  }

}

@media (max-width: 768px) {

  .footer-contact-box li {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

}

/* MAIN WRAPPER */
.aura-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-radius: 50px;
  margin: 40px;
  background: #eaf1f6;
  box-shadow:
    40px 40px 100px rgba(163, 177, 198, 0.45),
    -40px -40px 100px #ffffff;
}

/* ANIMATED GRADIENT MESH */
.aura-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, #4e9c66 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, #2f6f45 0%, transparent 40%);
  animation: meshMove 15s ease-in-out infinite alternate;
}

@keyframes meshMove {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-40px, -30px);
  }
}

.faq-next {
  background: linear-gradient(135deg, #f4f7fc, #eef2f9);
  padding: 100px 0;
}

.faq-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #162a63;
  margin-bottom: 10px;
}

.faq-head p {
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* Stats Cards */
.faq-stats-next {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0 70px;
  flex-wrap: wrap;
}

.stat-card {
  background: #fff;
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h4 {
  font-size: 26px;
  font-weight: 700;
  color: #162a63;
}

.stat-card span {
  font-size: 14px;
  color: #777;
}

/* FAQ Glass Box */
.faq-box {
  max-width: 850px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Accordion Custom */
.accordion-item {
  border: none;
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 18px 22px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.accordion-header:hover {
  background: #f4f7fc;
}

.accordion-header i {
  transition: 0.3s;
}

.accordion-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 18px 22px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-head h2 {
    font-size: 30px;
  }
}

.faq-pre-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-tag {
  background: #f4c542;
  color: #162a63;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
  margin-bottom: 15px;
}

.faq-pre-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #162a63;
  margin-bottom: 20px;
}

.faq-pre-content p {
  color: #555;
  margin-bottom: 20px;
}

.faq-benefits {
  list-style: none;
  padding: 0;
}

.faq-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.faq-benefits i {
  color: #162a63;
  margin-right: 8px;
}

/* Right Cards */
.faq-pre-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mini-card {
  background: #f7f9fc;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-5px);
}

.mini-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #162a63;
}

.mini-card p {
  font-size: 14px;
  color: #666;
}

/* Mobile */
@media (max-width: 991px) {
  .faq-pre-section {
    text-align: center;
  }
}

/* =====================================
   DESKTOP FORCE LAYOUT FIX
===================================== */
@media (min-width: 992px) {

  .navbar .container {
    display: flex;
    align-items: center;
  }

  /* Make collapse take available space */
  .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex-grow: 1;
  }

  /* Menu left */
  .navbar-nav {
    display: flex;
    gap: 35px;
  }

  /* Push button little right */
  .header-nav-right {
    margin-left: 25px;
  }

  /* PUSH LOGO TO EXTREME RIGHT */
  .navbar-brand {
    order: 3;
    /* important */
    margin-left: auto;
    /* force right */
  }

  .navbar-collapse {
    order: 1;
  }

  /* Bigger logo */
  .navbar-brand img {
    height: 105px;
    width: 199px;
  }

}

.talent-section {
  padding: 100px 0;
}

/* .section-tag {
  background: #f3f4f6;
  color: #142E63;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
} */

.talent-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.talent-content h2 span {
  color: #F2C14E;
}

.talent-content p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

.talent-benefits {
  list-style: none;
  padding: 0;
}

.talent-benefits li {
  margin-bottom: 12px;
  font-weight: 500;
}

.talent-benefits i {
  color: #F2C14E;
  margin-right: 10px;
}

.talent-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.talent-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: .3s;
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #142E63;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card-icon i {
  color: #F2C14E;
  font-size: 20px;
}

.talent-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-box h3 {
  font-size: 28px;
  color: #142E63;
  font-weight: 700;
}

.stat-box p {
  font-size: 14px;
  color: #6b7280;
}

.faq-next {
  padding: 110px 0;
}

.faq-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #142E63;
  margin-bottom: 10px;
}

.faq-head p {
  color: #6b7280;
  margin-bottom: 50px;
}

/* STATS */

.faq-stats-next {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-card {
  background: #fff;
  padding: 25px 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: .3s;
  min-width: 180px;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card i {
  font-size: 22px;
  color: #F2C14E;
  margin-bottom: 10px;
}

.stat-card h4 {
  font-size: 26px;
  color: #142E63;
  font-weight: 700;
  margin: 0;
}

.stat-card span {
  font-size: 14px;
  color: #6b7280;
}

/* FAQ BOX */

.faq-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ACCORDION */

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #142E63;
}

.accordion-header i {
  color: #F2C14E;
  transition: .3s;
}

.accordion-header.collapsed i {
  transform: rotate(-90deg);
}

.accordion-body {
  padding: 0 25px 25px 25px;
  color: #6b7280;
  line-height: 1.7;
}

.blog-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-item-info .theme-btn {
  margin-top: auto;
}

.blog-sidebar .widget {
  background: #f7f8fb;
  padding: 35px;
  border-radius: 18px;
  margin-top: 66px;
}

.spotlight-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.spotlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.spotlight-content {
  padding: 25px;
}

.spotlight-tag {
  background: #ffb703;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.spotlight-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.spotlight-content p {
  font-size: 14px;
  margin-bottom: 18px;
}

.policy-section {
  background: #f5f7fb;
}

.policy-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.policy-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c2a5c;
}

.policy-wrapper h4 {
  margin-top: 30px;
  font-weight: 700;
}

.policy-wrapper h5 {
  margin-top: 15px;
  font-weight: 600;
}

.policy-wrapper ul {
  padding-left: 20px;
}

.policy-wrapper li {
  margin-bottom: 6px;
}

.contribute-box {
  background: #fff;
  padding: 35px;
  margin-top: 64px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #ffb703;
}

.contribute-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0c2a5c;
}

.contribute-text {
  margin-bottom: 10px;
  font-size: 15px;
}

.contribute-sub {
  font-weight: 600;
  margin-bottom: 15px;
}

.contribute-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contribute-list li {
  margin-bottom: 8px;
}

.contribute-list span {
  background: #f4f6fb;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
}

.contribute-email {
  background: #f6f8fc;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.contribute-email a {
  color: #ffb703;
  font-weight: 700;
  text-decoration: none;
}

.contribute-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.contribute-list li {
  background: #eef2f7;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* CARD ALIGNMENT FIX */

.job-item {
  padding: 30px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-img {
  margin-bottom: 15px;
}

.job-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
}

.job-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-title h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.job-employer {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.job-info-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.job-skill {
  margin-top: 12px;
}

.job-skill a {
  display: inline-block;
  background: #f4f6fb;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 6px;
}

.job-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  border: 1px solid #e6e8ef;
  margin-bottom: 30px;
}

.job-result h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.job-sort-list-grid {
  text-align: center;
}

.job-sort-grid {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e6e8ef;
  color: #f7a400;
}

.job-sort-box {
  width: 220px;
}

.job-sort-box select {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e6e8ef;
  padding: 0 10px;
}

.about2026Intro__singleImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}