/* Enhanced Mobile-friendly auth inputs - Professional styling */
@media (max-width: 767px) {
  .ud-login-wrapper {
    padding: 30px 20px;
    border-radius: 12px;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 8px 30px rgba(48, 86, 211, 0.08);
  }

  .ud-login .ud-login-form .ud-form-group {
    margin-bottom: 20px;
  }

  .ud-login .ud-login-form .ud-form-group input[type="email"],
  .ud-login .ud-login-form .ud-form-group input[type="password"],
  .ud-login .ud-login-form .ud-form-group input[type="text"] {
    height: 50px;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    color: var(--heading-color);
    transition: all 0.3s ease;
  }

  .ud-login .ud-login-form .ud-form-group input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(48, 86, 211, 0.1);
    transform: translateY(-1px);
  }

  .ud-login .ud-login-form .ud-main-btn.w-100,
  .ud-login .ud-login-form button[type="submit"].ud-main-btn {
    min-height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
  }

  .ud-login .ud-login-form .ud-main-btn.w-100:hover,
  .ud-login .ud-login-form button[type="submit"].ud-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(48, 86, 211, 0.3);
  }

  /* Ensure full-width form on small screens */
  .ud-login .ud-login-form { width: 100% !important; }
  .ud-login .ud-login-form .ud-form-group input { width: 100% !important; }
  .ud-login .container { padding-left: 16px; padding-right: 16px; }

  /* Enhanced spacing and typography */
  .ud-login .forget-pass,
  .ud-login .signup-option {
    font-size: 15px;
    margin-top: 20px;
  }

  .ud-login .forget-pass {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
  }

  .ud-login .signup-option a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
  }
}

@media (max-width: 575px) {
  .ud-login-wrapper {
    padding: 24px 16px;
    margin: 0 8px;
  }

  .ud-login .ud-login-form .ud-form-group input[type="email"],
  .ud-login .ud-login-form .ud-form-group input[type="password"],
  .ud-login .ud-login-form .ud-form-group input[type="text"] {
    height: 48px;
    font-size: 15px;
    padding: 10px 14px;
  }

  .ud-login .ud-login-form .ud-main-btn.w-100,
  .ud-login .ud-login-form button[type="submit"].ud-main-btn {
    min-height: 48px;
    font-size: 15px;
  }
}
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --font: "Inter", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

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

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  padding: 14px 30px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(48, 86, 211, 0.3);
}

.ud-main-btn:hover {
  color: var(--white);
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(48, 86, 211, 0.4);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

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

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

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

.navbar-brand {
  padding: 0;
}

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

.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

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

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

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

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

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
          box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: var(--primary-color);
  padding-top: 180px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
  

}

@media (max-width: 575px) {
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}



.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.ud-single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== Enhanced Features CSS ===== */

/* ===== Banking Feature Cards ===== */
.banking-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(48, 86, 211, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.banking-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.banking-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(48, 86, 211, 0.12);
  border-color: #3056d3;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
}

.banking-feature-card:hover::before {
  left: 100%;
}

.banking-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.05) 0%, transparent 50%, rgba(48, 86, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.banking-feature-card:hover::after {
  opacity: 1;
}

.feature-visual-section {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.feature-content-section {
  padding: 20px 25px 25px 25px;
  background: rgba(48, 86, 211, 0.02);
  border-top: 1px solid rgba(48, 86, 211, 0.06);
  position: relative;
  z-index: 2;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3056d3 0%, #1e40af 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(48, 86, 211, 0.2);
  transition: all 0.3s ease;
}

.banking-feature-card:hover .feature-icon-large {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(48, 86, 211, 0.3);
}

.feature-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-stats .stat-item {
  text-align: center;
}

.feature-stats .stat-number {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-stats .stat-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.8;
}

.feature-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.feature-badge:hover::before {
  left: 100%;
}

.feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(48, 86, 211, 0.35);
  background: linear-gradient(135deg, #1e40af 0%, #3056d3 100%);
}



.ud-feature-modern-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(48, 86, 211, 0.08);
  border: 1px solid rgba(48, 86, 211, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

.ud-feature-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

  .ud-feature-modern-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(48, 86, 211, 0.15);
    border-color: #3056d3;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  }
  
  /* Ensure cards are fully responsive */
  .ud-feature-modern-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .card-visual-section {
    flex-shrink: 0;
  }
  
  .card-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

.ud-feature-modern-card:hover::before {
  left: 100%;
}

.ud-feature-modern-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.05) 0%, transparent 50%, rgba(48, 86, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.ud-feature-modern-card:hover::after {
  opacity: 1;
}

.card-visual-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  height: 160px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.card-content-section {
  padding: 18px;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.03) 0%, rgba(48, 86, 211, 0.06) 100%);
  border-top: 1px solid rgba(48, 86, 211, 0.08);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  color: #3056d3;
  background: rgba(48, 86, 211, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(48, 86, 211, 0.15);
  transition: all 0.3s ease;
}

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #3056d3 0%, rgba(48, 86, 211, 0.2) 100%);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.ud-feature-modern-card:hover .step-number {
  background: rgba(48, 86, 211, 0.12);
  border-color: rgba(48, 86, 211, 0.25);
  transform: scale(1.05);
}

.ud-feature-modern-card:hover .step-line {
  background: linear-gradient(90deg, #1e40af 0%, rgba(30, 64, 175, 0.3) 100%);
}

.ud-feature-visual {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.ud-feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
  max-width: 240px;
  height: 150px;
  min-height: 150px;
  position: relative;
  box-shadow: 0 6px 24px rgba(48, 86, 211, 0.1);
  border: 1px solid rgba(48, 86, 211, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}

.ud-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.1), transparent);
  transition: left 0.6s ease;
}

