 @import url(bootstrap.min.css);
 @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
 @import url(font.css);

 :root {
     --font-primary: "Graphik", Arial, sans-serif;
     --primary-color: #CB1AC6;
     --secondary-color: #00EEAE;
     --dark-color: #2B3A44;
     --contrast-blue: #1A31D8;
     --dark-blue: #171052;
     --light-bg: #F9F9F9;
     --footer-bg: #3B1352;

 }

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

 html,
 body {
     font-family: var(--font-primary);
     font-size: 17px;
     overflow-x: hidden;
     color: var(--dark-color);
 }

 .container {
     max-width: 1380px;
     padding-left: 35px;
     padding-right: 35px;
 }

 .main-wrapper {
     padding: 0;
 }

 .inner-screen-wrapper {
     padding-top: 60px;
 }
h1,
 h2,
 h3,
 h4,
 h5,
 .h2-style,
 .h3-style,
 .h4-style {
     margin: 0;
     padding: 0;
     font-weight: 500;
 }

 h2, .h2-style {

     font-size: 2.188rem;
     margin-bottom: 2.813rem;
 }

 h3, .h3-style {

     font-size: 2rem;
     margin-bottom: 2rem;
 }

 h4, .h4-style {

     font-size: 1.5rem;
     margin-bottom: 1.5rem;
 }

 h5 {

     font-size: 1.2rem;
     margin-bottom: 1.2rem;
 }

 .section-title-big {
     font-size: 2.5rem;
     margin-bottom: 2.813rem;
     font-weight: 400;
     line-height: 2.8rem;
 }

 .text-highlight {
     color: var(--primary-color);
 }

 section {
     margin: 3.75rem 0;
 }

 section p:last-child {
     margin-bottom: 0;
 }

 .gray-bg {
     background-color: #F9F9F9;
 }

 .section-bg-padding {
     padding: 3.125rem 0;
 }

 .fw-500 {
     font-weight: 500;
 }
.text-underline {
    text-decoration: underline;
}
.text-white {
    color: #fff;
}
ul.second-lvl-list li::before {
    background-color: var(--dark-color);
}
ul.third-lvl-list li::before {
    background-color: #fff;
    border: 1px solid var(--dark-color);
}
.green-border {
    border-color: var(--secondary-color) !important;
}
.red-border {
    border-color: #FF0000 !important;
}

