@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('derivox-dashboard/main.css');

.rozha-one-regular {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* ===== NAVBAR STYLES ===== */

/* Base Navbar Structure */
.treasury-header {
  transition: all 0.3s ease;
}

.treasury-header .navbar {
  padding: 0;
  position: relative;

  height: auto;
  background-color: var(--yt-yellow);
  border-bottom: 1px solid #e5e5e5;
}

/* Navbar Brand/Logo */
.navbar-brand {
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 55px;
  width: auto;
  height: 45px;
  transition: height 0.3s ease;
}

/* Main Navigation */
.treasury-header .navbar .menu {
  padding-left: 30px;
  font-size: 15px;
  display: flex;
  flex-wrap: nowrap;
}

.treasury-header .navbar .nav-item {
  position: relative;
  margin: 0 5px;
  height: auto;
}

.treasury-header .navbar .nav-link {
  padding: 30px 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.treasury-header .navbar .nav-link:hover {
  color: #e7e7e7;
}

.treasury-header .navbar .menu .nav-link.active {
  color: var(--yt-charcoal);
  position: relative;
}

.treasury-header .navbar .menu .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--yt-charcoal);
}

/* ===== DROPDOWN STYLES ===== */

/* Base Dropdown Styles */
.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
  padding: 10px;
  width: 300px;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
}

.navbar .dropdown-item {
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.2s ease;
  color: #000;
}

.navbar .dropdown-item:hover {
  background-color: #f0f0f0;
  color: #000;
}

.navbar .dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0, 0, 0, 0.1);
}

/* ===== NOTIFICATION STYLES ===== */

.notification_dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  width: 40rem !important;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);

  margin-top: 0 !important;
  border-radius: 8px;
}

.notification_dropdown li {
  margin-bottom: 8px;
}

.notification_dropdown li:last-child {
  margin-bottom: 0;
}

.notification_dropdown .unread_notification {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.notification_dropdown .unread_notification .red-dot {
  background: #ff6b6b;
}

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

/* ===== GENERAL STYLES ===== */

.navbar-brand-footer img {
  max-height: 120px;
}
.w-fit {
  width: fit-content;
}
.w-2rem {
  width: 2rem;
}

/* tab nav styles */
nav-pointer:hover {
  cursor: pointer;
}

/* notification message style */
.notification {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 50%;
  z-index: 1000;
}

.right-center {
  right: 25%;
}

.unread_notification_count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  height: 10px;
  width: 10px;
  font-size: 10px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Link Styling */
.no-underline {
  text-decoration: none;
  color: black;
}
.underline {
  text-decoration: underline;
}
.unread_notification a {
  font-weight: 600;
}

.unread_notification .red-dot {
  height: 10px;
  width: 10px;
  background-color: rgb(255, 0, 0);
}

.list-style-none {
  list-style: none;
}
.full-width {
  width: 100%;
}

.action-panel {
  display: flex;
  gap: 10px;
}

/* Off Canvas Style */
.offcanvas-end {
  min-width: 33.33%; /* Ensures the offcanvas is at least 1/3 of the screen width */
}

/* Resize the offcanvas */
.resizable-offcanvas {
  overflow: auto;
  max-width: 100%;
  /* Prevent offcanvas from exceeding screen width */
  padding-left: 10px;
}

.resizable-handle {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Change to left since it's a right-side offcanvas */
  cursor: ew-resize;
  background-color: rgba(0, 0, 0, 0.1);
  /* Optional for visibility */
}

/* Add a vertical line in the middle of the handle */
.resizable-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  /* Darker color for the line */
}

/* Wagtail Styles */
wagtail-userbar::part(userbar) {
  bottom: 30px;
}

/* Under Construction Container */
.under-construction-container {
  height: 100vh;
  background: url('../images/UnderConstruction_Reduced_Transparent.png')
    no-repeat center center fixed;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}

.under-construction-container {
  background-color: e8eae9;
}

#outer-site-container {
  min-height: 100vh;
}

.full-space {
  height: 100vh; /* This will make the div take the full height of the viewport */
  width: 100vw; /* This will make the div take the full width of the viewport */
}

.fitted-image {
  /*height: 100%;*/
  width: 100%;
  object-fit: cover; /* This will make the image cover the whole div */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-content.block-image img {
  width: 100%;
  height: auto;
}

/* CSS for the Claude AI Chat */
.chat-box-message-send {
  text-align: left;
  padding: 10px;
  background-color: #06377e;
  margin: 10px 5px 10px calc(10% - 5px);
  width: 90%;
  color: white;
}

.chat-box-input {
  position: absolute;
  bottom: 0;
  width: calc(100% - 44px);
  background: white;
}

.chat-box-message-send p {
  margin: 0;
}

.chat-box-message-receive {
  text-align: left;
  padding: 10px;
  background-color: #f0f0f0;
  margin: 10px 5px;
  width: 90%;
}

.chat-box-message-receive p {
  margin: 0;
}

.chat-box-message-receive div pre {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
}

.chat-box-message-receive div pre code {
  color: #000000;
}

.chat-box-message-info {
  text-align: center;
  padding: 10px;
  background-color: #ffffff00;
  margin: 10px 5px;
  width: 90%;
  font-style: italic;
  font-size: 0.8rem;
}

.chat-box-message-info p {
  margin: 0;
  font-size: 0.8rem;
}

.copy-to-clipboard-button {
  background-color: white !important;
  border-radius: 0 !important;
  padding: 8px !important;
  color: black !important;
  box-shadow: none !important;
  margin-right: 12px !important;
  margin-top: 7px !important;
  border: solid black 1px !important;
}

/* CTA Block */
.cta-block {
  background-color: #007bff; /* Custom blue background color */
  border-radius: 8px; /* Rounded corners */
  background-color: #007bff;
  border-radius: 8px;
}

.cta-block .cta-headline {
  font-size: 2.5rem; /* Larger font size for the headline */
  font-weight: bold; /* Bold font weight */
}

.cta-block .cta-text {
  font-size: 1.25rem; /* Larger font size for the text */
}

.cta-block .btn {
  font-size: 1.25rem; /* Larger font size for the button */
  font-weight: bold; /* Bold font weight for the button */
}

/* Jumbotron Block Styles */
.jumbotron-custom {
  min-height: 66vh; /* 2/3 of the screen height */
  background-color: #f8f9fa; /* Light gray background */
  display: flex;
  align-items: center; /* Center content vertically */
  position: relative;
  padding: 2rem; /* Space around the content */
}
.jumbotron-content {
  max-width: 60%;
}
.jumbotron-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 40%;
  height: auto;
}

/* Hero Container */
.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  opacity: 0.5;
}

#search-bar-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  align-items: center;
  backdrop-filter: blur(5px);
}

#search-bar-input.active {
  display: flex;
}

.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
}

.search-input-group {
  position: relative;
  flex-grow: 1;
  margin-right: 20px;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--body-gray);
}

.search-input {
  height: 50px;
  padding-left: 45px !important;
  padding-right: 20px;
  border: none !important;
  border-radius: 25px !important;
  background-color: var(--yt-yellow-faint) !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  background-color: white !important;
  box-shadow: 0 0 0 2px var(--yt-yellow) !important;
}

.search-close-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--yt-charcoal);
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close-btn:hover {
  background-color: var(--yt-yellow-faint);
  color: var(--yt-yellow);
  transform: rotate(90deg);
}

/*==================================================================*/
/* THEME CSS */
/*==================================================================*/
:root {
  --main-color: #313166;
  --secondary-color: #1e6ee7;
  --body-gray: #313166;
  --yt-yellow: #f9ad3a;
  --yt-yellow-dark: #b8802b;
  --yt-yellow-faint: #f9ad3a0d;
  --yt-yellow-50: #f9ad3a80;
  --yt-charcoal: #484848;
  --yt-charcoal-faint: #4848480a;
  --yt-blue: #1e6ee7;
  --yt-blue-faint: #f8fbfe;
  --yt-dark-blue: #313166;
  --color-white: #ffffff;
}
html,
body {
  font-family: 'Kumbh Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #313166;
  overflow-x: hidden;
}
.dropdown-toggle::after {
  border: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 15px;
  height: 15px;
  position: relative;
  top: 6px;
  right: 2px;
}
input,
select,
textarea:focus,
input,
select,
textarea:active {
  outline: 0 !important;
  box-shadow: none !important;
}
.main-color {
  color: var(--main-color) !important;
}
.main-color-bg {
  background-color: var(--main-color) !important;
}
.secondary-color {
  color: var(--yt-yellow) !important;
}
.secondary-color-bg {
  background-color: var(--secondary-color) !important;
}
.yt-yellow-bg {
  background-color: var(--yt-yellow) !important;
}
.yt-yellow {
  color: var(--yt-yellow) !important;
}
.yt-yellow-faint {
  color: var(--yt-yellow-faint) !important;
}
.yt-yellow-faint-bg {
  background-color: var(--yt-yellow-faint) !important;
}
.yt-charcoal {
  color: var(--yt-charcoal) !important;
}
.yt-charcoal-bg {
  background-color: var(--yt-charcoal) !important;
}
.yt-charcoal-faint {
  color: var(--yt-charcoal-faint) !important;
}
.yt-charcoal-faint-bg {
  background-color: var(--yt-charcoal-faint) !important;
}
.yt-blue {
  color: var(--yt-blue) !important;
}
.yt-blue-bg {
  background-color: var(--yt-blue) !important;
}
.yt-blue-faint {
  color: var(--yt-blue-faint) !important;
}
.yt-blue-faint-bg {
  background-color: var(--yt-blue-faint) !important;
}
.yt-dark-blue {
  color: var(--yt-dark-blue) !important;
}
.yt-dark-blue-bg {
  background-color: var(--yt-dark-blue) !important;
}
p {
  font-size: 16px;
  font-weight: 300;
}
h1 {
  font-size: 50px;
  color: #313166;
  text-transform: capitalize;
  font-weight: bold;
}
h2 {
  font-size: 50px;
  font-weight: bold;
  color: #313166;
}
h3 {
  font-size: 30px;
  font-weight: bold;
}
.btn-theme {
  position: relative;
  overflow: hidden;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  background: var(--yt-yellow);
  border: none;
  color: #ffffff;
}

.btn-theme::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
  transition: transform 0.6s ease;
}

.btn-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 173, 58, 0.2);
  background-color: var(--yt-yellow);
  color: #ffffff;
}

.btn-theme:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