.ud-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.25);
  border-color: var(--primary-color);
}

.ud-feature-card:hover::before {
  left: 100%;
}

.ud-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.05) 0%, transparent 50%, rgba(48, 86, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ud-feature-card:hover::after {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.card-subtitle {
  font-size: 12px;
  color: var(--body-color);
  margin: 0;
}

.card-check {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0;
  transition: all 0.3s ease;
}

.ud-feature-card:hover .card-check {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary-color);
}

.card-balance {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 4px 0;
}

.card-type {
  font-size: 11px;
  color: var(--body-color);
  margin: 0 0 12px 0;
}

.card-number {
  font-size: 12px;
  color: var(--body-color);
  margin: 0 0 8px 0;
}

.card-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--body-color);
  margin: 0;
  padding: 0 8px;
  gap: 8px;
}

.card-details span {
  font-size: 10px;
  color: var(--body-color);
  opacity: 0.8;
  padding: 4px 6px;
  background: rgba(48, 86, 211, 0.05);
  border-radius: 4px;
  white-space: nowrap;
}

.ud-feature-chart {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
  max-width: 240px;
  height: 150px;
  min-height: 150px;
  box-shadow: 0 6px 24px rgba(48, 86, 211, 0.1);
  border: 1px solid rgba(48, 86, 211, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.ud-feature-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.1), transparent);
  transition: left 0.6s ease;
}

.ud-feature-chart:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.25);
  border-color: var(--primary-color);
}

.ud-feature-chart:hover::before {
  left: 100%;
}

.ud-feature-chart::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.05) 0%, transparent 50%, rgba(48, 86, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ud-feature-chart:hover::after {
  opacity: 1;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.chart-dropdown {
  font-size: 12px;
  color: var(--body-color);
  cursor: pointer;
  margin: 0;
}

.chart-container {
  position: relative;
  height: auto;
  min-height: 120px;
  flex: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.chart-y-axis {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: var(--body-color);
  width: 25px;
  min-height: 120px;
}

.chart-y-axis span {
  margin: 0;
}

.chart-graph {
  position: absolute;
  left: 30px;
  top: 0;
  width: calc(100% - 30px);
  height: 100%;
  min-height: 120px;
  transition: all 0.3s ease;
}

.ud-feature-chart:hover .chart-graph path {
  stroke-width: 3;
  filter: drop-shadow(0 0 5px rgba(48, 86, 211, 0.5));
}

.ud-feature-chart:hover .chart-graph circle {
  r: 6;
  filter: drop-shadow(0 0 3px rgba(48, 86, 211, 0.5));
}

.chart-tooltip {
  position: absolute;
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.chart-x-axis {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--body-color);
  min-height: 20px;
}

.chart-x-axis span {
  margin: 0;
}

.ud-feature-progress {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  width: 100%;
  max-width: 240px;
  height: 150px;
  min-height: 150px;
  box-shadow: 0 6px 24px rgba(48, 86, 211, 0.1);
  border: 1px solid rgba(48, 86, 211, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.ud-feature-progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.1), transparent);
  transition: left 0.6s ease;
}

.ud-feature-progress:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.25);
  border-color: var(--primary-color);
}

.ud-feature-progress:hover::before {
  left: 100%;
}

.ud-feature-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.05) 0%, transparent 50%, rgba(48, 86, 211, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ud-feature-progress:hover::after {
  opacity: 1;
}

.progress-header {
  margin-bottom: 15px;
}

.progress-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.progress-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}

.progress-subtitle {
  font-size: 12px;
  color: var(--body-color);
  margin: 0 0 20px 0;
}