.readonly-value {
    font-size: 1.3rem;
    font-weight: 500;
}
.gray-card {
    background-color: #f4f4f4;
    border-radius: 10px !important;
    border: none !important;
}

 /***Typography***/
 .font-sm {
     font-size: 0.938rem;
 }

 /***Typography***/

 /***Buttons***/

 .primary-btn {
     background: var(--primary-color);
     color: white;
     border: none;
     padding: 10px 15px;
     border-radius: 5px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .primary-btn:hover,
 .primary-btn:focus {
     transform: translateY(-2px);
     background-color: #9e149a;
     color: white;
 }

 .sign-in-btn {
     margin: 0 10px 0 20px;
 }

 /***Buttons***/

 /***Header and Menu***/
 .app-navbar.navbar {
     background: linear-gradient(135deg, var(--contrast-blue), var(--dark-blue));
     padding: 18px 0;
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     border-bottom: 2px solid rgba(255, 255, 255, 0.1);
 }

 .app-navbar.navbar.scrolled {
     padding: 10px 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .app-navbar .logo-icon img {
     width: 170px;
     height: auto;
 }

 .app-navbar .navbar-brand {
     display: flex;
     align-items: center;
     transition: transform 0.3s ease;
 }

 .app-navbar .navbar-brand:hover {
     transform: scale(1.05);
 }

 .app-navbar.navbar .nav-link {
     color: rgba(255, 255, 255, 1) !important;
     font-weight: 500;
     font-size: 0.938rem;
     padding: 10px 20px !important;
     transition: all 0.3s ease;
     position: relative;
 }


 .app-navbar.navbar .nav-link.active {
     color: var(--secondary-color) !important;
     font-weight: 600;
 }

 .app-navbar.navbar .nav-link::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 2px;
     background: var(--primary-color);
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 .app-navbar.navbar .nav-link:hover::before,
 .app-navbar.navbar .nav-link.active::before {
     width: 80%;
 }

 .app-navbar.navbar .nav-link.active::before {
     background: var(--secondary-color);
 }

 .app-navbar.navbar .dropdown-menu {
     background: white;
     border: none;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     border-radius: 40px 0;
     margin-top: 0;
     pointer-events: auto;
     /* display: none; */
 }

 .app-navbar.navbar .dropdown-menu.show {
     /* display: block; */
     animation: slideDown 0.3s ease;
 }

 .app-navbar.navbar .nav-link.dropdown-toggle::after {
     border-top: .4em solid;
     border-right: .4em solid transparent;
     border-bottom: 0;
     border-left: .4em solid transparent;
     position: relative;
     top: 2px;

 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .app-navbar.navbar .dropdown-item {
     padding: 0.7rem 1.5rem;
     color: var(--dark-color);
     font-size: 0.938rem;
     font-weight: 500;
     transition: all 0.3s ease;
     background: transparent;
 }

 .app-navbar.navbar .dropdown-item.active {
     color: var(--primary-color);
 }

 .app-navbar.navbar .dropdown-item:hover {
     color: var(--primary-color);
     transform: translateX(5px);
 }

 .app-navbar .navbar-toggler {
     border: none;
     padding: 0;
     width: 30px;
     height: 30px;
     position: relative;
     transition: all 0.3s ease;
 }

 .app-navbar .navbar-toggler:focus {
     box-shadow: none;
     width: 40px;
     height: 40px;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hamburger {
     width: 30px;
     height: 20px;
     position: relative;
     transform: rotate(0deg);
     transition: 0.5s ease-in-out;
     cursor: pointer;
 }

 .hamburger span {
     display: block;
     position: absolute;
     height: 3px;
     width: 100%;
     background: white;
     border-radius: 9px;
     opacity: 1;
     left: 0;
     transform: rotate(0deg);
     transition: 0.25s ease-in-out;
 }

 .hamburger span:nth-child(1) {
     top: 0px;
 }

 .hamburger span:nth-child(2) {
     top: 8px;
 }

 .hamburger span:nth-child(3) {
     top: 16px;
 }

 .app-navbar .navbar-toggler.active .hamburger span:nth-child(1) {
     top: 8px;
     transform: rotate(135deg);
 }

 .app-navbar .navbar-toggler.active .hamburger span:nth-child(2) {
     opacity: 0;
     left: -60px;
 }

 .app-navbar .navbar-toggler.active .hamburger span:nth-child(3) {
     top: 8px;
     transform: rotate(-135deg);
 }

 .app-navbar .navbar-collapse {
     transition: all 0.3s ease;
 }

 /***Clickable Chart***/
 .flow-wrapper {
     position: relative;
     max-width: 1200px;
 }

 .flow-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Clickable areas */
 .hotspot {
     position: absolute;
     top: 2%;
     height: 85%;
     cursor: pointer;
 }
.automated-hotspot {
 top: 11%;
}
 /* Positioning */
 .complex-step_1, .complex-step_2, .complex-step_3, .complex-step_4, .complex-step_5,
 .automated-step_1, .automated-step_2, .automated-step_3 {
     width: 17.8%;
 }
 .complex-step_1 {
     left: 11%;
 }

 .complex-step_2 {
     left: 28.8%;
 }

 .complex-step_3 {
     left: 46.6%;
 }

 .complex-step_4 {
     left: 64.4%;
}

 .complex-step_5 {
     left: 82.2%;
 }
  .automated-step_1 {
     left: 22%;
 }

 .automated-step_2 {
     left: 45.8%;
 }

 .automated-step_3 {
     left: 70.6%;
 }

 /* Keyboard focus styles (WCAG 2.4.7) */
 .hotspot:focus-visible {
     outline: 3px solid #5b3cc4;
     outline-offset: 4px;
     background-color: rgba(91, 60, 196, 0.15);
 }

 /* Optional hover for mouse users */
 .hotspot:hover {
     background-color: rgba(91, 60, 196, 0.1);
 }

 .flow-notifications {
     font-size: 0.9rem;
     background-color: #FFFEEE;
     border: 1px solid #F4E028;
     text-align: center;
     padding: 8px 20px;
     font-weight: 500;
     display: inline-block;
     border-radius: 5px;
     margin-top: 20px;
     position: relative;
 }

 .flow-notifications::before {
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-4px);
     content: '';
     width: 0;
     height: 0;
     border-left: 8px solid transparent;
     border-right: 8px solid transparent;
     border-bottom: 10px solid #F4E028;
     position: absolute;
 }
/***Breadcrumbs***/
.breadcrumb {
    margin-bottom: 35px;
}
 @media (max-width: 1199px) {
     .app-navbar .navbar-collapse {
         background: #1931e3;
         position: fixed;
         top: 75px;
         right: 0;
         width: 100%;
         height: calc(100vh - 70px);
         padding: 20px;
         transform: translateX(100%);
         transition: transform 0.45s ease-in-out;
         overflow-y: auto;
         z-index: 1000;
     }

     .app-navbar .navbar-collapse.show {
         transform: translateX(0);
     }

     .app-navbar.navbar .nav-link {
         font-size: 1.2rem;
         padding: 17px 0 !important;
         border-bottom: 1px solid rgba(255, 255, 255, 0.3);
         font-weight: normal;
     }

     .app-navbar.navbar .nav-link:hover::before,
     .app-navbar.navbar .nav-link.active::before {
         width: 100%;
     }

     .app-navbar.navbar .nav-link.dropdown-toggle::after {
         right: 0;
         position: absolute;
         top: 50%;
     }

     .app-navbar.navbar .dropdown-menu {
         background: rgba(255, 255, 255, 0.1);
         border-radius: 0;
         margin: 0;
         padding-left: 1rem;
         box-shadow: none;
     }

     .app-navbar.navbar .dropdown-item {
         color: #fff;
         font-size: 1.125rem;
         padding: 15px 10px;
         font-weight: normal;
         position: relative;
     }

     .app-navbar.navbar .dropdown-item:hover {
         color: #fff;
     }

     .app-navbar.navbar .dropdown-item::before {
         content: '';
         position: absolute;
         bottom: 0;
         left: 50%;
         width: 0;
         height: 2px;
         background: var(--primary-color);
         transition: all 0.3s ease;
         transform: translateX(-50%);
     }

     .app-navbar.navbar .dropdown-item:hover::before,
     .app-navbar.navbar .dropdown-item.active::before {
         width: 99%;
     }

     .app-navbar.navbar .dropdown-item.active {
         color: var(--secondary-color);
     }

     .container,
     .container-sm,
     .container-md {
         max-width: 90%;
         padding-left: 0;
         padding-right: 0;
     }

     .search-icon {
         position: fixed;
         top: 24px;
         right: 75px;
         z-index: 1035;
     }

     .app-navbar.navbar.scrolled {
         padding: 18px 0;
     }

     .sign-in-btn {
         width: 100%;
         margin-top: 20px;
         padding: 15px;
         margin: 20px 0 0 0;
     }
 }
 @media (min-width: 1199px) {
    .app-navbar .navbar-toggler:focus {
       display: none;
    }
 }
 /***Header and Menu***/

 /***Banner/Hero Section***/

 .hero-section {
     background: linear-gradient(135deg, var(--contrast-blue), var(--dark-blue));
     position: relative;
     margin-top: 89px;
     height: 300px;
     display: flex;
     align-items: center;
 }

 h1.hero-title {
     color: white;
     font-size: 3.75rem;
     font-weight: 300;
 }


 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(10deg);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-icon {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     position: relative;
     animation: fadeInRight 0.8s ease;
 }

 @keyframes fadeInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .hero-icon::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border: 3px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     animation: pulse 2s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.5;
     }
 }

 .banner-wrapper {
     position: relative;
     height: 300px;
     display: flex;
     align-items: center;
 }

 .banner-logo {
     opacity: 0.2;
     width: 168px;
     position: absolute;
     top: 50%;
     right: 0;
     transform: translateY(-50%)
 }

 /***Banner/Hero Section***/

 /***Footer***/
 .site-footer {
     background: #3b1457;
     color: #ffffff;
     padding: 3.125rem 0 2.7rem;
     font-size: 15px;
 }


 .site-footer .logo-icon img {
     max-width: 145px;
 }

 .footer-menu-heading {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 1.25rem;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #fff;
     text-decoration: none;
 }

 .footer-links a:hover {
     color: #ffffff;
     text-decoration: underline;
 }

 .bottom-footer-links ul li {
     display: inline-block;
     padding: 0 20px;
     position: relative;
 }

 .bottom-footer-links ul li:last-child {
     padding-right: 0;
 }

 .bottom-footer-links ul li:after {
     position: absolute;
     top: 0;
     right: 0;
     content: '|';
 }

 .bottom-footer-links ul li:last-child::after {
     content: none;
 }

 .scroll-top {
     position: fixed;
     bottom: 30px;
     right: 15px;
     width: 45px;
     height: 45px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
     z-index: 1000;
     border: none;
 }

 .scroll-top.show {
     opacity: 1;
     visibility: visible;
 }

 .scroll-top:hover {
     transform: translateY(-5px);
 }

 /***Footer***/


 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
 }

 *:focus-visible {
     outline: 2px solid var(--primary-color);
     outline-offset: 2px;
 }



 /* Enhanced keyboard navigation */
 .dropdown-toggle:focus {
     outline: 2px solid var(--primary-color);
     outline-offset: 2px;
 }

 .dropdown-item:focus,
 .navbar-toggler:focus,
 .nav-item .nav-link:focus {
     outline: 1px solid var(--primary-color);
     outline-offset: -1px;
     color: white;
 }

 /* Enhanced keyboard navigation */

 /***Search***/

 .search-icon {
     width: 40px;
     height: 40px;
     background: transparent;
     border: none;
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 1rem;
 }

 .search-icon:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: scale(1.1);
 }

 .search-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: var(--dark-blue);
     z-index: 9999;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 100px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .search-overlay.active {
     opacity: 0.9;
     visibility: visible;
 }

 .search-container {
     width: 90%;
     max-width: 900px;
     position: relative;
     transform: translateY(-50px);
     transition: transform 0.3s ease;
 }

 .search-overlay.active .search-container {
     transform: translateY(0);
 }

 .search-input-wrapper {
     position: relative;
     width: 100%;
 }

 .search-input {
     width: 100%;
     padding: 1.5rem 4rem 1.5rem 2rem;
     font-size: 1.2rem;
     border: none;
     border-radius: 50px;
     background: white;
     color: var(--primary-blue);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .search-input:focus {
     outline: none;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
 }

 .search-input::placeholder {
     color: rgba(0, 51, 204, 0.5);
 }

 .search-submit {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     border: none;
     border-radius: 50%;
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .search-submit:hover {
     transform: translateY(-50%) scale(1.1);
     box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
 }

 .search-close {
     position: absolute;
     top: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border: 2px solid white;
     border-radius: 50%;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .search-close:hover {
     background: white;
     color: var(--dark-blue);
     transform: rotate(90deg);
 }

 /***Search***/

 /***Stat cards Section***/
 .state-container .stat-card:first-child {
     padding-top: 0;
 }

 .state-container .stat-card:last-child {
     border-bottom: none;
 }

 .stat-card {
     padding: 40px 0;
     display: flex;
     border-bottom: 1px solid #EBEBEC;
 }

 .stat-icon {
     min-width: 60px;
     display: flex;
     align-items: center;
     margin-right: 30px;
 }

 .stat-number {
     color: var(--primary-color);
     font-size: 2.5rem;
     font-weight: 400;
     margin: 0 0 10px;
     line-height: 1;
 }

 .stat-label {
     color: var(--dark-color);
     font-size: 1.1rem;
     font-weight: 500;
     margin: 8px 0 0 0;
 }

 /***Stat cards Section***/
 /***cards Section***/
 .app-card.card {
     border: 1px solid var(--contrast-blue);
     padding: 0px;
     border-radius: 25px 0 25px;
 }

 .app-card.card .card-body {
     padding: 25px;
 }

 .app-card.card .card-body .card-title {
     font-size: 1.42rem;
     margin-bottom: 20px;
     font-weight: 500;
     line-height: 1.8rem;
 }

 .dark-blue-bg {
     background: #1A2BAB;
     color: #fff;
 }

 /***cards Section***/


 /* List Style - Bulllet */

 .list-style {
     position: relative;
 }

 .list-style li {
     position: relative;
     padding-left: 0;
     margin-bottom: 0.75rem;
     list-style-type: none;
 }
 .list-style li:last-child {
    margin-bottom: 0;
 }
 .list-style li:before {
     position: absolute;
     content: "";
     left: -25px;
     top: 10px;
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background-color: var(--secondary-color);
 }

 /* List Style - Bulllet */
 /* Table */
 .table-container {
     border: 1px solid #EBEDF5;
     padding: 20px;
 }

 .app-table .table {
     margin: 0;
 }

 .app-table table {
     width: 100%;
     border-collapse: collapse;
     min-width: 600px;
 }

 .app-table thead {
     background-color: var(--dark-color);
     color: white;
 }

 .app-table thead th {
     padding: 15px 20px;
     text-align: left;
     font-weight: 500;
     font-size: 1rem;
     border-right: 1px solid #3d5468;
 }

 .app-table thead th:last-child {
     border-right: none;
 }

 .app-table tbody tr {
     border-bottom: 1px solid #e0e0e0;
 }

 .app-table tbody tr:nth-child(odd) {
     background-color: #F5F5F5;
 }

 .app-table tbody tr:nth-child(even) {
     background-color: #ffffff;
 }

 .app-table tbody tr:hover {
     background-color: #EBEDF5;
 }

 .app-table tbody td {
     padding: 15px 20px;
     color: var(--dark-color);
     vertical-align: top;
 }

 .app-table ol, .app-table ul {
    padding-left: 23px;
}

 .app-table .list-style li:before {
    left: -19px;
}

.app-table .list-style li {
    margin-bottom: 10px !important;
}

.app-table dl, .app-table ol, .app-table ul {
    margin-bottom: 0rem !important;
}

 /* Responsive scrollbar styling */
 .table-container::-webkit-scrollbar {
     height: 8px;
 }

 .table-container::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 4px;
 }

 .table-container::-webkit-scrollbar-thumb {
     background: #888;
     border-radius: 4px;
 }

 .table-container::-webkit-scrollbar-thumb:hover {
     background: #555;
 }
.sort-icon {
    cursor: pointer;
}
 /* Table */

 /* ------card Lists for Trainings  Starts-------- */
 .card-list-main .cards-lists:first-child {
     padding-top: 0;
 }

 .cards-lists {
     padding: 2.5rem 0;
     border-bottom: 1px solid #dfdfdf;
 }

 .cards-lists .card-list-image {
     padding-right: 2.5rem;
     padding-top: 12px;
 }

 .cards-lists .card-list-image img {
     border-radius: 2.813rem 0 2.813rem 0;
     width: 100%;
     height: auto;
     max-height: 225px;
     object-fit: cover;

 }

 .cards-lists .card-list-title {
     margin-bottom: 1.875rem;
     font-weight: 400;
 }

 .cards-lists .card-list-date {
     margin-bottom: 20px;
     font-weight: 500;
 }

 .cards-lists p {
     margin-bottom: 2.188rem;
 }

 /* ------card Lists for Trainings  Starts-------- */

 /* ------Viedos Section  Starts-------- */

 .filters-section {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .filter-label {
     font-size: 15px;
     min-width: 62px;
 }

 .form-select {
     border: 1px solid #d1d5db;
     border-radius: 1.5rem;
     background-color: white;
     min-width: 150px;
 }

 .form-select:focus {
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
 }

 .video-card {
     background: white;
     border-radius: 2.813rem 0 2.813rem 0;
     overflow: hidden;
     box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.2s, box-shadow 0.2s;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .video-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
 }

 .video-thumbnail {
     position: relative;
     width: 100%;
     padding-top: 50%;
     background: var(--dark-color);
     overflow: hidden;
 }

 .video-thumbnail img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.85);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s;
     border: 1px solid #fff;
 }

 .play-button:hover {
     background: white;
     transform: translate(-50%, -50%) scale(1.1);
     cursor: default;
 }

 .play-icon {
     width: 0;
     height: 0;
     border-left: 20px solid var(--primary-color);
     border-top: 12px solid transparent;
     border-bottom: 12px solid transparent;
     margin-left: 4px;
 }

 .video-content {
     padding: 1.7rem;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .video-title {
     font-size: 1.5rem;
     line-height: 2rem;
     font-weight: normal;
     color: var(--dark-color);
     margin-bottom: 0.5rem;
 }

 .video-date {
     font-size: 0.938rem;
     color: var(--dark-color);
     margin-bottom: 1rem;
 }

 .watch-link {
     color: var(--contrast-blue);
     text-decoration: none;
     font-weight: 500;
     display: inline-flex;
     align-items: center;
     margin-top: auto;
     transition: color 0.2s;
 }

 .watch-link:hover {
     text-decoration: underline;
 }

 .pagination {
     margin-top: 3rem;
 }

 .page-link {
     color: var(--dark-color);
     padding-left: 15px;
     padding-right: 15px;
 }

 .page-link:hover {
     background-color: var(--dark-color);
     color: #fff;
 }

 .page-item.active .page-link {
     background-color: var(--primary-color);
     color: white;
     border: var(--primary-color);
 }

 .no-results {
     text-align: center;
     padding: 3rem;
     color: #6b7280;
 }

 /* ------Viedos Section  Starts-------- */
 
/* accoordion style */
 .app-accordion .accordion{
    border-bottom: 1px solid var(--secondary-color);
 }

 .app-accordion .accordion-item{
    border: none;
    border-top: 1px solid var(--secondary-color);
    padding: 10px 0px;
    border-radius: 0;
 }

.app-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.app-accordion .accordion-button:focus {
    box-shadow: none;
}

.app-accordion .accordion-button {
    font-weight: 500;
    font-size: 1.3rem;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
        justify-content: flex-start;
}

.app-accordion .accordion-body {
    padding: 15px 50px 15px 50px;
}

.app-accordion .accordion-button span {
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-15px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.app-accordion .accordion-button::after {
    background-image: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--dark-color);
    right: 5px;
    position: absolute;
}


.app-accordion .accordion-button:not(.collapsed)::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--secondary-color);
    transform: var(--bs-accordion-btn-icon-transform);
}
/* accoordion style end*/