.btn-theme img {
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.btn-theme:hover img {
  transform: translateX(5px);
}

.btn-theme-light {
  background-color: var(--yt-yellow-faint);
  border-radius: 6px;
  padding: 20px 40px;
  color: #ffffff;
  font-style: 18px;
}

.btn-theme-light img {
  height: 18px;
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.btn-theme-light:hover {
  background-color: var(--yt-yellow);
  color: #ffffff;
}

.btn-theme-secondary {
  background-color: var(--yt-dark-blue);
  border-radius: 6px;
  padding: 20px 40px;
  color: #ffffff;
  font-style: 18px;
  text-transform: uppercase;
}

.btn-theme-secondary {
  background-color: var(--yt-dark-blue);
  color: #ffffff;
}

.btn-transparent {
  background-color: transparent;
  border-radius: 6px;
  padding: 20px 40px;
  color: var(--yt-yellow);
  font-style: 18px;
  text-transform: uppercase;
}
.btn-transparent img {
  height: 18px;
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.btn-yt-yellow {
  background-color: var(--yt-yellow);
}

.form-control {
  border-color: #e8e9ea;
  border-radius: 6px;
}

.bg-yt-yellow {
  background-color: var(--yt-yellow);
}

.text-yt-yellow {
  color: var(--yt-yellow);
}

/* Dropdown Menu */
.treasury-header .navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  margin-top: 0;
  border-top: 3px solid var(--yt-yellow);
  position: absolute;
  z-index: 1050;
}

.treasury-header .navbar .dropdown-item {
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.treasury-header .navbar .dropdown-item:hover {
  background: var(--yt-yellow-faint);
  color: var(--yt-yellow);
  padding-left: 30px;
}

.treasury-header .navbar .menu .dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Account Search */
.treasury-header .account-search {
  align-items: center;
  position: relative;
}

.treasury-header .account-search .dropdown-menu {
  right: 0;
  left: auto !important;
  transform: none !important;
  margin-left: 0 !important;
}

.treasury-header .navbar .account-search .account {
  border-radius: 50%;
  background-color: rgba(24, 31, 41, 0.05);
}

.treasury-header .navbar .account-search .account img {
  border-radius: 50%;
  border: solid 3px transparent;
  outline: solid 2px white;
  height: 60px;
  width: 60px;
  object-fit: cover;
}

.treasury-header .navbar .account-search .nav-link {
  padding: 20px;
}

.treasury-header .navbar .account-search .dropdown-toggle::after {
  display: none;
}

/* Search Bar */
#search-bar-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: none;
  align-items: center;
}

#search-bar-input.active {
  display: flex;
}

/* HEADER CSS END */

/* FOOTER CSS */
.treasury-footer {
  background: var(--yt-yellow);
  position: relative;
}

/* Newsletter Section */
.treasury-footer .newsletter {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.05);
}

.treasury-footer .newsletter-form {
  display: flex;
  gap: 1rem;
}

.treasury-footer .newsletter form .form-control {
  border-radius: 2rem;
  padding-left: 2rem;
}

.treasury-footer .newsletter form .btn {
  padding: 17px 40px;
  height: 54px;
  border-radius: 27px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--yt-charcoal);
  border: none;
}

.treasury-footer .newsletter form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Main Footer Section */
.treasury-footer .footer-main {
  position: relative;
  background: var(--yt-yellow);
}

/* Brand Logo */
.treasury-footer .footer-brand img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.treasury-footer .footer-brand img:hover {
  transform: translateY(-3px);
}

/* Footer Links */
.treasury-footer .footer-links {
  padding: 50px 0;
}

.treasury-footer .footer-links hr {
  height: 5px;
  opacity: 1;
  margin: 0;
}

.treasury-footer .footer-links li a {
  transition: all 0.3s ease;
  opacity: 0.9;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.treasury-footer .footer-links li a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.treasury-footer .footer-links li a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.treasury-footer .footer-links li a:hover i {
  transform: translateX(3px);
}

/* Social Links */
.treasury-footer .social-links {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}

.treasury-footer .social-links a {
  text-decoration: none;
}

.treasury-footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.treasury-footer .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.treasury-footer .social-icon img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.treasury-footer .social-icon:hover img {
  transform: scale(1.1);
}

/* Policy Terms */
.treasury-footer .footer-links .social-policy .policy-terms a,
.treasury-footer .footer-links .social-policy .policy-terms span {
  color: #ffffff;
  text-decoration: none;
}

/* Copyright Bar */
.treasury-footer .copyright-bar {
  background: var(--yt-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.treasury-footer .footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.treasury-footer .footer-legal a {
  transition: all 0.3s ease;
  opacity: 0.8;
  white-space: nowrap;
  color: #ffffff;
}

.treasury-footer .footer-legal a:hover {
  opacity: 1;
}

/* FOOTER CSS END */

/* HERO SECTION CSS */
.treasury-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(53, 53, 88, 0.02) 0%,
    rgba(53, 53, 88, 0.05) 100%
  );
  overflow: hidden;
}

/* Background Effects */
.treasury-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(249, 173, 58, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(30, 110, 231, 0.05) 0%,
      transparent 50%
    );
  animation: pulseBackground 15s ease-in-out infinite alternate;
}

/* Floating Particles */
.treasury-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at center,
      var(--yt-yellow) 1px,
      transparent 1px
    ),
    radial-gradient(circle at center, var(--yt-blue) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position:
    0 0,
    20px 20px;
  opacity: 0.1;
  animation: floatingParticles 20s linear infinite;
}

/* Hero Content */
.treasury-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

/* Tagline */
.treasury-hero .rev-text {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(53, 53, 88, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  animation: slideUpFade 0.8s ease forwards;
}

.treasury-hero .rev-text:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(53, 53, 88, 0.15);
}

.treasury-hero .rev-text img {
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.treasury-hero .rev-text:hover img {
  transform: rotate(5deg);
}

/* Headline */
.treasury-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
}

/* Hero Image */
.treasury-hero .hero-img {
  position: relative;
  z-index: 2;
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.treasury-hero .hero-img img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 20px 40px rgba(53, 53, 88, 0.12),
    0 0 0 1px rgba(53, 53, 88, 0.05);
  filter: brightness(1.02) contrast(1.02);
}

/* Image Hover Effects */
.treasury-hero .hero-img:hover {
  transform: translateY(-8px);
}

.treasury-hero .hero-img:hover img {
  transform: scale(1.02);
  box-shadow:
    0 30px 60px rgba(53, 53, 88, 0.15),
    0 0 0 1px rgba(53, 53, 88, 0.08);
}

/* Button Styling */
.treasury-hero .btns .btn-theme {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.treasury-hero .btns .btn-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(53, 53, 88, 0.15);
}

/* Animations */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBackground {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatingParticles {
  0% {
    background-position:
      0 0,
      20px 20px;
  }
  100% {
    background-position:
      40px 40px,
      60px 60px;
  }
}

/* HERO SECTION CSS END */

/* Enhanced content styling */
.treasury-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.treasury-hero .rev-text {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(53, 53, 88, 0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.treasury-hero .rev-text:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(53, 53, 88, 0.15);
}

.treasury-hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
}

/* Enhanced image container */
.treasury-hero .hero-img {
  position: relative;
  z-index: 2;
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main image styling */
.treasury-hero .hero-img img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 20px 40px rgba(53, 53, 88, 0.12),
    0 0 0 1px rgba(53, 53, 88, 0.05);
  filter: brightness(1.02) contrast(1.02);
}

/* Decorative elements */
.treasury-hero .hero-img::before,
.treasury-hero .hero-img::after {
  content: '';
  position: absolute;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background gradient effect */
.treasury-hero .hero-img::before {
  inset: -10px;
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 100%
  );
  opacity: 0.08;
  z-index: -1;
  filter: blur(10px);
  transform: translateY(10px) scale(0.95);
}

/* Highlight effect */
.treasury-hero .hero-img::after {
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%,
    rgba(53, 53, 88, 0.1) 100%
  );
  z-index: 1;
  opacity: 0;
}

/* Hover animations */
.treasury-hero .hero-img:hover {
  transform: translateY(-8px);
}

.treasury-hero .hero-img:hover img {
  transform: scale(1.02);
  box-shadow:
    0 30px 60px rgba(53, 53, 88, 0.15),
    0 0 0 1px rgba(53, 53, 88, 0.08);
}

.treasury-hero .hero-img:hover::before {
  transform: translateY(16px) scale(0.9);
  opacity: 0.12;
  filter: blur(15px);
}

.treasury-hero .hero-img:hover::after {
  opacity: 1;
}

/* Button styling */
.treasury-hero .btns .btn-theme {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.treasury-hero .btns .btn-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(53, 53, 88, 0.15);
}

/* Animation keyframes */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Background Image Layer */
.treasury-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../images/home/hero-bg.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -2;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Gradient Overlay */
.treasury-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(249, 173, 58, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(30, 110, 231, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
  animation: pulseBackground 15s ease-in-out infinite alternate;
}

/* Add this new animation */
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Animated Background Elements */
/* .treasury-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(var(--yt-yellow-rgb), 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(var(--yt-blue-rgb), 0.05) 0%, transparent 50%);
  animation: pulseBackground 15s ease-in-out infinite alternate;
} */

/* Floating Particles Effect */
.treasury-hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at center,
      var(--yt-yellow) 1px,
      transparent 1px
    ),
    radial-gradient(circle at center, var(--yt-blue) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position:
    0 0,
    20px 20px;
  opacity: 0.1;
  animation: floatingParticles 20s linear infinite;
}

/* Hero Content Animations */
.treasury-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Tagline Animation */
.treasury-hero .rev-text {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpFade 0.8s ease forwards;
}

.treasury-hero .rev-text img {
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.treasury-hero .rev-text:hover img {
  transform: rotate(5deg);
}

/* Headline Styling */
.treasury-hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  background: linear-gradient(120deg, var(--yt-charcoal), var(--yt-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s ease forwards 0.2s;
}

/* Description Text */
.treasury-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--yt-charcoal-80);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s ease forwards 0.4s;
}

/* CTA Buttons */
.treasury-hero .btns {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 0.8s ease forwards 0.6s;
}

/* Hero Image Animation */
.treasury-hero .hero-img {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards 0.8s;
}

.treasury-hero .hero-img::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s ease;
}

.treasury-hero .hero-img:hover::before {
  opacity: 1;
  transform: scale(1);
}

.treasury-hero .hero-img img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.treasury-hero .hero-img:hover img {
  transform: translate(-5px, -5px);
}

/* Keyframe Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseBackground {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatingParticles {
  0% {
    background-position:
      0 0,
      20px 20px;
  }
  100% {
    background-position:
      40px 40px,
      60px 60px;
  }
}

/* FEATURES SECTION CSS */
.treasury-features {
  padding: 4rem 0;
  background: #fff;
}

/* Slider Layout */
.treasury-features .features-slider {
  position: relative;
}

.treasury-features .features-slider .slick-track {
  display: flex;
  padding: 1rem 0;
}

.treasury-features .features-slider .slick-slide {
  margin: 0 1rem;
  height: auto;
  display: flex;
  align-items: center;
}

/* Navigation Arrows */
.treasury-features .arrows {
  display: flex;
  justify-content: space-between;
}

.treasury-features .arrows__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.treasury-features .carousel-control-prev,
.treasury-features .carousel-control-next,
.treasury-features .features-slider .slick-arrow {
  display: none;
}

/* Hexagon Feature Box */
.treasury-features .hexagon {
  position: relative;
  margin: 1rem;
  transition: transform 0.3s ease;
}

.treasury-features .hexagon:hover {
  transform: translateY(-5px);
}

/* Number Badge */
.treasury-features .hexagon .number {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: var(--yt-yellow);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
}