.progress-bar-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  overflow: hidden;
  flex-shrink: 0;
  height: auto;
  min-height: 40px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(48, 86, 211, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 12.5%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.ud-feature-progress:hover .progress-fill {
  width: 15%;
  box-shadow: 0 0 10px rgba(48, 86, 211, 0.5);
}

.progress-percentage {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  min-width: 40px;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .ud-feature-card,
  .ud-feature-chart,
  .ud-feature-progress {
    max-width: 260px;
    height: 170px;
  }
  
  .card-visual-section {
    min-height: 190px;
    padding: 20px;
  }
  
  .card-content-section {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .ud-feature-card,
  .ud-feature-chart,
  .ud-feature-progress {
    max-width: 240px;
    height: 160px;
  }
  
  .card-visual-section {
    min-height: 180px;
    padding: 18px;
  }
  
  .card-content-section {
    padding: 18px;
  }
  
  .card-balance {
    font-size: 20px;
  }
  
  .progress-amount {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .ud-feature-modern-card {
    margin: 0 5px 15px 5px;
    border-radius: 16px;
    height: auto;
    min-height: 320px;
    max-height: none;
  }
  
  .ud-feature-card,
  .ud-feature-chart,
  .ud-feature-progress {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: none;
    padding: 16px;
    border-radius: 12px;
  }
  
  .card-visual-section {
    height: auto;
    min-height: 160px;
    max-height: none;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .card-content-section {
    padding: 16px 12px 14px 12px;
    flex: 1;
    min-height: 120px;
  }
  
  .step-indicator {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .step-line {
    height: 1.5px;
  }
  
  .ud-feature-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
  }
  
  .ud-feature-desc {
    font-size: 13px;
    line-height: 18px;
    color: #64748b;
    font-weight: 400;
  }
  
  .ud-single-feature {
    margin-bottom: 24px;
  }
  
  .ud-feature-modern-card {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .ud-feature-modern-card {
    margin: 0 3px 12px 3px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(48, 86, 211, 0.08);
    border: 1px solid rgba(48, 86, 211, 0.08);
    height: auto;
    min-height: 300px;
    max-height: none;
  }
  
  .ud-feature-card,
  .ud-feature-chart,
  .ud-feature-progress {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: none;
    padding: 12px;
    border-radius: 10px;
  }
  
  .card-visual-section {
    height: auto;
    min-height: 140px;
    max-height: none;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .card-content-section {
    padding: 16px 12px 14px 12px;
    background: linear-gradient(135deg, rgba(48, 86, 211, 0.03) 0%, rgba(48, 86, 211, 0.06) 100%);
    min-height: 100px;
  }
  
  .card-balance {
    font-size: 16px;
    margin: 0 0 6px 0;
  }
  
  .progress-amount {
    font-size: 14px;
    margin: 0 0 6px 0;
  }
  
  .chart-container {
    height: auto;
    min-height: 120px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .chart-y-axis {
    min-height: 120px;
  }
  
  .chart-graph {
    min-height: 120px;
  }
  
  .progress-bar-container {
    min-height: 40px;
  }
  
  .chart-graph svg {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
  }
  
  .step-indicator {
    gap: 8px;
    margin-bottom: 14px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  
  .step-line {
    height: 1px;
  }
  
  .ud-feature-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .ud-feature-desc {
    font-size: 13px;
    line-height: 18px;
    margin: 0;
    color: var(--body-color);
  }
  
  /* Mobile-specific card improvements */
  .card-header {
    margin-bottom: 12px;
  }
  
  .card-title {
    font-size: 13px;
    margin: 0;
  }
  
  .card-subtitle {
    font-size: 11px;
    margin: 0;
  }
  
  .card-type {
    font-size: 11px;
    margin: 0 0 12px 0;
  }
  
  .card-number {
    font-size: 12px;
    margin: 0 0 8px 0;
  }
  
  .card-details {
    font-size: 10px;
    margin: 0;
    padding: 0 4px;
    gap: 4px;
  }
  
  .card-details span {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 3px;
  }
  
  .chart-title {
    font-size: 13px;
    margin: 0;
  }
  
  .chart-dropdown {
    font-size: 11px;
    margin: 0;
  }
  
  .progress-title {
    font-size: 13px;
    margin: 0;
  }
  
  .progress-subtitle {
    font-size: 11px;
    margin: 0 0 15px 0;
  }
  
  .progress-percentage {
    font-size: 12px;
    margin: 0;
  }
  
  /* Disable hover effects on mobile for better performance */
  .ud-feature-modern-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(48, 86, 211, 0.08);
  }
  
  .ud-feature-modern-card:hover::before {
    left: -100%;
  }
  
  .ud-feature-modern-card:hover::after {
    opacity: 0;
  }
  
  /* Add touch-friendly active states */
  .ud-feature-modern-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 12px rgba(48, 86, 211, 0.12);
  }
  
  /* Improve chart readability on mobile */
  .chart-y-axis span {
    font-size: 9px;
  }
  
  .chart-x-axis span {
    font-size: 9px;
  }
  
  .chart-tooltip {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* ===== About CSS ===== */
.ud-about {
  background: #f3f4fe;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .ud-about {
    padding: 80px 0;
  }
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}

@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px;
  }
}

.ud-about-content {
  max-width: 500px;
}

.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--primary-color);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.ud-about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.ud-single-pricing {
  margin-bottom: 30px;
  background: var(--white);
  border: 2px solid #e8f0ff;
  border-radius: 16px;
  text-align: center;
  padding: 35px 25px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(48, 86, 211, 0.08);
  overflow: hidden;
}

.ud-single-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3056d3, #179bee);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ud-single-pricing:hover::before {
  opacity: 1;
}

.ud-single-pricing:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.15);
  border-color: #3056d3;
}

.ud-single-pricing.active {
  background: linear-gradient(135deg, #3056d3 0%, #179bee 100%);
  border: none;
  padding: 45px 25px;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.25);
}

.ud-single-pricing.active::before {
  opacity: 1;
  background: linear-gradient(90deg, #ffffff, #f0f4ff);
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4,
.ud-single-pricing.active .price-subtitle {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li i {
  color: #4ade80;
}

.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  background: var(--primary-color);
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #13c296;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 25px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Pricing Visual Elements */
.pricing-visual {
  margin-bottom: 20px;
  position: relative;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-icon i {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.ud-single-pricing:hover .pricing-icon {
  background: linear-gradient(135deg, #3056d3, #179bee);
  transform: scale(1.1);
}

.ud-single-pricing:hover .pricing-icon i {
  color: var(--white);
}

.ud-single-pricing.active .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
}

.ud-single-pricing.active .pricing-icon i {
  color: var(--white);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ud-single-pricing.active .pricing-badge {
  background: rgba(255, 255, 255, 0.2);
}

.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* Price Display */
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.price-display .currency {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin-right: 2px;
}

.price-display .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-display .period {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  margin-left: 4px;
}

.ud-single-pricing.active .price-display .currency,
.ud-single-pricing.active .price-display .amount {
  color: var(--white);
}

.ud-single-pricing.active .price-display .period {
  color: rgba(255, 255, 255, 0.8);
}

.price-subtitle {
  font-size: 13px;
  color: var(--body-color);
  margin-bottom: 25px;
  font-weight: 400;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 30px;
}

.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  text-align: left;
}

.ud-single-pricing .ud-pricing-body li i {
  color: #10b981;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.ud-single-pricing .ud-main-btn {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.ud-single-pricing .ud-border-btn {
  border: 2px solid #e8f0ff;
  color: var(--primary-color);
  background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(48, 86, 211, 0.3);
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
  border: 2px solid transparent;
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Pricing Features Grid */
.pricing-features {
  margin-top: 40px;
  position: relative;
}

.pricing-features::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3056d3, #179bee);
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.feature-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(48, 86, 211, 0.1);
  box-shadow: 0 4px 20px rgba(48, 86, 211, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(48, 86, 211, 0.05), transparent);
  transition: left 0.6s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(48, 86, 211, 0.15);
  border-color: rgba(48, 86, 211, 0.2);
}

.feature-item i {
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.feature-item:nth-child(1) i {
  color: #10b981;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.feature-item:nth-child(2) i {
  color: #f59e0b;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.feature-item:nth-child(3) i {
  color: #ef4444;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}

.feature-item:nth-child(4) i {
  color: #8b5cf6;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.feature-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.feature-item:hover h4 {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.feature-item p {
  font-size: 11px;
  color: var(--body-color);
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  opacity: 0.85;
}

.feature-item:hover p {
  color: #4b5563;
  opacity: 1;
}

/* Banking-style animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(48, 86, 211, 0.2);
  }
  50% {
    box-shadow: 0 8px 35px rgba(48, 86, 211, 0.4);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.feature-item {
  animation: float 6s ease-in-out infinite;
}

.feature-item:nth-child(1) {
  animation-delay: 0s;
}

.feature-item:nth-child(2) {
  animation-delay: 1.5s;
}

.feature-item:nth-child(3) {
  animation-delay: 3s;
}

.feature-item:nth-child(4) {
  animation-delay: 4.5s;
}

.feature-item:hover {
  animation: none;
}

.feature-item:nth-child(1):hover i {
  animation: pulse-glow 2s ease-in-out infinite;
}

.feature-item:nth-child(2):hover i {
  animation: pulse-glow 2s ease-in-out infinite;
}

.feature-item:nth-child(3):hover i {
  animation: pulse-glow 2s ease-in-out infinite;
}

.feature-item:nth-child(4):hover i {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 991px) {
  .ud-single-pricing.active {
    transform: none;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .ud-single-pricing {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .ud-single-pricing.active {
    padding: 35px 15px;
  }
  
  .pricing-icon {
    width: 50px;
    height: 50px;
  }
  
  .pricing-icon i {
    font-size: 20px;
  }
  
  .price-display .amount {
    font-size: 28px;
  }
  
  .price-display .currency {
    font-size: 14px;
  }
  
  .price-display .period {
    font-size: 12px;
  }
  
  .ud-single-pricing .ud-pricing-header h3 {
    font-size: 18px;
  }
  
  .ud-single-pricing .ud-pricing-body li {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .ud-single-pricing .ud-pricing-body li i {
    font-size: 14px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    padding: 20px 15px;
    animation: none;
  }
  
  .feature-item i {
    font-size: 20px;
    width: 50px !important;
    height: 50px !important;
  }
  
  .feature-item h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .feature-item p {
    font-size: 10px;
  }
  
  .feature-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ud-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.02) 0%, rgba(48, 86, 211, 0.05) 100%);
  z-index: -1;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(48, 86, 211, 0.08);
  box-shadow: 0 8px 32px rgba(48, 86, 211, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ud-single-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3056d3, #4f46e5);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ud-single-faq:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(48, 86, 211, 0.12);
  border-color: rgba(48, 86, 211, 0.15);
}

.ud-single-faq:hover::before {
  transform: scaleX(1);
}

.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: flex;
  width: 100%;
  align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  opacity: 0.9;
  padding: 24px 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.ud-single-faq .ud-faq-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
  }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.08) 0%, rgba(48, 86, 211, 0.12) 100%);
  border-radius: 12px;
  color: var(--primary-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ud-single-faq .ud-faq-btn span.icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.1) 0%, rgba(48, 86, 211, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ud-single-faq:hover .ud-faq-btn span.icon {
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.12) 0%, rgba(48, 86, 211, 0.18) 100%);
  transform: scale(1.05);
}

.ud-single-faq:hover .ud-faq-btn span.icon::before {
  opacity: 1;
}

.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-faq-body {
  padding: 20px 28px 24px;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.02) 0%, rgba(48, 86, 211, 0.04) 100%);
  margin: 0 28px 24px;
  border-radius: 12px;
  border-left: 3px solid rgba(48, 86, 211, 0.1);
  transition: all 0.3s ease;
}

.ud-single-faq:hover .ud-faq-body {
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.04) 0%, rgba(48, 86, 211, 0.06) 100%);
  border-left-color: rgba(48, 86, 211, 0.2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 16px 20px 20px;
    margin: 0 20px 20px;
    font-size: 14px;
  }
  
  .ud-single-faq .ud-faq-btn {
    padding: 20px 24px;
    font-size: 15px;
  }
  
  .ud-single-faq .ud-faq-btn span.icon {
    width: 34px;
    height: 34px;
    margin-right: 16px;
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
  padding-bottom: 90px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .ud-single-testimonial {
    padding: 20px 15px;
    border-radius: 16px;
    margin-bottom: 30px;
  }
  
  .user-avatar img {
    width: 45px;
    height: 45px;
  }
  
  .user-info h4 {
    font-size: 14px;
  }
  
  .user-info p {
    font-size: 11px;
  }
  
  .user-stats {
    gap: 6px;
  }
  
  .stat-item {
    font-size: 10px;
    padding: 2px 5px;
  }
  
  .ud-testimonial-content p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .testimonial-header {
    margin-bottom: 15px;
  }
  
  .ud-testimonial-content {
    margin-bottom: 15px;
  }
  
  .testimonial-footer {
    padding-top: 12px;
  }
  
  .usage-time {
    font-size: 11px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .trust-item {
    padding: 12px 8px;
  }
  
  .trust-icon {
    width: 28px;
    height: 28px;
  }
  
  .trust-icon i {
    font-size: 12px;
  }
  
  .trust-content h3 {
    font-size: 14px;
  }
  
  .trust-content p {
    font-size: 9px;
  }
}

@media (max-width: 575px) {
  .ud-single-testimonial {
    padding: 18px 12px;
    margin-bottom: 25px;
  }
  
  .user-avatar img {
    width: 40px;
    height: 40px;
  }
  
  .user-info h4 {
    font-size: 13px;
  }
  
  .user-info p {
    font-size: 10px;
  }
  
  .stat-item {
    font-size: 9px;
    padding: 2px 4px;
  }
  
  .ud-testimonial-content p {
    font-size: 12px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .trust-item {
    padding: 10px 6px;
  }
  
  .trust-icon {
    width: 24px;
    height: 24px;
  }
  
  .trust-icon i {
    font-size: 10px;
  }
  
  .trust-content h3 {
    font-size: 12px;
  }
  
  .trust-content p {
    font-size: 8px;
  }
}

.ud-single-testimonial {
  background: var(--white);
  border: 1px solid rgba(48, 86, 211, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(48, 86, 211, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ud-single-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3056d3, #179bee);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ud-single-testimonial:hover::before {
  opacity: 1;
}

.ud-single-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.15);
  border-color: rgba(48, 86, 211, 0.2);
}

.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}

.ud-single-testimonial .ud-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

/* New Testimonial Components */
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.user-avatar {
  position: relative;
  margin-right: 15px;
}

.user-avatar img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid rgba(48, 86, 211, 0.1);
  transition: all 0.3s ease;
}

.ud-single-testimonial:hover .user-avatar img {
  border-color: rgba(48, 86, 211, 0.3);
  transform: scale(1.05);
}

.verification-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.verification-badge i {
  color: var(--white);
  font-size: 10px;
}

.user-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.user-info p {
  font-size: 12px;
  color: var(--body-color);
  margin-bottom: 6px;
}

.user-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  white-space: nowrap;
}

.stat-item i {
  margin-right: 4px;
  font-size: 10px;
}

.stat-item:nth-child(2) {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.quote-icon i {
  color: var(--primary-color);
  font-size: 18px;
}

.ud-testimonial-content {
  position: relative;
  margin-bottom: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ud-testimonial-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body-color);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(48, 86, 211, 0.1);
  margin-top: auto;
}

.usage-time {
  font-size: 12px;
  color: var(--body-color);
  opacity: 0.7;
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 60px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(48, 86, 211, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(48, 86, 211, 0.05);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(48, 86, 211, 0.12);
  border-color: rgba(48, 86, 211, 0.1);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #3056d3, #179bee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trust-icon i {
  color: var(--white);
  font-size: 24px;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
}

.trust-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.trust-content p {
  font-size: 14px;
  color: var(--body-color);
  margin: 0;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
          filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}



/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .ud-contact {
    padding: 80px 0;
  }
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f3f4fe;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}

.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(48, 86, 211, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(48, 86, 211, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ud-contact-info-wrapper .ud-single-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3056d3, #4f46e5);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ud-contact-info-wrapper .ud-single-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(48, 86, 211, 0.12);
  border-color: rgba(48, 86, 211, 0.15);
}

.ud-contact-info-wrapper .ud-single-info:hover::before {
  transform: scaleX(1);
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.08) 0%, rgba(48, 86, 211, 0.12) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.ud-contact-info-wrapper .ud-info-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.1) 0%, rgba(48, 86, 211, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ud-contact-info-wrapper .ud-single-info:hover .ud-info-icon {
  background: linear-gradient(135deg, rgba(48, 86, 211, 0.12) 0%, rgba(48, 86, 211, 0.18) 100%);
  transform: scale(1.05);
}

.ud-contact-info-wrapper .ud-single-info:hover .ud-info-icon::before {
  opacity: 1;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.ud-contact-info-wrapper .ud-single-info:hover .ud-info-meta h5 {
  color: var(--primary-color);
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
  color: #64748b;
  transition: color 0.3s ease;
}

.ud-contact-form-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(48, 86, 211, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(48, 86, 211, 0.08);
  padding: 60px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ud-contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3056d3, #4f46e5);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ud-contact-form-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(48, 86, 211, 0.12);
  border-color: rgba(48, 86, 211, 0.15);
}

.ud-contact-form-wrapper:hover::before {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }
  
  .ud-contact-info-wrapper .ud-single-info {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .ud-contact-info-wrapper .ud-info-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-right: 16px;
  }
  
  .ud-contact-info-wrapper .ud-info-meta h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .ud-contact-info-wrapper .ud-info-meta p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .ud-contact-form-wrapper .ud-form-group input,
  .ud-contact-form-wrapper .ud-form-group textarea {
    height: 45px;
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .ud-contact-form-wrapper .ud-form-group textarea {
    height: 100px;
    padding: 16px;
    min-height: 100px;
  }
  
  .ud-contact-form-wrapper .ud-form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .ud-contact-info-wrapper .ud-single-info {
    padding: 16px;
    margin-bottom: 16px;
    width: 100%;
  }
  
  .ud-contact-info-wrapper .ud-info-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-right: 12px;
  }
  
  .ud-contact-info-wrapper .ud-info-meta h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .ud-contact-info-wrapper .ud-info-meta p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .ud-contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .ud-contact-form-wrapper .ud-form-group input,
  .ud-contact-form-wrapper .ud-form-group textarea {
    height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .ud-contact-form-wrapper .ud-form-group textarea {
    height: 90px;
    padding: 14px;
    min-height: 90px;
  }
  
  .ud-contact-form-wrapper .ud-form-group label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--heading-color);
  position: relative;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
  margin-bottom: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.ud-contact-form-wrapper .ud-form-group label::after {
  content: '*';
  color: #ef4444;
  margin-left: 4px;
  font-weight: 700;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  border: 1px solid rgba(48, 86, 211, 0.1);
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  color: var(--heading-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group textarea {
  height: 120px;
  padding: 20px;
  min-height: 120px;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(48, 86, 211, 0.1);
  transform: translateY(-2px);
}

.ud-contact-form-wrapper .ud-form-group input::placeholder,
.ud-contact-form-wrapper .ud-form-group textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
  transition: color 0.3s ease;
}

.ud-contact-form-wrapper .ud-form-group input:focus::placeholder,
.ud-contact-form-wrapper .ud-form-group textarea:focus::placeholder {
  color: #64748b;
}

.ud-contact-form-wrapper .ud-form-group:hover input,
.ud-contact-form-wrapper .ud-form-group:hover textarea {
  border-color: rgba(48, 86, 211, 0.2);
  box-shadow: 0 4px 12px rgba(48, 86, 211, 0.08);
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: var(--heading-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.ud-widget .ud-widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
  color: var(--primary-color);
}

.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: center;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--primary-color);
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Professional Feature Dots ====== */
.feature-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.6;
  animation: subtle-pulse 2s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes subtle-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Mobile responsive */
@media (max-width: 767px) {
  .dot {
    width: 5px;
    height: 5px;
  }
  
  .feature-dots {
    gap: 5px;
    margin-top: 10px;
  }
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f8fafc;
  min-height: 100vh;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(48, 86, 211, 0.08);
  border: 1px solid rgba(48, 86, 211, 0.08);
  transition: all 0.3s ease;
}

.ud-login-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(48, 86, 211, 0.15);
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
  position: relative;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 20px;
  background: var(--white);
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(48, 86, 211, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.ud-login-form .ud-form-group input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: var(--primary-color);
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}

.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ud-single-blog .ud-blog-title a {
  color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}

.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}

.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}

@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}

.ud-blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46.88%, rgba(48, 86, 211, 0)), color-stop(93.23%, rgba(13, 21, 49, 0.72)));
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-overlay-content .ud-blog-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}

.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}

.ud-blog-overlay-content .ud-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-overlay-content .ud-blog-meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}

.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}