/***Readonly Form Value***/
.app-readonly-group {
    margin-bottom: 20px;
}
.app-readonly-group label {
    font-size: 0.938rem;
    margin-bottom: 5px;
    color: #2e307a;
}

.app-readonly-group .value {
    font-weight: 500;
}

.readonly-value a{
    color: #1931e3d7;
}



 /* app-contact-card start here */
.app-contact-card .app-badge-sec{
   margin-bottom: 1.2rem;
}  
.app-contact-card .app-badge-sec img{
    height: 27px;
    margin-right: 6px;
}

.app-contact-card .app-badge-sec .badge {
    border-radius: 180px;
    padding: 7px 15px;
    font-size: 0.938rem;
    font-weight: 400;
}
.app-contact-card .app-readanly-group:last-child {
    margin-bottom: 0;
}

.portal-badge .badge {
    background-color: #f6f2fe;
    color: #7f4aeb;
}

.portal-badge img {
    margin-top: -6px;
}

.phone-badge .badge {
    background-color: #1294ad17;
    color: #0f788d;
}

.email-badge .badge{
    background-color: #f3b34e17;
    color: #8a5a00;
}

.email-badge img{
    margin-top: -6px;
    height: 22px !important;
}


/* app-search-box for Dynamic table */
.app-search-box {
  max-width: 400px;
}