/* Content Box */
.treasury-features .hexagon .hexagon-content {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.treasury-features .hexagon:hover .hexagon-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Content Elements */
.treasury-features .hexagon .hexagon-content img {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  max-height: 60px;
  object-fit: contain;
}

.treasury-features .hexagon:hover .hexagon-content img {
  transform: scale(1.1);
}

.treasury-features .hexagon .hexagon-content h4 {
  color: var(--yt-charcoal);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.treasury-features .hexagon .hexagon-content p {
  color: var(--yt-charcoal);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* SOLUTION CTA CSS */
.metric-background {
  background-repeat: no-repeat;
  background-size: contain;
}

.solutions-cta {
  position: relative;
  margin: 4rem 0;
}

.solutions-cta .bg {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 3rem 0;
}

.solutions-cta .cta-box {
  position: relative;
  z-index: 2;
  padding: 3rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solutions-cta .content span {
  font-weight: 600;
  line-height: 1.3;
}

.solutions-cta .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.solutions-cta .upto .metric {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: var(--yt-yellow-faint);
  transition: all 0.3s ease;
  height: 100%;
}

/* Remove any animations that might interfere with button clicks */
.solutions-cta .blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(249, 173, 58, 0.8),
    rgba(53, 53, 88, 0.5)
  );
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Headline span styling without movement */
.solutions-cta .content span {
  color: var(--yt-yellow);
  position: relative;
  display: inline-block;
}

/* Remove any existing animations */
.solutions-cta *::before,
.solutions-cta *::after {
  animation: none;
}

/* Solutions CTA - Clean up heading styles */
.solutions-cta .content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--yt-charcoal);
  position: relative;
}

/* Style for span inside heading */
.solutions-cta .content h3 span {
  color: var(--yt-yellow);
  position: relative;
  display: inline;
}

/* Remove all previous h3 animations and borders */
.solutions-cta .content h3::before,
.solutions-cta .content h3::after {
  display: none;
}

/* Remove gradient backgrounds */
.solutions-cta .content h3,
.solutions-cta .content h3 span {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.solutions-cta .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--yt-charcoal);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Enhanced Metrics Section */
.solutions-cta .upto {
  margin: 2.5rem 0;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.solutions-cta .upto .metric {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--yt-yellow-faint);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solutions-cta .upto .metric:hover {
  transform: translateY(-5px);
  background: var(--yt-yellow);
}

.solutions-cta .upto .metric::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solutions-cta .upto .metric:hover::before {
  opacity: 1;
  animation: rotate 20s linear infinite;
}

.solutions-cta .upto h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--yt-yellow), #ff9f43);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.solutions-cta .upto .metric:hover h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.solutions-cta .upto p {
  font-size: 1rem;
  color: var(--yt-charcoal);
  margin: 0;
  transition: color 0.3s ease;
}

.solutions-cta .upto .metric:hover p {
  color: #fff;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* SECURITY DATA CSS */
.security-data {
  padding: 100px 0;
}
.security-data p.text {
  margin: 20px 0 30px;
}
/* SECURITY DATA CSS END */

/* HOW IT WORKS CSS */
.how-it-works {
  padding: 100px 0;
  background: url('../images/home/how-it-works-bg.png') no-repeat;
  background-position: center center;
  background-size: cover;
}
.how-it-works .steps .step h3 {
  font-weight: 500;
  font-size: 24px;
}
/* HOW IT WORKS CSS END */

/* TESTIMONIALS STYLING */
.testimonials {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--yt-blue-faint) 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background and Container */
.testimonials::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(249, 173, 58, 0.05) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(30, 110, 231, 0.05) 2px,
      transparent 2px
    );
  background-size: 50px 50px;
  animation: floatingBg 20s linear infinite;
  z-index: 0;
}

.testimonials .slider-box {
  position: relative;
}

/* Testimonial Slide */
.testimonials .testimonials-slider .testimonial-slide {
  padding: 2rem;
  background: #353558;
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 90%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  transition: transform 0.3s ease;
}

.testimonials .testimonials-slider .testimonial-slide:hover {
  transform: scale(1.02);
}