.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}

.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}

.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .ud-blog-details-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ud-blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}

.ud-blog-tags li {
  margin-right: 14px;
}

.ud-blog-tags li:last-child {
  margin-right: 0px;
}

.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}

.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-blog-share-links li {
  margin-right: 14px;
}

.ud-blog-share-links li:last-child {
  margin-right: 0px;
}

.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.ud-blog-share-links a.facebook {
  background: #4064ac;
}

.ud-blog-share-links a.facebook:hover {
  background: #315294;
}

.ud-blog-share-links a.twitter {
  background: #1c9cea;
}

.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}

.ud-blog-share-links a.linkedin {
  background: #007ab9;
}

.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}

.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}

.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ====== Money Insight Card Styles ====== */
.money-insight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.money-insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3056d3, #4f7cff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.money-insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(48, 86, 211, 0.1);
}

.money-insight-card:hover::before {
  opacity: 1;
}

.insight-image {
  margin-bottom: 20px;
  text-align: center;
}

.insight-img {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.money-insight-card:hover .insight-img {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 12px;
}

.insight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3056d3 0%, #4f7cff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(48, 86, 211, 0.2);
}

.insight-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 0;
}

.insight-content {
  margin-bottom: 20px;
}

/* Live Dashboard Styles */
.balance-display {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 8px;
}