.app-search-box .search-form{
  border: 1.5px solid var(--dark-color);
  border-radius: 8px;
}

.app-search-box .search-form .form-group {
  position: relative;
  margin: 0;
  width: 100%;
}

.app-search-box .search-form .form-group #s {
  padding-right: 50px;
  background: #f7f7f7;
  padding: 10px;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.app-search-box .search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.app-search-box .search-input-container {
    position: relative;
    display: inline-block; 
    margin: 0; 
}

.app-search-box .search-input-container .search-icon {
    position: absolute;
    right: 8px; 
    top: 0px;
    height : 100%; 
    pointer-events: none; 
    z-index: 100;
}

.app-search-box .search-input-container .form-control::placeholder {
        color: rgba(0, 0, 0, 0.35);
        opacity: 1;
    }

.app-table .table-container {
  order: 1; 
}

.pagination-container {
  order: 2;
}
.scenario-section h2{
    max-width: 660px;
}
.scenario-desc-col {
    min-width: 350px;
}
 /***Media Queries***/
 @media (max-width: 575px) {
     .bottom-footer-links ul li {
         display: block;
         padding-left: 0;
         padding-right: 0;
         padding-top: 5px;
         padding-bottom: 5px;
     }

     .bottom-footer-links ul li:after {
         content: none;

     }
 }

 @media (max-width: 768px) {

     html,
     body {
         font-size: 15px;
     }

     h1.hero-title {
         font-size: 3rem;
     }

     h2, .h2-style {
         font-size: 2rem;
         margin-bottom: 1.8rem;
     }

     h3, .h3-style {
         font-size: 1.8rem;
     }

     h4, .h4-style {
         font-size: 1.3rem;
     }

     h5 {
         font-size: 1.1rem;
     }
    section {
        margin: 3.2rem 0;
    }
     .section-title-big {
          margin-bottom: 1.8rem;
     }
     .section-title-big,
     .stat-number {
         font-size: 2rem;
     }

     .app-card.card .card-body .card-title {
         font-size: 1.4rem;

     }

     .hero-section {
         padding: 80px 0 60px;
     }

     .search-input {
         font-size: 1.2rem;
         padding: 1.2rem 3.5rem 1.2rem 1.5rem;
     }

     .search-submit {
         width: 45px;
         height: 45px;
         font-size: 1rem;
     }

     .search-close {
         top: 20px;
         right: 20px;
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .search-overlay {
         padding-top: 80px;
     }

 }


 @media (max-width: 991px) {

     html,
     body {
         font-size: 15px;
     }
 }
 
@media screen and (max-width: 400px) {
    /* This rule activates only on small screens (like iPhone SE/Mobile S 320px) */
    .app-search-box .search-input-container .form-control {
        padding-right: 35px;
        display: block;
        max-width: 240px;
        overflow: hidden !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        border: none;
        box-shadow: none;
    }

    .app-search-box .search-input-container .search-icon {
        right: 5px !important;
    }
}

/***WCAG, 508 & Accessibility***/

/***Fix dynamic menu flicker ***/
body {
  visibility: hidden;
}
body.loaded {
  visibility: visible;
}


/* ============================================
   ACCESSIBILITY FIXES & ENHANCEMENTS
   ============================================ */

/* FIX: Skip Link - Proper visibility and contrast */
.skip-link {
    position: fixed;
    top: -50px;  /* Start offscreen */
    left: 20px;
    background: var(--dark-color);  /* Dark background */
    color: #fff;  /* White text - ensures contrast */
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 8px;
    transition: top 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.skip-link:focus {
    top: 20px;  /* Slide down into view */
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    color: #fff;  /* Keep white for contrast */
}

/* FIX: Consistent Focus Indicators - WCAG 2.4.7 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.dropdown-toggle:focus-visible,
.navbar-toggler:focus-visible {
    outline: 3px solid var(--secondary-color) !important;
    outline-offset: 2px !important;
}

/* Remove conflicting focus styles */
.dropdown-toggle:focus,
.dropdown-item:focus,
.navbar-toggler:focus,
.nav-item .nav-link:focus {
    outline: 3px solid var(--secondary-color) !important;
    outline-offset: 2px !important;
}

/* FIX: High Contrast Mode - WCAG 1.4.1 */
@media (prefers-contrast: high) {
   .skip-link:focus,
    a:focus-visible,
    button:focus-visible,
    .nav-link:focus-visible,
    .dropdown-item:focus-visible {
        outline: 4px solid currentColor !important;
        outline-offset: 4px !important;
    }   
    .app-navbar.navbar .dropdown-menu {
        border: 2px solid currentColor;
    }
}

/* FIX: Touch Target Size - WCAG 2.5.5 (minimum 44x44px) */
@media (max-width: 1199px) {
    .nav-link,
    .dropdown-item,
    .navbar-toggler,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
    }
    
    /* Exception for text links that wrap */
    p a,
    li a {
        display: inline;
        min-height: auto;
        min-width: auto;
        padding: 4px 2px;  /* Add padding for better touch area */
    }
    
    .scroll-top {
        width: 56px;
        height: 56px;
    }
}

/* FIX: Reduced Motion - WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .skip-link:focus {
        transition: none;
    }
    
    .scroll-top {
        transition: none;
    }
}

/* FIX: Color Contrast Verification - WCAG 1.4.3 */

/* FIX: Consistent Focus Indicators - WCAG 2.4.7 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.dropdown-toggle:focus-visible,
.navbar-toggler:focus-visible {
    outline: 3px solid var(--secondary-color) !important;
    outline-offset: 2px !important;
}

/* FIX: External Link Indication - WCAG 2.4.4 */
a[target="_blank"]:not(.btn):not(.navbar-brand)::after {
    content: " ↗";
    font-size: 1rem;
    display: inline-block;
    margin-left: 4px;
}

/* Screen reader text for external links */
a[target="_blank"] .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* FIX: Dropdown Menu Accessibility */
.app-navbar.navbar .dropdown-menu {
    /* Add visible border for keyboard users */
    border: 2px solid transparent;
}

/* .app-navbar.navbar .dropdown-menu.show {
    border-color: var(--secondary-color);
} */

/* FIX: Form Elements - Proper Focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(203, 26, 198, 0.25) !important;
    outline: none;
}

/* FIX: Scroll to Top - Ensure visibility */
.scroll-top {
    /* Already good, just ensure contrast */
    background: var(--primary-color);  /* #CB1AC6 */
    color: white;  /* Contrast ratio: 5.71:1 ✓ */
}

.scroll-top:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* FIX: Table Accessibility */
.app-table thead th {
    /* Ensure sufficient contrast */
    background-color: var(--dark-color);
    color: white;
    /* Contrast: 15.26:1 ✓ */
}

.app-table tbody tr:hover {
    background-color: #EBEDF5;
    /* Add focus indicator for keyboard users */
}

.app-table tbody tr:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* FIX: Accordion Accessibility */
.app-accordion .accordion-button:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
    box-shadow: none;
}

/* FIX: Video Cards - Keyboard Focus */
.video-card:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    transform: translateY(-4px);
}

/* FIX: Search Input - Better Focus */
.search-input:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* FIX: Pagination - Better Focus */
.page-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: none;
    z-index: 2;
}

/* FIX: Ensure clickable hotspots are keyboard accessible */
.hotspot:focus-visible {
    outline: 4px solid var(--secondary-color) !important;
    outline-offset: 4px;
    background-color: rgba(0, 238, 174, 0.15);
}

/* ADD: Focus for card links */
.app-card:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ADD: Focus for footer links */
.footer-links a:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ADD: Ensure logo has focus indicator */
.navbar-brand:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 4px;
    border-radius: 8px;
}

/* ADD: Live Region for Screen Readers (already in HTML) */
#navAnnouncer {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ADD: Ensure sufficient line height - WCAG 1.4.12 */
p, li, td {
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

/* ADD: Text spacing override support - WCAG 1.4.12 */
/* * {
    line-height: inherit !important;
} */

/* ADD: Ensure abbr has proper styling */
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

/* ADD: Ensure language attributes are respected */
[lang]:not([lang=""]) {
    font-family: inherit;
}