/* Testimonial Content */
.testimonial-content {
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  overflow: hidden;
  height: 100%;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Quote Marks */
.quote-marks {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.1;
  transform: scale(1.5);
  transition: all 0.3s ease;
}

.testimonial-content:hover .quote-marks {
  opacity: 0.2;
  transform: scale(1.7) rotate(10deg);
}

/* Testimony Text */
.testimony {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--yt-charcoal);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.star-rating .star {
  font-size: 1.5rem;
  color: #d1d1d1;
  transition: all 0.3s ease;
}

.star-rating .star.filled {
  color: var(--yt-yellow);
  text-shadow: 0 0 5px rgba(249, 173, 58, 0.5);
}

.testimonial-content:hover .star-rating .star.filled {
  transform: scale(1.1);
  color: var(--yt-yellow);
}

/* Author Section */
.testimonial-by {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-by .img {
  position: relative;
  width: 70px;
  height: 70px;
  border: 3px solid var(--yt-yellow);
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-by .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

.testimonial-by .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-by:hover .img {
  transform: scale(1.1);
  border-color: var(--yt-yellow-dark);
}

.testimonial-by .text {
  margin-left: 1.5rem;
}

.testimonial-by .text .main-color {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--yt-yellow);
  margin-bottom: 0.3rem;
}

.testimonial-by .text span:not(.main-color) {
  font-size: 0.9rem;
  color: var(--yt-charcoal);
  opacity: 0.8;
}

/* Navigation Arrows */
.testimonials .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  position: static;
}

.testimonials .arrows button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials .arrows button:hover {
  background: var(--yt-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.testimonials .arrows button:hover img {
  filter: brightness(100);
}

.testimonials .arrows button img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes floatingBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

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

/* GET A DEMO CSS */
.get-a-demo {
  padding: 100px 0;
  background: url('../images/home/get-a-demo-bg.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 150px;
}
.get-a-demo .secondary-color img {
  height: 18px;
}
.get-a-demo .vid-box .vid-container {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  border-top-left-radius: 70px;
  overflow: hidden;
  border-bottom-right-radius: 70px;
}
.get-a-demo .vid-box .vid-container iframe {
  width: 100%;
}
.get-a-demo .vid-box .vid-container .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* GET A DEMO CSS END */

/* JOIN OUR COMMUNITY CSS */
.join-our-community {
  padding: 70px 0 100px;
}
.join-our-community .join-us-box {
  padding: 50px 0;
  background: url('../images/home/join-us-bg.png') no-repeat;
  background-size: cover;
  background-position: center center;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
}
.join-our-community .join-us-box .orange-o {
  position: absolute;
  left: -50px;
  top: -50px;
}
.join-our-community .join-us-box .blue-x {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}
/* JOIN OUR COMMUNITY CSS END */

/* FAQ CSS */
.faq .faq-box {
  padding: 70px;
  border-radius: 20px;
  background: url('../images/home/faq-bg.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.faq .faq-box .accordion-item,
.faq .faq-box .accordion-header,
.faq .faq-box .accordion-button {
  background: transparent;
}
.faq .faq-box .accordion-button {
  color: #313166;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  padding: 26px 0;
  box-shadow: none;
}
.faq .faq-box .accordion-button:focus {
  box-shadow: none;
}
.faq .faq-box .accordion-item {
  border-left: 0;
  border-top: 0;
  border-right: 0;
}
.accordion-button::after {
  transform: rotate(-90deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}
/* FAQ CSS END */

/* DOWNLOAD BROCHURE CSS */
.download-brochure {
  background-image: url('../images/home/brochure-bg.png');
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.download-brochure .form-section {
  margin-top: 40px;
}
.download-brochure .form-section label {
  font-size: 24px;
  color: var(--main-color);
}
.download-brochure .form-section input.form-control {
  height: 62px;
  text-align: center;
  margin: 30px 0;
  border-color: transparent;
  font-size: 18px;
  border-radius: 10px;
}
/* DOWNLOAD BROCHURE CSS END */

/* ================================================================== */
/* AUTHENTICATION PAGES CSS */
/* ================================================================== */
.treasury-auth {
  background-color: #fff;
  min-height: 100vh;
  height: 100%;
  background-image: url('../images/auth/gradient-bg.png');
  background-repeat: no-repeat;
  background-size: 50% 100%;
  background-position: left center;
  padding: 70px 0;
}
.treasury-auth.login-form label {
  color: #313166;
  margin-bottom: 0;
}
.treasury-auth.login-form .btn-primary {
  background-color: #1e6ee7;
  border-radius: 6px;
  padding: 20px 40px;
  color: #ffffff;
  font-style: 18px;
  text-transform: uppercase;
  display: block;
  width: 100%;
}
.treasury-auth .form-box {
  width: 100%;
  padding-left: 50px;
}
.treasury-auth .form-box .back-to-home a {
  color: #313166;
}
.treasury-auth .form-box form label {
  font-weight: 500;
}
.treasury-auth .form-box form .form-control {
  height: 56px;
  margin-top: 10px;
}
.treasury-auth .form-box img {
  height: 75px;
}
.treasury-auth .btn {
  background-color: var(--yt-yellow) !important;
  border-color: var(--yt-yellow) !important;
}
.treasury-auth .btn:focus {
  background-color: var(--yt-yellow) !important;
  border-color: var(--yt-yellow) !important;
  box-shadow: 0 0 0 0.25rem var(--yt-yellow-50) !important;
}

/* ================================================================== */
/* WORKSHOPS PAGES CSS */
/* ================================================================== */

/* WORKSHOPS HERO CSS */
.treasury-workshops-hero {
  padding: 100px 0;
  background: url('../images/workshops/workshops-hero-bg.png') no-repeat;
  background-size: cover;
  background-position: center center;
}
.treasury-workshops-hero .bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.3)
  );
  backdrop-filter: blur(3px);
}
.treasury-workshops-hero .search-options .form-control {
  height: 56px;
  border-top-left-radius: 6px;
  padding: 10px 20px;
}
.treasury-workshops-hero .search-options .input-group button {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.treasury-workshops-hero .search-options .input-group button img {
  filter: brightness(100);
}
.treasury-workshops-hero .search-options .filters .btn {
  border-radius: 6px;
  height: 56px;
}
.treasury-workshops-hero .search-options .filters .btn::after {
  display: none;
}
/* WORKSHOPS HERO CSS END */

/* ALL WORKSHOPS CSS */
.treasury-all-workshops {
  padding: 70px 0 100px;
}
.treasury-all-workshops .workshops-filters {
  background: var(--yt-yellow-faint);
  border-radius: 6px;
  padding: 40px;
}
.treasury-all-workshops .workshops-filters .accordion-item {
  background: transparent;
  border: 0;
}
.treasury-all-workshops .workshops-filters .accordion-button {
  background: transparent;
  box-shadow: none !important;
  padding: 0;
}
.treasury-all-workshops .workshops-filters .accordion-body {
  padding: 0;
}
.treasury-all-workshops .workshops-filters .accordion-button h4 {
  padding: 20px 0;
  border-bottom: 1px solid #1e6ee7;
}
.treasury-all-workshops .workshops-filters .accordion-body label {
  letter-spacing: 3px;
}
.treasury-all-workshops .workshops-filters .accordion-body .form-control {
  padding: 12px 20px;
  text-transform: uppercase;
}
.treasury-all-workshops .workshops-filters .category-filter a {
  color: #313166;
  text-decoration: none;
  margin-bottom: 20px;
}
.treasury-all-workshops .workshops-filters .category-filter a:last-child {
  margin-bottom: 0;
}
.treasury-all-workshops .workshops-filters .category-filter a.active {
  color: #1e6ee7;
}
.treasury-all-workshops .workshops-filters .price-filter label {
  font-size: 14px;
}
.treasury-all-workshops .workshops-filters .price-filter #price-slider {
  border-radius: 10px;
  border: 0;
  height: 6px;
  box-shadow: none;
  background: #bfd6f8;
}
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-connect {
  background: #1e6ee7;
}
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-handle,
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-touch-area {
  border-radius: 50%;
  background: #1e6ee7;
  width: 14px;
  height: 14px;
  box-shadow: none;
  border: 0;
}
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-handle:before,
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-handle:after {
  display: none;
}
.treasury-all-workshops
  .workshops-filters
  .price-filter
  #price-slider
  .noUi-handle {
  top: -4px;
  right: -12px;
}
.treasury-all-workshops .workshops-list .results-sort .sort-by select {
  height: 50px;
  border-radius: 6px;
  width: 250px;
}

.treasury-all-workshops .workshops-list .workshops-list-pagination .page-link {
  border-radius: 6px;
  background: #fafbfb;
  color: #313166;
  padding: 14px 20px;
}
.treasury-all-workshops
  .workshops-list
  .workshops-list-pagination
  span
  .page-link {
  margin: 0 6px;
  width: 55px;
  text-align: center;
  height: 100%;
}
.treasury-all-workshops
  .workshops-list
  .workshops-list-pagination
  .prev
  .page-link,
.treasury-all-workshops
  .workshops-list
  .workshops-list-pagination
  .next
  .page-link {
  font-weight: 500;
  font-size: 18px;
}
.treasury-all-workshops
  .workshops-list
  .workshops-list-pagination
  .page-link.active {
  background: #1e6ee7;
  color: #ffffff;
}
.treasury-all-workshops
  .workshops-list
  .workshops-list-pagination
  .prev
  .page-link
  img {
  transform: rotate(-180deg);
}
/* ALL WORKSHOPS CSS END */

/* WORKSHOP DETAILS HERO CSS */
.treasury-workshop-details-hero {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.treasury-workshop-details-hero img {
  border-radius: 6px;
}
.treasury-workshop-details {
  padding: 100px 0;
}
.treasury-workshop-details .nav .nav-item {
  margin-right: 20px;
  background: #f4f8fe;
  border-radius: 6px;
}
.treasury-workshop-details .nav .nav-item .nav-link {
  padding: 14px 26px;
  border-radius: 6px;
  background-color: var(--yt-yellow-faint) !important;
  color: var(--yt-yellow);
}
.treasury-workshop-details .nav .nav-item .nav-link.active {
  background-color: var(--yt-yellow) !important;
  color: #ffffff;
}
.treasury-workshop-details .tab-content .tab-pane h5 {
  margin-top: 20px;
  color: #313166;
}
.treasury-workshop-details .tab-content .tab-pane ul li {
  margin-bottom: 10px;
}
.treasury-workshop-details .tab-content .profile-image-box .img-box {
  height: 135px;
  width: 135px;
  overflow: hidden;
  border-radius: 50%;
}
.treasury-workshop-details .tab-content .profile-image-box .img-box img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.treasury-workshop-details .workshop-about {
  padding: 30px;
  border-radius: 6px;
  background: var(--yt-yellow-faint);
}
.treasury-workshop-details .workshop-about .location-name {
  font-weight: 500;
}
.treasury-workshop-details .workshop-about .date-time-list .date-time {
  background: var(--yt-yellow-faint);
  border-radius: 6px;
  padding: 12px;
  color: #313166;
  text-transform: center;
  text-align: center;
  margin-bottom: 12px;
}
.treasury-workshop-details .workshop-about .date-time-list .date-time.active {
  color: #ffffff;
  background: #1e6ee7;
}
/* WORKSHOP DETAIL HERO CSS END */

/* FEATURED WORKSHOPS CSS */
.treasury-featured-workshops {
  padding: 0 0 100px;
}
/* FEATURED WORKSHOPS CSS END */

/* ====================================================================== */
/* ABOUT US PAGE */
/* ====================================================================== */
.treasury-vision-mission {
  padding: 0 0 100px;
}
.treasury-vision-mission .heading-box {
  padding-right: 50px;
}
.treasury-vision-mission .text-box h4,
.treasury-vision-mission .text-box h5,
.treasury-vision-mission .text-box h6 {
  font-weight: 500;
  color: #313166;
}
.treasury-vision-mission .img-box {
  height: 100px;
  width: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.treasury-vision-mission .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.treasury-team {
  padding: 100px 0;
  background-image: url('../images/about/team-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.treasury-team .team-members .member {
  margin-bottom: 100px;
}
.treasury-team .team-members .member:last-child {
  margin-bottom: 50px;
}
.treasury-team .team-members .member .img-box {
  border-radius: 6px;
  overflow: hidden;
  max-height: 300px;
}
.treasury-team .team-members .member .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treasury-team .team-members .member .text-box {
  height: 100%;
  padding: 30px 20px 30px 20px;
  margin-top: 60px;
}
.treasury-team .team-members .member .text-box .gradient-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: 110%;
  backdrop-filter: blur(20px);
  right: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.treasury-team .team-members .member.right-aligned .text-box .gradient-bg {
  left: 0;
}
.treasury-values {
  padding: 100px 0;
}

/* ==================================================================== */
/* BLOGS PAGE CSS */
/* ==================================================================== */
.treasury-blogs {
  padding: 0 0 100px;
}
.treasury-blogs .blog-card .img-box {
  height: 210px;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.treasury-blogs .blog-card:hover .img-box img {
  transform: scale(1.1);
}
.treasury-blogs .blog-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.treasury-blogs .blog-card .content-box {
  padding: 20px 0;
}
.treasury-blogs .blog-card .content-box .tags h4 {
  display: none;
}
.treasury-blogs .blog-card .content-box .category {
  background-color: #f4f8fe;
  border-radius: 6px;
  padding: 14px 20px;
  display: inline-block;
}
.treasury-blogs .blog-card .content-box .title {
  font-weight: 600;
  font-size: 24px;
  margin: 20px 0;
}
.treasury-blogs .blog-card .content-box .meta img {
  height: 20px;
}
.single-post-info {
  margin-top: 50px;
  margin-bottom: 20px;
}
.single-post-info .row.meta {
  font-size: 18px;
  color: #313166;
}
.single-post-info .row.meta img {
  filter: brightness(0.5);
  margin-right: 3px;
}
.single-post-info .row.meta .col-6 {
  width: fit-content;
}

/* SIDEBAR CSS */
.sidebar {
  border-radius: 6px;
  background: var(--yt-yellow-faint);
  padding: 20px;
  height: 100%;
}
.sidebar h4 {
  color: #313166;
  margin-bottom: 20px;
}
.sidebar .card {
  border-radius: 6px;
  border: 0;
}
.sidebar .card .col-4 a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.sidebar .card .col-4 a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sidebar .card .col-8 .card-body {
  padding: 10px;
}
.sidebar .card .col-8 .card-body p:first-child {
  margin: 10px 0;
}
.sidebar .card .col-8 .card-body a {
  color: var(--yt-yellow);
}
.sidebar .card .col-8 .card-body a h5 {
  font-size: 18px;
  color: var(--yt-yellow);
  text-decoration: underline;
}
.sidebar .tags a.category {
  background-color: var(--yt-yellow-faint);
  border-radius: 6px;
  padding: 14px 20px;
  display: inline-block;
}
.sidebar .mt-4.p-2 {
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
}

.sidebar .blog-card {
  display: flex;
}
.sidebar .blog-card a.img-box {
  width: 30%;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: inline-block !important;
}
.sidebar .blog-card a.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .blog-card .content-box {
  display: inline-block;
  width: 70%;
  padding-left: 10px;
}
.sidebar .blog-card .content-box .tags {
  display: none;
}
.sidebar .blog-card .content-box a.title {
  text-decoration: underline !important;
  margin-bottom: 4px;
}
.sidebar .blog-card .content-box p.card-text {
  margin-bottom: 0;
  font-size: 14px;
}
.sidebar .blog-card .content-box .meta .col-6 {
  width: 100%;
  font-size: 14px;
  margin-top: 4px;
}
.sidebar .blog-card .content-box .meta .col-6 img {
  height: 16px;
}
.sidebar .blog-card .content-box .meta .col-6 .justify-content-end {
  display: none !important;
}

/* SIDEBAR CSS END */

/* FAQ PAGE CSS */
.faq-page .faq-box {
  padding: 0 !important;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.faq-page .faq-box .accordion-item {
  background: var(--yt-yellow-faint);
  margin-bottom: 20px;
  border: 0;
  border-radius: 6px;
}
.faq-page .faq-box .accordion-item .accordion-button {
  padding: 26px 20px;
}
.faq-page .faq-box .accordion-item .accordion-body {
  padding-top: 0;
}
.faq-page .faq-box .accordion-item .accordion-button:after {
  background-image: url('../icons/faq-plus.svg');
  background-size: 100% 100%;
  height: 34px;
  width: 34px;
}
.faq-page .faq-box .accordion-item .accordion-button:not(.collapsed):after {
  background-image: url('../icons/faq-minus.svg');
}
/* FAQ PAGE CSS END */

/* Jupyter Notebook CSS */
.jupyterlite-container {
  transition: filter 1s ease;
}

.spinner-container {
  backdrop-filter: blur(20px) brightness(0.5);
  filter: opacity(1);
  transition:
    backdrop-filter 1s ease 0s,
    filter 1s ease 0s;
}

.spinner-container-hide {
  backdrop-filter: blur(0px) brightness(1);
  filter: opacity(0);
}

/* Jupyter Notebook CSS END */

/* ================================================================= */
/* BOOKING PAGE CSS */
/* ================================================================= */
.registration-pricing-model .form-check-inline {
  padding-left: 0.8rem;
  margin-right: 0;
}

.registration-pricing-model input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* ================================================================= */
/* General */
/* ================================================================= */

.cursor-pointer {
  cursor: pointer;
}

.hover_bg_dark:hover {
  background-color: rgb(238, 238, 238) !important;
}

.cross_btn_modal {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.administrator__img_tag:hover + .administrator__p_tag {
  display: block;
}

.administrator__p_tag {
  display: none;
  position: absolute;
  left: 2rem;
  top: 0;
  border: 1px solid grey;
  border-radius: 1rem;
  padding: 0 1rem;
  background-color: white; /* Ensure background color is set */
  z-index: 10; /* Make sure it's on top */
}

.truncate-2-lines {
  display: -webkit-box; /* Use WebKit's box model */
  -webkit-box-orient: vertical; /* Orient the box vertically */
  overflow: hidden; /* Hide the overflowing text */
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  text-overflow: ellipsis; /* Show ellipsis at the end when truncated */
  line-height: 1.5em; /* Set the line height (adjust to your design) */
  max-height: calc(1.5em * 2); /* Maximum height for two lines */
  white-space: normal; /* Allow wrapping */
}

/* Add this CSS to your Wagtail admin CSS file */
.inline-fields .field {
  display: inline-block;
  margin-right: 10px; /* Space between fields */
  vertical-align: top;
}

.inline-fields label {
  display: block;
  text-align: center;
  font-size: 12px; /* Adjust as needed */
  margin-bottom: 5px; /* Space below the label */
}

.field-row-panel {
  display: flex;
  gap: 10px;
  align-items: center;
}

.field-row-panel .w-field {
  flex: 1;
}

.p-5rem {
  padding: 5rem;
}

/* ================================================================= */
/* Courses PAGE */
/* ================================================================= */

.square-1 {
  height: 40rem;
}

.reverse .square-1 {
  order: 2;
}

.reverse .square-2 {
  order: 1;
}
.companies_logos_img {
  height: 20rem;
  width: 20rem;
  object-fit: cover;
}


.cr-w-50 {
  width: 100%; /* Default width for generic pages with sidebar */
  margin: 0 auto;
}

/* When inside full-width course page */
.course-page .cr-w-50 {
  width: 50%;
  margin: 0 auto;
}


.scrolling-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
}

.scrolling-content {
  display: inline-flex;
  animation: scroll-loop 10s linear infinite;
}

.logo-container {
  flex: 0 0 auto;
}
.error {
  color: #ffa8a8;
}

@keyframes scroll-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Container to trigger the whole step */
.step-container {
  display: flex;
  align-items: center;
}

.flow-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Initial state for circle and arrow animation */
.animate-circle,
.animate-arrow {
  opacity: 0;
  transition: opacity 0.8s ease;
}



/* Base animation class */
.animate-circle.animate,
.animate-arrow.animate {
  opacity: 1;
}

.h-25rem {
  height: 25rem;
}


.w-2rem {
  width: 2rem;
}
.size-12rem {
  height: 10rem;
  width: 10rem;
}

.bg-course {
  background-color: #353558;
}
.color-course {
  color: #353558;
}

.section_text_over_image-div {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.section_text_over_image-text {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  margin: 5rem;
  z-index: 1;
}

.section_text_over_image-bg-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3)
  );
  /* backdrop-filter: blur(3px); */
  z-index: 1; /* Make sure it's on top of the image */
  pointer-events: none; /* Make sure it doesn't interfere with user interactions */
}

.cr-yellow-color-text {
  color: var(--yt-yellow);
}
.cr-purple-color-text {
  color: #353558;
}

.cr-submit-btn {
  background-color: var(--yt-yellow);
  font-weight: bold !important;
  color: #fff;
}
.cr-submit-btn:hover {
  background-color: var(--yt-yellow-50);
  color: rgb(214, 214, 214) !important;
}

.cr-paragraph {
  margin: 5rem auto !important;
}
.section-space {
  height: 3rem;
  visibility: hidden;
}
/* ================================================================= */
/* Workshop Section Homepage */
/* ================================================================= */

.workshop-section-hp {
  padding: 100px 0;
}

.workshop-header-image {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.workshop-header-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Styling for the label when the radio button is checked */
.registration-pricing-model input:checked + .yt-btn-radio-label {
  background-color: var(--yt-yellow);
  color: #fff !important;
  box-shadow: #4e4e4e7a 0px 0px 50px -4px;
}

.workshop-receipt {
  background-color: var(--yt-charcoal-faint);
}

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

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

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

/* Target the first child within .step-container-bubble */
.flow-chart-container-bubble > .step-container-bubble:first-child {
  transform: translateY(-5rem);
}
.flow-chart-container-bubble > .step-container-bubble:last-child {
  transform: translateY(-5rem);
}

/* User Community */

.users_list {
  color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 1rem;
  transition: all;
}
.users_list:hover {
  -webkit-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}

ul .users_list:nth-child(odd) {
  background-color: var(--main-color);
}
ul .users_list:nth-child(odd):hover {
  background-color: var(--body-gray);
}

ul .users_list:nth-child(even) {
  background-color: var(--body-gray);
}
ul .users_list:nth-child(even):hover {
  background-color: var(--main-color);
}

/* NOTIFICATIONS */
.notification_dropdown {
  width: 40rem !important;
}

/* Right Side Navigation */
.treasury-header .account-search {
  display: flex;
  align-items: center;
}

.treasury-header .account-search .nav-link {
  padding: 20px 15px;
}

.treasury-header .account-search img {
  height: 24px;
  transition: all 0.3s ease;
}

/* Search Bar */
#search-bar-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: none;
  align-items: center;
}

#search-bar-input.active {
  display: flex;
}

#search-bar-input .search-input {
  border: none;
  border-bottom: 2px solid var(--yt-yellow);
  border-radius: 0;
  padding: 15px 0;
  font-size: 18px;
}

/* Notification Badge */
.unread_notification_count {
  position: absolute;
  top: 15px;
  right: 10px;
  background: var(--yt-yellow);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation Icons and Links */
.nav-icon-link {
  padding: 8px !important;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.nav-icon-link:hover {
  background-color: var(--yt-yellow-faint);
}

.nav-icon {
  width: 24px;
  height: 24px;
  color: var(--yt-charcoal);
}

/* Profile Styling */
.profile-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--yt-yellow);
  transition: all 0.2s ease;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-link:hover .profile-image-wrapper {
  border-color: var(--yt-yellow-dark);
  transform: scale(1.05);
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--yt-yellow);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-badge.pulse {
  animation: pulse 2s infinite;
}

/* Dropdown Styling */
.notification-dropdown,
.profile-dropdown {
  min-width: 320px;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.notification-header,
.profile-header {
  padding: 16px;
  border-bottom: 1px solid var(--yt-yellow-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mark-read-btn {
  color: var(--yt-yellow);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mark-read-btn:hover {
  color: var(--yt-yellow-dark);
}

.notification-body {
  max-height: 400px;
  overflow-y: auto;
}

.notification-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--yt-yellow-faint);
  transition: background-color 0.2s ease;
}

.notification-item:hover {
  background-color: var(--yt-yellow-faint);
}

.notification-item.unread {
  background-color: var(--yt-blue-faint);
}

.notification-link {
  text-decoration: none;
  color: inherit;
}

.notification-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--yt-charcoal);
}

.notification-time {
  font-size: 0.75rem;
  color: var(--body-gray);
  white-space: nowrap;
}

.notification-empty {
  padding: 24px;
  text-align: center;
  color: var(--body-gray);
}

/* Profile Dropdown */
.profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-details h6 {
  color: var(--yt-charcoal);
}

.dropdown-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--yt-yellow-faint);
  color: var(--yt-yellow);
}

.dropdown-item i {
  width: 16px;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Profile Navigation Styles */
.icon-size {
  width: 1.5rem;
  height: 1.5rem;
}

.profile-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  transition: transform 0.2s;
}

.profile-image:hover {
  transform: scale(1.1);
}

/* Dropdown Styling */
.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.6rem 1rem;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Notification Styling */
.notification-toggle {
  cursor: pointer;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  min-width: 1.5rem;
  text-align: center;
}

.notification-menu {
  min-width: 300px;
  max-height: 400px;
  overflow-y: auto;
}

.notification-header {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
}

.notification-header h6 {
  color: #000000;
}

.mark-read {
  color: #ffc107;
  cursor: pointer;
  font-size: 0.875rem;
}

.mark-read:hover {
  text-decoration: underline;
}

.notification-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.notification-item.unread {
  background-color: rgba(13, 110, 253, 0.05);
}

.notification-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.notification-text {
  margin: 0;
  font-size: 0.875rem;
}

.notification-time {
  font-size: 0.75rem;
  color: #6c757d;
}

/* Animation */
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate.slideIn {
  animation: slideIn 0.3s ease-out;
}

/* Remove these old workshop card styles */
.workshops-cards .workshop-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--yt-yellow-faint);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.workshops-cards .workshop-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.workshops-cards .workshop-card .img-box {
  height: 230px;
  overflow: hidden;
}
.workshops-cards .workshop-card .img-box img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.workshops-cards .workshop-card .card-content .category {
  background-color: rgba(30, 190, 171, 0.1);
  color: #1ebeab;
  border-radius: 6px;
  padding: 10px 20px;
}
.workshops-cards .workshop-card .card-content {
  padding: 20px 24px 0 20px;
}
.workshops-cards .workshop-card .card-content .title {
  font-size: 18px;
  font-weight: 500;
}
.workshops-cards .workshop-card .learn-more {
  background: var(--yt-yellow-faint);
  padding: 13px 10px;
  margin-top: 15px;
  transition: 0.3s;
  font-weight: 500;
}
.workshops-cards .workshop-card .learn-more img {
  position: relative;
  top: -1px;
}
.workshops-cards .workshop-card .learn-more:hover {
  background: var(--yt-yellow);
  color: #ffffff;
}
.workshops-cards .workshop-card .learn-more:hover span,
.workshops-cards .workshop-card .learn-more:hover img {
  filter: brightness(100);
}

/* Add these new workshop card styles */
.workshop-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.workshop-card .img-box {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.workshop-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workshop-card:hover .img-box img {
  transform: scale(1.1);
}

.workshop-card .card-content {
  padding: 24px;
}

.workshop-card .category {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(30, 110, 231, 0.1);
  color: #1e6ee7;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.workshop-card .category:hover {
  background: #1e6ee7;
  color: #ffffff;
}

.workshop-card .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 16px 0;
  color: #313166;
  transition: color 0.3s ease;
}

.workshop-card .title:hover {
  color: #1e6ee7;
}

.workshop-card hr {
  border-color: rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.workshop-card .card-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.workshop-card .date,
.workshop-card .session,
.workshop-card .price {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
}

.workshop-card .date img,
.workshop-card .session img,
.workshop-card .price img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.workshop-card .learn-more {
  background: rgba(30, 110, 231, 0.05);
  padding: 16px;
  font-weight: 500;
  color: #1e6ee7;
  transition: all 0.3s ease;
  margin-top: auto;
}

.workshop-card .learn-more:hover {
  background: #1e6ee7;
  color: #ffffff;
}

.workshop-card .learn-more img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.workshop-card .learn-more:hover img {
  transform: translateX(5px);
  filter: brightness(0) invert(1);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--yt-blue), var(--yt-yellow));
}

.transition-all {
  transition: all 0.3s ease;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.rounded-top-4 {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

/* Contact Modal Styles */
.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yt-blue-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.contact-icon-wrapper:hover {
  transform: scale(1.05);
}

.contact-options {
  max-width: 400px;
  margin: 0 auto;
}

.contact-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--yt-charcoal);
  background: #fff;
  border: 2px solid var(--yt-blue-faint);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-option-btn:hover {
  background: var(--yt-blue-faint);
  color: var(--yt-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.email-btn {
  background: linear-gradient(45deg, var(--yt-blue-faint), #fff);
}

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.2s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.link-primary {
  color: var(--yt-blue) !important;
}

.link-primary:hover {
  color: var(--yt-yellow) !important;
}

/* Custom Form Styling */
.custom-form {
  position: relative;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.custom-form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.custom-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.custom-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--yt-yellow);
  box-shadow: 0 0 0 4px rgba(249, 173, 58, 0.1);
  outline: none;
}

.custom-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Floating label effect */
.custom-form .field-input {
  position: relative;
}

.custom-form .field-input::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yt-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.custom-form .form-control:focus + .field-input::after {
  transform: scaleX(1);
}

/* Submit button styling */
.custom-form .cr-submit-btn {
  position: relative;
  overflow: hidden;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--yt-yellow);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-form .cr-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.custom-form .cr-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.custom-form .cr-submit-btn:hover::before {
  transform: translate(-50%, -50%) scale(2);
}

/* Error message styling */
.custom-form .error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 12px;
  position: relative;
  animation: slideIn 0.3s ease;
}

.custom-form .error::before {
  content: '⚠';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
}

/* Help text styling */
.custom-form .form-help {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Animation keyframes */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form container styling */
.bg-course {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #353558, #1a1a2e);
}

.bg-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg') repeat;
  opacity: 0.1;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}

/* Hero Section Styling */
.bg-course .mb-5 {
  position: relative;
  padding: 3rem 0;
  text-align: center;
  overflow: hidden;
}

/* Heading Animation and Styling */
.bg-course h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.bg-course h1 .secondary-color {
  background: linear-gradient(120deg, var(--yt-yellow), #ff9f43);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.bg-course h1 .secondary-color::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--yt-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.bg-course h1:hover .secondary-color::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Paragraph Styling */
.bg-course p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Background Effects */
.bg-course .mb-5::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  animation: rotate 20s linear infinite;
}

/* Floating Elements */
.bg-course .mb-5::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E")
    repeat;
  opacity: 0.5;
  animation: float 10s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Course Page Text Animation Effects */
.course-hero-heading {
  position: relative;
  z-index: 1;
}

.course-hero-heading h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: textFadeIn 0.8s ease-out;
}

.course-hero-heading .secondary-color {
  background: linear-gradient(
    90deg,
    var(--yt-yellow) 0%,
    #ffc107 50%,
    var(--yt-yellow) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: textShine 3s linear infinite;
}

.course-hero-heading .secondary-color::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--yt-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.course-hero-heading .secondary-color:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.course-hero-heading p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0;
  animation: textFadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Animations for Solutions CTA */
.solutions-cta {
  /* ... existing properties ... */
  perspective: 1000px;
}

/* 3D Hover Effect */
/* .solutions-cta .bg {

  transform-style: preserve-3d;
  animation: floatCard 6s ease-in-out infinite;
} */

.solutions-cta .cta-box {
  /* ... existing properties ... */
  animation: slideInParallax 1s ease-out;
}

/* Animated Gradient Border */
.solutions-cta .content h3 {
  /* ... existing properties ... */
  position: relative;
}

.solutions-cta .content h3::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(
    90deg,
    var(--yt-yellow),
    #ff9f43,
    var(--yt-yellow),
    #ff9f43
  );
  background-size: 300% 100%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
  border-radius: 4px;
  animation: borderGradient 8s linear infinite;
}

/* Floating Particles Effect */
.solutions-cta .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.2) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  animation: particleFloat 20s linear infinite;
  z-index: 1;
}

/* Metric Counter Animation */
.solutions-cta .upto .metric h2 {
  /* ... existing properties ... */
  animation: countUp 2s ease-out forwards;
  opacity: 0;
}

/* Shimmering Effect on Hover */
.solutions-cta .metric::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solutions-cta .metric:hover::after {
  opacity: 1;
}

/* Keyframe Animations */
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotateX(0) rotateY(0);
  }
  25% {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  }
  75% {
    transform: translateY(10px) rotateX(-2deg) rotateY(2deg);
  }
}

@keyframes slideInParallax {
  from {
    opacity: 0;
    transform: translateX(100px) translateZ(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(20px) translateZ(0);
  }
}

@keyframes borderGradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300% 0;
  }
}