.current-balance {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.2;
}

.balance-change {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 16px;
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.balance-change.positive {
  background: rgba(19, 194, 150, 0.1);
  color: #059669;
}

.quick-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
  margin-bottom: 20px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.stat-value {
  font-size: 13px;
  font-weight: 600;
}

.stat-value.income {
  color: #16a34a;
}

.stat-value.spent {
  color: #dc2626;
}

.stat-value.saved {
  color: #2563eb;
}

/* Analytics Chart Styles */
.analytics-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.chart-ring {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    #3056d3 0deg 115deg,
    #13c296 115deg 198deg,
    #fbbf24 198deg 260deg,
    #ef4444 260deg 320deg,
    #f1f5f9 320deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-center {
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.center-text {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.center-subtitle {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

.chart-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  padding: 0 4px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-color.food {
  background: #3056d3;
}

.legend-color.transport {
  background: #13c296;
}

.legend-color.shopping {
  background: #fbbf24;
}

.legend-color.entertainment {
  background: #ef4444;
}

/* Goal Tracker Styles */
.goal-progress-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.goal-info {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.goal-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.2;
}

.goal-target {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

.progress-bar-large {
  position: relative;
  height: 12px;
  background: #f1f5f9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0 4px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #13c296, #059669);
  border-radius: 6px;
  transition: width 0.6s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-label {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.goal-details {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-icon {
  width: 32px;
  height: 32px;
  background: rgba(48, 86, 211, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3056d3;
  font-size: 14px;
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

.detail-value {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.insight-footer {
  margin-top: auto;
  padding: 24px 12px 0px 12px;
  border-top: 1px solid #f1f5f9;
}

/* Add border to all cards to ensure consistency */
.money-insight-card {
  border-bottom: 2px solid #e2e8f0;
}

.insight-footer h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.2;
  padding: 0 4px;
}

.insight-footer p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  padding: 0 4px 0 4px;
}

/* Spending Chart Styles */
.ud-spending-chart {
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 220px;
  display: flex;
  flex-direction: column;
}

.chart-header {
  text-align: center;
  margin-bottom: 12px;
}

.chart-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.2;
}

.chart-period {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
}

.spending-categories {
  margin-bottom: 12px;
  flex: 1;
}

.category-item {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.category-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
}

.category-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.category-amount {
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

.category-percentage {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  min-width: 35px;
  text-align: right;
}

.total-spending {
  text-align: center;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-top: auto;
}

.total-spending span {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.2;
}

.spending-amount {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-top: 4px;
  line-height: 1.2;
}

/* Savings Goal Styles */
.ud-savings-goal {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  border: 1px solid #bae6fd;
  height: 220px;
  display: flex;
  flex-direction: column;
}

.goal-header {
  margin-bottom: 12px;
}

.goal-title {
  font-size: 16px;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 4px;
  line-height: 1.2;
}

.goal-target {
  font-size: 13px;
  color: #0369a1;
  font-weight: 500;
  line-height: 1.2;
}

.goal-progress {
  margin-bottom: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  position: relative;
  display: inline-block;
}

.progress-circle svg {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-percentage {
  font-size: 16px;
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 2px;
  line-height: 1.2;
}

.progress-amount {
  font-size: 12px;
  color: #0369a1;
  font-weight: 600;
  line-height: 1.2;
}

.goal-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
}

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

.stat-label {
  font-size: 11px;
  color: #0369a1;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #0c4a6e;
  line-height: 1.2;
}

.goal-actions {
  margin-top: 12px;
}

.goal-btn {
  background: linear-gradient(135deg, #13c296 0%, #059669 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.goal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 194, 150, 0.3);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .money-insight-card {
    padding: 24px 24px 28px 24px;
    height: 300px;
  }
  
  .current-balance {
    font-size: 28px;
  }
  
  .center-text {
    font-size: 14px;
  }
  
  .chart-ring {
    width: 100px;
    height: 100px;
  }
  
  .ring-center {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 991px) {
  .goal-stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .account-item {
    padding: 10px 0;
  }
  
  .account-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  .money-insight-card {
    margin-bottom: 16px;
    padding: 20px 16px;
  }
  
  .insight-image {
    margin-bottom: 16px;
  }
  
  .insight-img {
    max-width: 70%;
  }
  
  .insight-content {
    margin-bottom: 0;
  }
  
  .insight-title {
    font-size: 18px;
  }
  }
  
  .center-subtitle {
    font-size: 9px;
  }
  
  .chart-legend {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .legend-item {
    font-size: 11px;
  }
  
  .goal-name {
    font-size: 16px;
  }
  
  .goal-target {
    font-size: 13px;
  }
  
  .detail-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .detail-value {
    font-size: 13px;
  }
  
  .insight-footer h3 {
    font-size: 15px;
  }
  
  .insight-footer p {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .money-insight-card {
    padding: 16px 12px 20px 12px;
  }
  
  .insight-footer {
    padding: 12px 6px 0px 6px;
  }
  
  .insight-footer h3,
  .insight-footer p {
    padding: 0 3px;
  }
  
  .account-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
  }
  
  .account-icon {
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .account-info {
    flex: 1;
    min-width: 0;
  }
  
  .account-balance {
    align-self: flex-end;
    flex-shrink: 0;
  }
  
  .category-item {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
  }
  
  .category-color {
    flex-shrink: 0;
  }
  
  .category-info {
    flex: 1;
    min-width: 0;
  }
  
  .category-percentage {
    align-self: flex-end;
    flex-shrink: 0;
  }
  
  .ud-banking-dashboard,
  .ud-spending-chart,
  .ud-savings-goal {
    padding: 10px;
    height: 200px;
  }
}

/* Banking Feature Cards Mobile Styles */
@media (max-width: 767px) {
  .banking-feature-card {
    margin-bottom: 20px;
    border-radius: 20px;
  }
  
  .feature-visual-section {
    padding: 20px;
    min-height: 180px;
  }
  
  .feature-content-section {
    padding: 16px;
  }
  
  .feature-icon-large {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .feature-stats {
    gap: 16px;
  }
  
  .feature-stats .stat-number {
    font-size: 18px;
  }
  
  .feature-stats .stat-label {
    font-size: 11px;
  }
}

/* GitHub Logo Styling */
.github-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #24292e 0%, #2f363d 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.15);
  position: relative;
  overflow: hidden;
}

.github-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #586069 0%, #24292e 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.github-link:hover::before {
  opacity: 1;
}

.github-link i {
  font-size: 24px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.github-link:hover i {
  transform: scale(1.1);
}

.github-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 41, 46, 0.25);
}

.github-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.15);
}

/* Responsive adjustments for GitHub logo */
@media (max-width: 767px) {
  .github-link {
    width: 44px;
    height: 44px;
  }
  
  .github-link i {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .github-link {
    width: 40px;
    height: 40px;
  }
  
  .github-link i {
    font-size: 20px;
  }
}

/* Feature Image Styling */
.feature-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  object-fit: cover;
}

.ud-feature-modern-card:hover .feature-image {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-visual-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 200px;
}

/* Responsive adjustments for feature images */
@media (max-width: 1199px) {
  .feature-image {
    max-width: 280px;
  }
}

@media (max-width: 991px) {
  .feature-image {
    max-width: 260px;
  }
  
  .card-visual-section {
    min-height: 180px;
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .feature-image {
    max-width: 240px;
  }
  
  .card-visual-section {
    min-height: 160px;
    padding: 14px;
  }
}

@media (max-width: 575px) {
  .feature-image {
    max-width: 220px;
  }
  .card-visual-section {
    min-height: 140px;
    padding: 12px;
  }
}

/* ====== Step Cards Styling ====== */
.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3056d3, #4f7cff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(48, 86, 211, 0.1);
}

.step-card:hover::before {
  opacity: 1;
}

.step-image {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-img {
  max-width: 75%;
  height: auto;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.step-card:hover .step-img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}

.step-content {
  padding: 0 10px;
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #3056d3, #4f7cff);
  color: white;
  font-size: 16px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 3px 12px rgba(48, 86, 211, 0.25);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 5px 18px rgba(48, 86, 211, 0.35);
}

.step-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: var(--primary-color);
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-color);
  margin: 0;
  font-weight: 400;
}

/* Responsive adjustments for step cards */
@media (max-width: 1199px) {
  .step-card {
    margin-bottom: 35px;
    padding: 28px 18px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .step-card {
    margin-bottom: 30px;
    padding: 25px 16px;
  }
  
  .step-image {
    margin-bottom: 22px;
  }
  
  .step-content {
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .step-card {
    margin-bottom: 25px;
    padding: 22px 14px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .step-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .step-description {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .step-card {
    margin-bottom: 20px;
    padding: 20px 12px;
  }
  
  .step-image {
    margin-bottom: 20px;
  }
  
  .step-content {
    padding: 0 5px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .step-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .step-description {
    font-size: 12px;
  }
}