@keyframes particleFloat {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      100px 100px,
      -100px -100px;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Intersection Observer Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Hover States */
.solutions-cta .metric:hover {
  /* ... existing hover properties ... */
  animation: wobble 0.8s ease-in-out;
}

@keyframes wobble {
  0%,
  100% {
    transform: translateY(-5px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-2deg);
  }
  75% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced Metric Styling */
.solutions-cta .metric {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--yt-yellow-faint);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.solutions-cta .metric .verb {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.solutions-cta .metric .number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.solutions-cta .metric .unit {
  font-size: 2rem;
  font-weight: 600;
}

.solutions-cta .metric .measure {
  font-size: 1rem;
  line-height: 1.4;
}

/* Service Feature Slider - Clean Modern Styling */
.treasury-features {
  padding: 4rem 0;
  background: #fff;
}

/* Slider Layout */
.treasury-features .features-slider {
  position: relative;
}

.treasury-features .features-slider .slick-track {
  display: flex;
  padding: 1rem 0;
}

.treasury-features .features-slider .slick-slide {
  margin: 0 1rem;
  height: auto;
  display: flex;
  align-items: center;
}

/* Navigation Arrows */
.treasury-features .arrows {
  display: flex;
  justify-content: space-between;
}

.treasury-features .arrows__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.treasury-features .carousel-control-prev,
.treasury-features .carousel-control-next,
.treasury-features .features-slider .slick-arrow {
  display: none;
}

/* Hexagon Feature Box */
.treasury-features .hexagon {
  position: relative;
  margin: 1rem;
  transition: transform 0.3s ease;
}

.treasury-features .hexagon:hover {
  transform: translateY(-5px);
}

/* Number Badge */
.treasury-features .hexagon .number {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: var(--yt-yellow);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
}

/* Content Box */
.treasury-features .hexagon .hexagon-content {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.treasury-features .hexagon:hover .hexagon-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Content Elements */
.treasury-features .hexagon .hexagon-content img {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  max-height: 60px;
  object-fit: contain;
}

.treasury-features .hexagon:hover .hexagon-content img {
  transform: scale(1.1);
}

.treasury-features .hexagon .hexagon-content h4 {
  color: var(--yt-charcoal);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.treasury-features .hexagon .hexagon-content p {
  color: var(--yt-charcoal);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* Remove any existing arrow styles first, then add these new ones */

/* Testimonial Slider Navigation */
.testimonials .slider-box {
  position: relative;
}

.testimonials .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  position: static;
}

.testimonials .arrows button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials .arrows button:hover {
  background: var(--yt-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.testimonials .arrows button:hover img {
  filter: brightness(100);
}

.testimonials .arrows button img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Remove old FAQ styles and add these new ones */

/* FAQ Section Styling */
.faq {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--yt-blue-faint) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.faq::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(249, 173, 58, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(30, 110, 231, 0.03) 0%,
      transparent 50%
    );
  animation: pulseBackground 15s ease-in-out infinite alternate;
}

.faq-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.faq-box h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(120deg, var(--yt-charcoal), var(--yt-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

/* Accordion Styling */
.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}
.accordion-item:nth-child(2) {
  animation-delay: 0.2s;
}
.accordion-item:nth-child(3) {
  animation-delay: 0.3s;
}
.accordion-item:nth-child(4) {
  animation-delay: 0.4s;
}
.accordion-item:nth-child(5) {
  animation-delay: 0.5s;
}

.accordion-button {
  border-radius: 12px !important;
  padding: 1.5rem;
  background: white;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--yt-charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--yt-yellow);
  background: white;
  box-shadow: 0 4px 25px rgba(249, 173, 58, 0.15);
}

/* Custom arrow icon */
.accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9ad3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9ad3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  transform: rotate(0deg);
}

/* Accordion body styling */
.accordion-body {
  padding: 1.5rem;
  background: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--yt-charcoal);
}

.accordion-collapse {
  transition: all 0.3s ease-in-out;
}

/* Button styling */
.faq .btn-theme {
  margin-top: 3rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 0.6s;
}

/* Hover effects */
.accordion-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.accordion-item:hover {
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBackground {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Responsive adjustments */

/* Remove old download brochure CSS and replace with: */

.block-download-brochure {
  --gradient-start: #4a4a7c; /* Lighter variation of #353558 */
  --gradient-mid: #353558; /* Original color */
  --gradient-end: #282841; /* Darker variation of #353558 */
  --accent-color: #f1c40f;
  --text-light: #ecf0f1;
}

.download-brochure {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 100%
  );
  padding: 6rem 0;
  overflow: hidden;
}

/* Enhanced gradient overlay */
.download-brochure::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(74, 74, 124, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(40, 40, 65, 0.4) 0%,
      transparent 50%
    );
  animation: pulseBackground 15s ease-in-out infinite alternate;
}

/* Animated background elements */
.download-brochure::before,
.download-brochure::after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite;
}

.download-brochure::before {
  top: -400px;
  left: -200px;
  animation-delay: 0s;
}

.download-brochure::after {
  bottom: -400px;
  right: -200px;
  animation-delay: -4s;
}

.download-brochure div h1 {
  color: white;
}

/* Form container styling */
.download-brochure .form-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.download-brochure .form-section:hover {
  transform: translateY(-5px);
}

.download-brochure .container {
  z-index: 1000;
  display: block;
  position: inherit;
}

/* Headline styling */
.download-brochure .text-capitalize {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-light), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Form elements styling */
.download-brochure label[for='email-address'] {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-brochure .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  height: 60px;
  border-radius: 30px;
  padding: 0 30px;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.download-brochure .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.3);
}

.download-brochure .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Checkbox styling */
.download-brochure .form-check {
  margin: 2rem 0;
}

.download-brochure .form-check-input {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  cursor: pointer;
}

.download-brochure .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.download-brochure .form-check-label {
  color: var(--text-light);
  margin-left: 1rem;
}

.download-brochure .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.download-brochure .form-check-label a:hover {
  color: #fff;
}

/* Submit button styling */
.download-brochure .btn-theme {
  background: var(--accent-color);
  border: none;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gradient-start);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-brochure .btn-theme:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-brochure .btn-theme img {
  height: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.download-brochure .btn-theme:hover img {
  transform: translateX(5px);
}

.treasury-header
  .navbar
  .account-search-nav
  .nav-item
  .lang-selector-circle
  a
  img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0;
  object-fit: cover;
}
.treasury-header .navbar .account-search-nav .nav-item .lang-selector-circle a {
  padding: 10px 0;
}

.treasury-header .navbar .account-search-nav .nav-item .lang-selector-circle {
  position: absolute;
  right: 0;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Image Block Styling */
.page-content.block-image {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  overflow: visible; /* Changed from hidden to visible */
}

.page-content.block-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(53, 53, 88, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Container with gradient border */
.page-content.block-image::after {
  content: '';
  position: absolute;
  inset: 2rem; /* Match the padding */
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  opacity: 0.1;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Hover effects */
.page-content.block-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(53, 53, 88, 0.15);
}

.page-content.block-image:hover::after {
  opacity: 0.2;
  transform: translateY(-5px);
}

.navbar-collapse .d-block.d-md-none {
  width: 100%;
}

/* ... existing code ... */

.testimonials .testimonials-slider .testimonial-slide {
  padding: 2rem;
  background: #353558;
  border-radius: 12px;
  margin: 1rem auto; /* Center align with equal margins */
  max-width: 90%; /* Prevent stretching too wide */
  box-sizing: border-box; /* Include padding in width calculation */
  overflow: hidden; /* Prevent content from spilling out */
  display: flex !important; /* Use flexbox for better alignment */
  flex-direction: column;
  justify-content: center;
  min-height: 300px; /* Ensure consistent height */
}

/* Adjust content within the slide */
.testimonials .testimonials-slider .testimonial-slide .testimonial-content {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem;
  border-radius: 8px;
  margin: 0 auto; /* Center the content */
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.treasury-header .navbar {
  position: relative;
}

.treasury-header .navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 10px;
}

.profile-dropdown {
  position: absolute !important;
  top: 100% !important; /* Position it right below the button */
  right: 0 !important; /* Align with the right edge of the button */
  width: 280px !important;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1050;
  margin-top: 0 !important;
}

.profile-link {
  position: relative !important; /* Ensure the dropdown positions relative to this */
}

/* Profile Navigation Enhancements */
.profile-nav {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Profile Image Container */
.profile-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.profile-image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-image-container:hover img {
  transform: scale(1.1);
}

/* Notification Badge Enhanced */
.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Dropdown Menu Enhanced */
.profile-dropdown {
  min-width: 280px;
  border: none;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  animation: dropdownFade 0.3s ease-out;
}

.profile-dropdown .dropdown-item {
  padding: 0.8rem 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0.2rem;
}

.profile-dropdown .dropdown-item:hover {
  background: rgba(201, 141, 50, 0.1);
  transform: translateX(5px);
}

.profile-dropdown .dropdown-item i,
.profile-dropdown .dropdown-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.profile-dropdown .dropdown-item:hover i,
.profile-dropdown .dropdown-item:hover img {
  transform: scale(1.1);
}

/* Notification Menu Enhanced */
.notification-menu {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 141, 50, 0.5) transparent;
}

.notification-menu::-webkit-scrollbar {
  width: 6px;
}

.notification-menu::-webkit-scrollbar-thumb {
  background-color: rgba(201, 141, 50, 0.5);
  border-radius: 3px;
}

.notification-menu::-webkit-scrollbar-track {
  background: transparent;
}

.notification-item {
  padding: 1rem;
  border-radius: 8px;
  margin: 0.3rem;
  transition: all 0.2s ease;
  background: white;
}

.notification-item:hover {
  background: rgba(201, 141, 50, 0.05);
  transform: translateX(5px);
}

.notification-item.unread {
  background: rgba(52, 152, 219, 0.05);
  border-left: 3px solid #3498db;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notification-message {
  font-size: 0.9rem;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.notification-time {
  font-size: 0.8rem;
  color: #95a5a6;
  margin-top: 0.2rem;
}

/* Mark as Read Button */
.mark-all-read {
  padding: 0.5rem 1rem;
  color: #c98d32;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.mark-all-read:hover {
  background: rgba(201, 141, 50, 0.1);
  color: #b07b21;
}

/* Search Toggle Enhanced */
.search-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.search-toggle:hover {
  background: rgba(201, 141, 50, 0.1);
  transform: scale(1.05) rotate(-5deg);
}

.search-toggle img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.search-toggle:hover img {
  transform: scale(1.1);
}

/* Navigation Item Hover Effects */
.nav-item {
  position: relative;
  transition: all 0.3s ease;
}

/* Only apply underline to non-dropdown nav items */
.nav-item:not(.dropdown):not([data-bs-toggle='dropdown'])::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c98d32;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:not(.dropdown):not([data-bs-toggle='dropdown']):hover::after,
.nav-item:not(.dropdown):not([data-bs-toggle='dropdown']):active::after,
.nav-item:not(.dropdown):not([data-bs-toggle='dropdown']):focus::after {
  width: 100%;
}

/* Remove focus outline from dropdown toggles */
.nav-item.dropdown .nav-link:focus,
.nav-item .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}

/* Dropdown Divider Enhanced */
.dropdown-divider {
  margin: 0.5rem 1rem;
  border-color: rgba(0, 0, 0, 0.1);
  opacity: 0.5;
}

/* Custom Animations */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notificationSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Notification Styles */
.notification-icon-wrapper {
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notification-icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.notification-icon-wrapper.has-notifications {
  animation: subtle-bounce 2s infinite;
}

.unread_notification_count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--yt-yellow);
  color: var(--yt-charcoal);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: scale-in 0.3s ease-out;
}

.notification_dropdown {
  min-width: 320px;
  max-width: 400px;
  max-height: 80vh; /* Changed from fixed height to viewport-relative */
  overflow-y: auto;
  padding: 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slide-down 0.3s ease-out;
}

.notification_dropdown::-webkit-scrollbar {
  width: 6px;
}

.notification_dropdown::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.notification_dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.notification_dropdown li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.notification_dropdown li:last-child {
  border-bottom: none;
}

.notification_dropdown .dropdown-item {
  padding: 12px 16px;
  transition: all 0.2s ease;
  background: transparent;
  white-space: normal;
  word-wrap: break-word;
  min-height: auto;
}

.notification_dropdown .dropdown-item:hover {
  background: rgba(var(--yt-yellow-rgb), 0.1);
  transform: translateX(4px);
}

/* Ensure dropdown is positioned correctly */
.dropdown-menu-end.notification_dropdown {
  right: 0;
  left: auto;
  margin-top: 0.5rem;
  transform-origin: top right;
}

/* Fix dropdown positioning in navbar */
.navbar .nav-item.dropdown {
  position: static; /* Changed from relative to static */
}

/* Ensure proper stacking context */
.dropdown {
  position: relative;
  z-index: 1000;
}

/* Animation keyframes */
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Notification Icon Styles */
.notification-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-icon-wrapper img {
  filter: brightness(0) invert(1); /* Makes the icon white */
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.notification-icon-wrapper:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.notification-icon-wrapper.has-notifications {
  animation: subtle-bounce 2s infinite;
}

.unread_notification_count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--yt-yellow);
  color: var(--yt-charcoal);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: scale-in 0.3s ease-out;
}

@keyframes subtle-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.navbar-collapse .dropdown-menu {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  border: none;
  box-shadow: none;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

.navbar-collapse .account-search .dropdown-menu,
.navbar-collapse .account-search .nav-item.dropdown .dropdown-menu {
  background: #2a2a2a !important; /* Match the solid color */
  border-radius: 8px;
}

/* Notification dropdown styles */
.notification_dropdown {
  width: 40rem !important;
  border-radius: 8px;
}

.notification_dropdown li {
  margin-bottom: 8px;
}

.notification_dropdown li:last-child {
  margin-bottom: 0;
}

/* Style for unread notifications */
.notification_dropdown .unread_notification {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* Keep the red dot for unread notifications */
.notification_dropdown .unread_notification .red-dot {
  background: #ff6b6b;
}

/* Enhance Courses and Projects Dropdowns */
.navbar .dropdown-menu {
  width: 300px; /* Increase width for better content display */
  padding: 10px; /* Add padding for spacing */
  font-size: 1rem; /* Improve font size for readability */
  border: 1px solid #ddd; /* Add border for distinction */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa; /* Subtle hover effect */
  color: #333; /* Text color on hover */
}

.navbar .dropdown-divider {
  margin: 0.5rem 0; /* Adjust divider spacing */
}

/* Adjust Courses and Projects Dropdowns for Desktop */
.navbar .dropdown-menu {
  position: absolute !important; /* Ensure dropdown is positioned absolutely */
  top: 100% !important; /* Position below the toggle button */
  left: 0 !important; /* Align with the left edge of the button */
  right: auto !important; /* Remove full width */
  width: auto; /* Auto width for content fit */
  background: #fff; /* Standard white background */
  border: 1px solid rgba(0, 0, 0, 0.15); /* Standard Bootstrap border */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); /* Standard Bootstrap shadow */
  border-radius: 0.25rem; /* Standard Bootstrap border radius */
}

.navbar .dropdown-item {
  color: #212529; /* Standard Bootstrap text color */
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa; /* Standard Bootstrap hover background */
  color: #212529; /* Standard Bootstrap hover text color */
}

.navbar .dropdown-divider {
  margin: 0.5rem 0; /* Adjust divider spacing */
}

/* Standard Navbar Styles */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.navbar .navbar-brand img {
  max-height: 55px;
  width: auto;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #212529;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #212529;
}

.navbar .dropdown-divider {
  margin: 0.5rem 0;
}

/* Updated Navbar Styles with yt-yellow Background */
.navbar {
  background-color: var(
    --yt-yellow
  ); /* Use yt-yellow for the navbar background */
  border-bottom: 1px solid #e5e5e5;
}

.navbar .navbar-brand img {
  max-height: 55px;
  width: auto;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: auto;
  background: #fff; /* Keep dropdown background white for contrast */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #212529; /* Standard text color */
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa; /* Light hover background */
  color: #212529; /* Maintain text color on hover */
}

.navbar .dropdown-divider {
  margin: 0.5rem 0;
}

/* Updated Dropdown Background Colors */
.navbar .dropdown-menu {
  background: var(
    --yt-yellow-faint-bg
  ); /* Use a faint yellow background for dropdowns */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #212529;
}

.navbar .dropdown-item:hover {
  background-color: var(--yt-yellow-faint); /* Use a faint yellow for hover */
  color: #212529;
}

/* Updated Dropdown Background and Text Colors */
.navbar .dropdown-menu {
  background: #fff; /* White background for dropdowns */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #000; /* Black text color */
}

.navbar .dropdown-item:hover {
  background-color: #f0f0f0; /* Light grey hover background */
  color: #000; /* Maintain black text color on hover */
}

/* Consistent Dropdown Styles for Courses, Projects, and Notifications */
.navbar .dropdown-menu {
  background: #fff; /* White background for all dropdowns */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #000; /* Black text color for all dropdown items */
}

.navbar .dropdown-item:hover {
  background-color: #f0f0f0; /* Light grey hover background for all dropdown items */
  color: #000; /* Maintain black text color on hover */
}

.notification_dropdown .dropdown-item {
  color: #000; /* Ensure black text color for notification items */
}

.notification_dropdown .unread_notification {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.notification_dropdown .unread_notification .red-dot {
  background: #ff6b6b;
}

/* Consolidated Navbar and Dropdown Styles */
.navbar {
  background-color: var(
    --yt-yellow
  ); /* Use yt-yellow for the navbar background */
  border-bottom: 1px solid #e5e5e5;
}

.navbar .navbar-brand img {
  max-height: 55px;
  width: auto;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: auto;
  background: #fff; /* White background for dropdowns */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #000; /* Black text color */
}

.navbar .dropdown-item:hover {
  background-color: #f0f0f0; /* Light grey hover background */
  color: #000; /* Maintain black text color on hover */
}

.navbar .dropdown-divider {
  margin: 0.5rem 0;
}

/* Notification Dropdown Styles */

.notification_dropdown .unread_notification {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.notification_dropdown .unread_notification .red-dot {
  background: #ff6b6b;
}

/* Ensure Courses Dropdown Matches Profile Dropdown */
.navbar .dropdown-menu {
  background: #fff; /* White background for courses dropdown */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border-radius: 0.25rem;
}

.navbar .dropdown-item {
  color: #000; /* Black text color for courses dropdown */
}

.navbar .dropdown-item:hover {
  background-color: #f0f0f0; /* Light grey hover background for courses dropdown */
  color: #000; /* Maintain black text color on hover */
}



/* =================================================================== */
/* MEDIA QUERIES */
/* =================================================================== */

/* Responsive adjustments */
@media (max-width: 1400px) {
  .page-content.block-image {
    max-width: 1000px;
  }
}

@media (max-width: 475px) {
  .treasury-features .hexagon .hexagon-content {
    padding: 75px 13%;
  }
  .bg-course h1 {
    font-size: 2rem;
  }

  .bg-course .mb-5 {
    padding: 2rem 0;
  }

  .treasury-header .navbar .menu {
    padding-left: 0 !important;
  }
}

@media (max-width: 576px) {
  /* Typography */
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }

  /* Header & Navigation */
  .treasury-header .top-bar .links .link span {
    display: none;
  }
  .treasury-header .top-bar .links .link img {
    height: 24px;
  }
  .treasury-header .top-bar .lang-selector img {
    height: 16px;
  }
  .treasury-header .top-bar .lang-selector a.dropdown-toggle {
    font-size: 14px;
  }
  .treasury-header .top-bar .lang-selector a.dropdown-toggle span {
    margin-left: 6px !important;
  }
  .treasury-header .navbar .account-search-nav .account-search {
    right: 80px;
  }

  /* Hero Section */
  .treasury-hero {
    padding: 60px 0;
  }
  .treasury-hero .rev-text {
    font-size: 14px;
  }
  .treasury-hero .hero-content .btn {
    margin-bottom: 10px;
  }

  /* Solutions CTA */
  .solutions-cta {
    margin: 2rem 0;
  }
  .solutions-cta .bg {
    padding: 10px 12px 20px;
    min-height: auto;
    background: none !important;
    margin-bottom: 20px;
    border-radius: 1rem;
  }
  .solutions-cta .bg .blue-overlay {
    display: none;
  }
  .solutions-cta .cta-box {
    padding: 30px 20px;
    margin: 0.5rem;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: var(--yt-yellow-faint) !important;
  }
  .solutions-cta .cta-box .content p {
    margin: 16px 0 30px;
    font-size: 14px;
  }
  .solutions-cta .cta-box .upto h2 {
    font-size: 30px;
  }
  .solutions-cta .cta-box .upto p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .solutions-cta .upto .metric {
    margin-bottom: 1rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 50px 0 60px;
  }

  .testimonials .text-box {
    position: relative;
    z-index: 1;
  }
  .testimonials .arrows {
    display: none;
  }
  .testimonials .testimonials-slider .testimonial-slide {
    padding: 20px 20px 0;
    background: #353558;
    border-radius: 12px;
  }
  .testimonials
    .slider-box
    .testimonials-slider
    .testimonial-slide
    .testimonial-by {
    width: 100%;
    text-align: left;
    bottom: 0;
    padding: 0 0 20px;
    display: block;
    position: relative;
  }
  .testimonials
    .slider-box
    .testimonials-slider
    .testimonial-slide
    .testimonial-by
    .img {
    padding: 0 !important;
  }
  .testimonials
    .slider-box
    .testimonials-slider
    .testimonial-slide
    .testimonial-by
    .img
    img {
    height: 70px;
  }
  .testimonials
    .slider-box
    .testimonials-slider
    .testimonial-slide
    .testimonial-by
    .text
    span.main-color {
    font-size: 16px;
  }
  .testimonials
    .slider-box
    .testimonials-slider
    .testimonial-slide
    .testimonial-by
    .text
    span {
    font-size: 12px;
  }

  /* Join Community Section */
  .join-our-community {
    padding: 50px 0;
  }
  .join-our-community .col-lg-10 {
    padding: 0;
  }
  .join-our-community .join-us-box {
    border-radius: 6px;
    padding: 50px 20px;
  }
  .join-our-community .join-us-box .orange-o,
  .join-our-community .join-us-box .blue-x {
    display: none;
  }

  /* FAQ Section */
  .faq .faq-box {
    padding: 30px 14px;
    margin-bottom: 50px;
  }
  .faq .faq-box .accordion-button {
    padding: 14px 0;
    font-size: 16px;
  }
  .faq .faq-box .accordion-body {
    font-size: 14px;
  }

  /* Features & Vision */
  .treasury-features .hexagon .hexagon-content {
    padding: 80px 20%;
  }
  .treasury-vision-mission .img-box {
    height: 60px;
    width: 60px;
  }

  /* Search */
  .search-wrapper {
    padding: 15px 0;
  }
  .search-input {
    height: 45px;
    font-size: 1rem;
  }
  .search-close-btn {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
  }
  #search-bar-input.active input {
    margin: 10px 0;
  }

  /* Footer */
  .treasury-footer .newsletter form .btn {
    padding: 12px 20px;
  }

  /* Utility Classes */
  .cr-w-50,
  .course-page .cr-w-50 {
    width: 90%;
  }

  .companies_logos_img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
  }
  .notification_dropdown {
    width: 15rem !important;
  }
}

@media (max-width: 768px) {
  /* Navbar & Navigation */
  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--yt-charcoal);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-collapse .nav-item {
    width: 100%;
    text-align: left;
    margin: 0.5rem 0;
    position: relative;
  }

  .navbar-collapse .nav-link {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    color: var(--yt-charcoal);
  }

  /* Hide desktop navigation */
  .navbar .account-search {
    display: none !important;
  }

  /* Mobile Navigation Items */
  .navbar-collapse .d-block.d-lg-none .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse .d-block.d-lg-none .nav-item:last-child {
    border-bottom: none;
  }

  /* Dropdown Menus */
  .navbar-collapse .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none;
    box-shadow: none;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
  }

  /* Notification Dropdown */
  .notification_dropdown {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0;
    height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    transform: none !important;
  }

  .dropdown-toggle img {
    width: 1rem;
  }

  #notifications-mobile img {
    filter: brightness(0) invert(1);
  }

  .notification-message {
    color: white !important;
  }

  /* Profile Dropdown */
  .profile-dropdown {
    position: fixed !important;
    top: var(--navbar-height) !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 !important;
  }

  /* Dropdown Styling */
  .navbar-collapse .dropdown-menu .dropdown-item {
    color: white !important;
    padding: 0.75rem 1rem;
  }

  .navbar-collapse .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .navbar-collapse .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* Account Search Dropdowns */
  .navbar-collapse .account-search .dropdown-menu,
  .navbar-collapse .account-search .nav-item.dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    width: 200px;
    background: #2a2a2a !important;
    border-radius: 8px;
  }

  /* Hero Section */
  .treasury-hero {
    background: #eff0fd !important;
    padding: 60px 0;
  }

  .treasury-hero::before,
  .treasury-hero::after {
    display: none;
  }

  .treasury-hero .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .treasury-hero h1 {
    font-size: 2.2rem;
  }

  .treasury-hero .hero-img {
    display: none;
    margin-top: 40px;
  }

  .treasury-hero .btns {
    width: 100%;
    justify-content: center;
  }

  .treasury-hero .btns .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  /* Solutions CTA */
  .solutions-cta .bg {
    background: none !important;
    animation: floatCard 8s ease-in-out infinite;
    transform: none;
  }

  .solutions-cta .blue-overlay {
    display: none;
  }

  .solutions-cta .cta-box {
    margin: 1rem;
    animation: fadeIn 1s ease-out;
  }

  .solutions-cta .upto {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .solutions-cta .upto .metric {
    width: 100%;
  }

  /* Testimonials */
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials .testimonials-slider .testimonial-slide {
    padding: 1rem;
    margin: 0.5rem auto;
    min-height: 250px;
  }

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

  .testimonials .arrows {
    display: none;
  }

  /* Footer */
  .treasury-footer {
    text-align: center;
    padding: 3rem 0;
  }

  .treasury-footer .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }

  .treasury-footer .copyright-bar .text-md-end {
    text-align: center !important;
  }

  .companies_logos_img {
    width: 10rem;
    object-fit: cover;
  }


  .row {
    flex-direction: column-reverse;
  }
  
  .content-box {
    margin-top: 2rem;
  }

  .video-container {
    margin-bottom: 1.5rem;
  }
  
  /* Disable hover animation on mobile to prevent jitter */
  .video-container:hover {
    transform: none;
    border-color: rgba(30, 110, 231, 0.1);
  }


  .video-wrapper:hover {
    transform: none;
    border-color: rgba(0, 0, 0, 0.05);
  }


  .animate-circle,
  .animate-arrow {
    transform: translateY(-50%);
    transition: 
      opacity 0.8s ease,
      transform 0.8s ease;
  }
  
  .animate-circle.animate,
  .animate-arrow.animate {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-arrow img {
    transform: rotate(90deg); /* Rotate the icon 45 degrees clockwise */
  }
}

@media (max-width: 991px) {
  /* Typography & General */
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 36px;
  }
  p {
    font-size: 15px;
  }

  /* Header & Navigation */
  .treasury-header .navbar {
    padding: 10px 0 !important;
  }

  .treasury-header .navbar .navbar-brand {
    position: relative;
    z-index: 1;
  }

  .treasury-header .navbar .navbar-toggler {
    z-index: 9;
  }

  /* Navbar Collapse - Latest Mobile Styles */
  .navbar-collapse {
    background-color: var(--yt-yellow);
    border-top: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-collapse .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--yt-yellow-faint-bg);
  }

  .navbar-collapse .dropdown-item {
    color: #212529;
  }

  .navbar-collapse .dropdown-item:hover {
    background-color: #f8f9fa;
  }

  /* Navigation Items */
  .treasury-header .navbar .nav-item {
    width: 100%;
  }

  .treasury-header .navbar .nav-link {
    padding: 12px 15px;
    width: 100%;
  }

  .treasury-header .navbar .menu .nav-item {
    margin: 6px 0;
  }

  .treasury-header .navbar .menu .nav-link {
    padding: 10px 0;
    font-size: 14px;
  }

  /* Dropdown Menu Styles */
  .treasury-header .navbar .menu .dropdown-menu {
    border: 0;
    box-shadow: none;
    height: fit-content;
    border-radius: 8px;
    width: 100%;
  }

  .treasury-header .navbar .menu .dropdown-menu li {
    margin-bottom: 10px;
  }

  .treasury-header .navbar .menu .dropdown-menu li .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
  }

  .treasury-header .navbar .menu .dropdown-menu li a {
    color: white !important;
    background: transparent !important;
    border-radius: 6px;
    padding: 10px;
    width: 2rem;
  }

  .treasury-header .navbar .menu .dropdown-menu li a:hover {
    background: #3a3a3a !important;
  }

  /* Account Search Navigation */
  .treasury-header .navbar .account-search-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 70px;
  }

  .treasury-header .navbar .account-search-nav .nav-item a img {
    height: 20px;
  }

  .treasury-header .navbar .account-search-nav .nav-item a.account img {
    height: 30px;
    width: 30px;
    outline: none;
    border: none;
  }

  /* Hero Section */
  .treasury-hero {
    padding: 80px 0;
  }

  .treasury-hero h1 {
    font-size: 2.8rem;
  }

  .treasury-hero .hero-img {
    margin-top: 3rem;
    padding: 0.5rem;
  }

  .treasury-hero .hero-img img {
    border-radius: 20px;
  }

  /* Solutions CTA */
  .solutions-cta {
    margin: 2rem 0;
  }

  .solutions-cta .bg {
    min-height: 350px;
    animation: floatCard 8s ease-in-out infinite;
    transform: none;
  }

  .solutions-cta .cta-box {
    margin: 0;
    padding: 2rem;
    transform: translateX(0);
    animation: fadeIn 1s ease-out;
  }

  .solutions-cta .content h3 {
    font-size: 2rem;
  }

  .solutions-cta .upto h2 {
    font-size: 2.5rem;
  }

  .solutions-cta .metric {
    padding: 1.75rem;
  }

  .solutions-cta .metric .number {
    font-size: 2.75rem;
  }

  .solutions-cta .metric .unit {
    font-size: 1.5rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 70px 0;
  }

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

  .testimonials .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 1rem;
    margin-top: 0;
  }

  .testimonials .arrows button {
    width: 35px;
    height: 35px;
  }

  .testimonials .arrows button img {
    width: 16px;
    height: 16px;
  }

  /* Footer */
  .treasury-footer .newsletter {
    padding: 30px 0;
  }

  .treasury-footer .footer-links .row {
    padding: 30px 0;
  }

  /* Utility Classes */
  .notification_dropdown {
    width: 15rem !important;
  }

  .cr-w-50 {
    width: 85%;
  }
  
  .course-page .cr-w-50 {
    width: 75%;
  }

  .size-12rem {
    height: 12rem;
    width: 12rem;
  }

  .reverse .square-1 {
    order: 1;
  }

  .reverse .square-2 {
    order: 2;
  }
}

@media (max-width: 1199px) {
  /* Typography */
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 38px;
  }

  /* Container */
  .container {
    padding-right: 15px;
    padding-left: 15px;
    max-width: 100%;
  }

  /* Header & Navigation */
  .treasury-header .navbar {
    padding: 10px 0 !important;
  }

  .treasury-header .navbar-collapse {
    /* display: flex; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    background-color: var(--yt-yellow);
    z-index: 9;
  }
  .navbar-light .navbar-toggler {
    z-index: 10;
  }

  /* Navigation Links */
  .treasury-header .navbar .nav-link {
    padding: 12px 15px;
  }

  .treasury-header .navbar .menu .nav-link {
    padding: 10px 0;
    font-size: 14px;
  }

  .treasury-header .navbar .menu .nav-item {
    margin: 6px 0;
    width: 100%;
    height: auto;
  }

  /* Account Search Navigation */
  .treasury-header .navbar .account-search-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 70px;
  }

  .treasury-header .navbar .menu {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .treasury-header .navbar .account-search-nav .account-search {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 22%;
    z-index: 1;
  }

  .treasury-header .account-search {
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px;
  }

  .treasury-header .account-search .nav-item {
    margin: 0 10px;
  }

  /* Images and Icons */
  .treasury-header .navbar .account-search-nav .nav-item a img {
    height: 20px;
  }

  .treasury-header .navbar .account-search-nav .nav-item a.account img {
    height: 30px;
    width: 30px;
    outline: none;
    border: none;
  }

  /* Dropdown and Language Selector */
  .treasury-header .navbar .dropdown-menu {
    position: absolute;
  }

  .treasury-header .navbar .account-search-nav .nav-item .lang-selector-circle {
    position: relative;
  }

  /* Search Bar */
  #search-bar-input.active input {
    margin: 10px 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .treasury-hero,
  .treasury-hero .hero-img,
  .treasury-hero .rev-text,
  .treasury-hero h1 {
    animation: none;
    transition: none;
  }

  .solutions-cta .bg,
  .solutions-cta .metric,
  .solutions-cta .content h3::before {
    animation: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =================================================================== */
/* END MEDIA QUERIES */
/* =================================================================== */

