 /** * Template Name: MyResume * Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/ * Updated: Jun 29 2024 with Bootstrap v5.3.3 * Author: BootstrapMade.com * License: https://bootstrapmade.com/license/ */
 /*-------------------------------------------------------------- # Font & Color Variables # Help: https://bootstrapmade.com/color-system/ --------------------------------------------------------------*/
 /* Fonts */
 :root {
   --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   --heading-font: "Raleway", sans-serif;
   --nav-font: "Poppins", sans-serif;
 }

 /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
 :root {
   --background-color: #ffffff;
   /* Background color for the entire website, including individual sections */
   --default-color: #272829;
   /* Default color used for the majority of the text content across the entire website */
   --heading-color: #45505b;
   /* Color for headings, subheadings and title throughout the website */
   --accent-color: #0563bb;
   /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
   --surface-color: #ffffff;
   /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
   --contrast-color: #ffffff;
   /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
 }

 /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
 :root {
   --nav-color: #45505b;
   /* The default color of the main navmenu links */
   --nav-hover-color: #0563bb;
   /* Applied to main navmenu links when they are hovered over or active */
   --nav-mobile-background-color: #ffffff;
   /* Used as the background color for mobile navigation menu */
   --nav-dropdown-background-color: #ffffff;
   /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
   --nav-dropdown-color: #212529;
   /* Used for navigation links of the dropdown items in the navigation menu. */
   --nav-dropdown-hover-color: #0563bb;
   /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
 }

 /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
 .light-background {
   --background-color: #f9f9f9;
   --surface-color: #ffffff;
 }

 .dark-background {
   --background-color: #060606;
   --default-color: #ffffff;
   --heading-color: #ffffff;
   --surface-color: #252525;
   --contrast-color: #ffffff;
 }

 /* Smooth scroll */
 :root {
   scroll-behavior: smooth;
 }

 /*-------------------------------------------------------------- # General Styling & Shared Classes --------------------------------------------------------------*/
 body {
   /*  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
   font-family: "Poppins", sans-serif; 
   font-family: "Josefin Sans !important";
   font-family: "Lucida Console", "Courier New", monospace !important;
     */
   font-family: Arial, sans-serif;
   background: #fff !important;
   color: #eaeaea;
   line-height: 1.7;
   margin: 0;
   margin-bottom: 50px !important;
 }

 a {
   color: var(--accent-color);
   text-decoration: none;
   transition: 0.3s;
 }

 a:hover {
   color: color-mix(in srgb, var(--accent-color), transparent 25%);
   text-decoration: none;
 }


 .h1,
 .h2,
 .h3,
 .h4,
 .h5,
 .h6,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   color: #fff;
 }

 /* PHP Email Form Messages ------------------------------*/
 .php-email-form .error-message {
   display: none;
   background: #df1529;
   color: #ffffff;
   text-align: left;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
 }

 .php-email-form .sent-message {
   display: none;
   color: #ffffff;
   background: #059652;
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
   font-weight: 600;
 }

 .php-email-form .loading {
   display: none;
   background: var(--surface-color);
   text-align: center;
   padding: 15px;
   margin-bottom: 24px;
 }

 .php-email-form .loading:before {
   content: "";
   display: inline-block;
   border-radius: 50%;
   width: 24px;
   height: 24px;
   margin: 0 10px -6px 0;
   border: 3px solid var(--accent-color);
   border-top-color: var(--surface-color);
   animation: php-email-form-loading 1s linear infinite;
 }

 @keyframes php-email-form-loading {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }

 /*-------------------------------------------------------------- # Global Header --------------------------------------------------------------*/
 .header {
   color: var(--default-color);
   position: fixed;
   top: 15px;
   left: 0;
   bottom: 0;
   padding: 0 15px;
   transition: all ease-in-out 0.3s;
   overflow-y: auto;
   z-index: 997;
   min-width: 200px;
 }

 @media (max-width: 1199px) {
   .header {
     /* background-color: var(--background-color); border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
     width: 300px;
     left: -100%;
   }
 }

 @media (min-width: 1200px) and (max-width: 1600px) {
   .header~main {
     margin-left: 160px;
   }

   .header~main .hero {
     margin-left: -160px;
     width: 100vw;
   }
 }

 .header.header-show {
   left: 0;
 }

 .header .header-toggle {
   color: var(--contrast-color);
   background-color: var(--accent-color);
   font-size: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   position: fixed;
   top: 40px;
   right: -15px;
   z-index: 9999;
   transition: background-color 0.3s;
 }

 .header .header-toggle a {
   color: var(--contrast-color);
   background-color: var(--accent-color);
   font-size: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   position: fixed;
   top: 15px;
   right: 15px;
   z-index: 9999;
   transition: background-color 0.3s;
 }

 .header .header-toggle:hover {
   color: var(--contrast-color);
   background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
 }

 /*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/
 .navmenu {
   padding: 0;
   z-index: 9997;
   top: 15px !important;
   position: absolute;
 }

 .navmenu ul {
   list-style: none;
   padding: 0 0 20px 0;
   margin: 0;
   width: 175px;
 }

 .navmenu a,
 .navmenu a:focus {
   color: var(--nav-color);
   font-family: var(--nav-font);
   display: flex;
   align-items: center;
   padding: 10px 18px;
   margin-bottom: 8px;
   font-size: 15px;
   border-radius: 50px;
   background: var(--bs-gray);
   height: 30px;
   width: 100%;
   overflow: hidden;
   transition: 0.3s;
   border: 2px solid #fd7e14;
 }

 .navmenu a i,
 .navmenu a:focus i {
   font-size: 20px;
   color: var(--bs-orange);
 }

 .navmenu a span,
 .navmenu a:focus span {
   padding: 0 5px 0 7px;
   color: var(--contrast-color);
 }

 @media (min-width: 992px) {

   .navmenu a,
   .navmenu a:focus {
     max-width: 56px;
   }

   .navmenu a span,
   .navmenu a:focus span {
     display: none;
   }
 }

 .navmenu a:hover,
 .navmenu .active,
 .navmenu .active:focus,
 .navmenu li:hover>a {
   color: var(--contrast-color);
   background: var(--nav-hover-color);
 }

 .navmenu a:hover,
 .navmenu li:hover>a {
   max-width: 100%;
   color: var(--contrast-color);
 }

 .navmenu a:hover span,
 .navmenu li:hover>a span {
   display: block;
 }

 /*-------------------------------------------------------------- # Global Footer --------------------------------------------------------------*/
 .footer {
   color: var(--default-color);
   background-color: var(--background-color);
   font-size: 14px;
   text-align: center;
   padding: 30px 0;
   position: relative;
 }

 .footer h3 {
   font-size: 36px;
   font-weight: 700;
   position: relative;
   padding: 0;
   margin: 0 0 15px 0;
 }

 .footer p {
   font-size: 15;
   font-style: italic;
   padding: 0;
   margin: 0 0 30px 0;
 }

 .footer .social-links {
   margin: 0 0 30px 0;
 }

 .footer .social-links a {
   font-size: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--accent-color);
   color: var(--contrast-color);
   line-height: 1;
   margin: 0 4px;
   border-radius: 50%;
   text-align: center;
   width: 36px;
   height: 36px;
   transition: 0.3s;
 }

 .footer .social-links a:hover {
   background: color-mix(in srgb, var(--accent-color), transparent 20%);
   text-decoration: none;
 }

 .footer .copyright {
   padding-top: 25px;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .footer .credits {
   font-size: 13px;
   padding-top: 5px;
 }

 /*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
 #preloader {
   position: fixed;
   inset: 0;
   z-index: 999999;
   overflow: hidden;
   background: var(--background-color);
   transition: all 0.6s ease-out;
 }

 #preloader:before {
   /* content: "";
   position: fixed;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   border: 6px solid #ffffff;
   border-color: var(--accent-color) transparent var(--accent-color) transparent;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   animation: animate-preloader 1.5s linear infinite; */
   content: "";
   position: fixed;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   width: 60px;
   height: 60px;
   background: url('/assets/img/favicon.png') no-repeat center center;
   background-size: contain;
   /* Keep image proportions */
   border-radius: 50%;
   /* optional */
   animation: animate-preloader 1.5s linear infinite;
 }

 @keyframes animate-preloader {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }


 /*-------------------------------------------------------------- # Scroll Top Button --------------------------------------------------------------*/
 .scroll-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   right: 15px;
   bottom: -15px;
   z-index: 99999;
   background-color: var(--accent-color);
   width: 44px;
   height: 44px;
   border-radius: 50px;
   transition: all 0.4s;
 }

 .scroll-top i {
   font-size: 24px;
   color: var(--contrast-color);
   line-height: 0;
 }

 .scroll-top:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
   color: var(--contrast-color);
 }

 .scroll-top.active {
   visibility: visible;
   opacity: 1;
   bottom: 15px;
 }

 /*-------------------------------------------------------------- # Disable aos animation delay on mobile devices --------------------------------------------------------------*/
 @media screen and (max-width: 768px) {
   [data-aos-delay] {
     transition-delay: 0 !important;
   }
 }

 /*-------------------------------------------------------------- # Global Page Titles & Breadcrumbs --------------------------------------------------------------*/
 .page-title {
   --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 20px 0;
   position: relative;
 }

 .page-title h1 {
   font-size: 28px;
   font-weight: 700;
   margin: 0;
 }

 .page-title .breadcrumbs ol {
   display: flex;
   flex-wrap: wrap;
   list-style: none;
   padding: 0 0 10px 0;
   margin: 0;
   font-size: 14px;
   font-weight: 400;
 }

 .page-title .breadcrumbs ol li+li {
   padding-left: 10px;
 }

 .page-title .breadcrumbs ol li+li::before {
   content: "/";
   display: inline-block;
   padding-right: 10px;
   color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 /*-------------------------------------------------------------- # Global Sections --------------------------------------------------------------*/
 section,
 .section {
   color: var(--default-color);
   background: #3d444d !important;
   padding: 60px 0;
   overflow: clip;
 }

 /*-------------------------------------------------------------- # Global Section Titles --------------------------------------------------------------*/
 .section-title {
   text-align: center;
   padding-bottom: 10px;
   position: relative;
 }

 .section-title h2 {
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
   color: var(--bs-orange);
 }

 .section-title h2:before {
   content: "";
   position: absolute;
   display: block;
   width: 160px;
   height: 1px;
   background: color-mix(in srgb, var(--default-color), transparent 60%);
   left: 0;
   right: 0;
   bottom: 1px;
   margin: auto;
 }

 .section-title h2::after {
   content: "";
   position: absolute;
   display: block;
   width: 60px;
   height: 3px;
   background: var(--accent-color);
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
 }

 .section-title h2 span { 
   color: blue;
 } 

 .section-title p {

   margin-bottom: 0;
   color: #000 !important;
   text-align: left;
   display: block;
 }

 /*-------------------------------------------------------------- # Hero Section --------------------------------------------------------------*/
 .hero {
   width: 100%;
   min-height: 100vh;
   position: relative;
   padding: 80px 0;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .hero img {
   position: absolute;
   inset: 0;
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
 }

 .hero:before {
   content: "";
   background: color-mix(in srgb, var(--background-color), transparent 30%);
   position: absolute;
   inset: 0;
   z-index: 2;
 }

 .hero .container {
   position: relative;
   z-index: 3;
 }

 .hero h2 {
   margin: 0;
   font-size: 64px;
   font-weight: 700;
 }

 .hero p {
   margin: 5px 0 0 0;
   font-size: 26px;
 }

 .hero p span {
   letter-spacing: 1px;
   border-bottom: 2px solid var(--accent-color);
 }

 .hero .social-links {
   margin-top: 25px;
 }

 .hero .social-links a {
   font-size: 20px;
   display: inline-block;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   line-height: 1;
   margin-right: 20px;
   transition: 0.3s;
 }

 .hero .social-links a:hover {
   color: var(--accent-color);
 }

 @media (max-width: 768px) {
   .hero h2 {
     font-size: 32px;
   }

   .hero p {
     font-size: 20px;
   }
 }

 /*-------------------------------------------------------------- # About Section --------------------------------------------------------------*/
 .content ul {
   margin-top: 10px;
 }

 .about .content h2 {
   font-weight: 700;
   font-size: 24px;
 }

 .about .content ul {
   list-style: none;
   padding: 0;
 }

 .about .content ul li {
   margin-bottom: 20px;
   display: flex;
   align-items: center;
 }

 .about .content ul strong {
   margin-right: 10px;
 }

 .about .content ul i {
   font-size: 16px;
   margin-right: 5px;
   color: var(--accent-color);
   line-height: 0;
 }

 /*-------------------------------------------------------------- # Stats Section --------------------------------------------------------------*/
 .stats i {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   width: 54px;
   height: 54px;
   font-size: 24px;
   border-radius: 50px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 1;
 }

 .stats .stats-item {
   margin-top: 10px;
   width: 100%;
   position: relative;
   text-align: center;
   z-index: 0;
 }

 .stats .stats-item span {
   font-size: 36px;
   display: block;
   font-weight: 700;
   color: #fff;
 }

 .stats .stats-item p {
   padding: 0;
   margin: 0;
   color: #fff;
   font-size: 16px;
 }

 /*-------------------------------------------------------------- # Skills Section --------------------------------------------------------------*/
 .skills .progress {
   height: 60px;
   display: block;
   background: none;
   border-radius: 0;
 }

 .skills .progress .skill {
   color: var(--heading-color);
   padding: 0;
   margin: 0 0 6px 0;
   text-transform: uppercase;
   display: block;
   font-weight: 600;
 }

 .skills .progress .skill .val {
   float: right;
   font-style: normal;
 }

 .skills .progress-bar-wrap {
   background: color-mix(in srgb, var(--default-color), transparent 90%);
   height: 10px;
 }

 .skills .progress-bar {
   width: 1px;
   height: 10px;
   transition: 0.9s;
   background-color: var(--accent-color);
 }

 /*-------------------------------------------------------------- # Resume Section --------------------------------------------------------------*/
 .resume .resume-title {
   color: var(--heading-color);
   font-size: 26px;
   font-weight: 700;
   margin-top: 20px;
   margin-bottom: 20px;
 }

 .resume .resume-item {
   padding: 0 0 20px 20px;
   margin-top: -2px;
   border-left: 2px solid var(--accent-color);
   position: relative;
 }

 .resume .resume-item h4 {
   line-height: 18px;
   font-size: 18px;
   font-weight: 600;
   text-transform: uppercase;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   margin-bottom: 10px;
 }

 .resume .resume-item h5 {
   font-size: 16px;
   padding: 5px 15px;
   display: inline-block;
   font-weight: 600;
   margin-bottom: 10px;
 }

 .resume .resume-item ul {
   padding-left: 20px;
 }

 .resume .resume-item ul li {
   padding-bottom: 10px;
 }

 .resume .resume-item:last-child {
   padding-bottom: 0;
 }

 .resume .resume-item::before {
   content: "";
   position: absolute;
   width: 16px;
   height: 16px;
   border-radius: 50px;
   left: -9px;
   top: 0;
   background: var(--background-color);
   border: 2px solid var(--accent-color);
 }

 /*-------------------------------------------------------------- # Portfolio Section --------------------------------------------------------------*/
 .portfolio .portfolio-filters {
   padding: 0;
   margin: 0 auto 20px auto;
   list-style: none;
   text-align: center;
 }

 .portfolio .portfolio-filters li {
   cursor: pointer;
   display: inline-block;
   padding: 8px 20px 10px 20px;
   margin: 0;
   font-size: 15px;
   font-weight: 500;
   line-height: 1;
   margin-bottom: 5px;
   border-radius: 50px;
   transition: all 0.3s ease-in-out;
 }

 .portfolio .portfolio-filters li:hover,
 .portfolio .portfolio-filters li.filter-active {
   color: var(--contrast-color);
   background-color: var(--accent-color);
 }

 .portfolio .portfolio-filters li:first-child {
   margin-left: 0;
 }

 .portfolio .portfolio-filters li:last-child {
   margin-right: 0;
 }

 @media (max-width: 575px) {
   .portfolio .portfolio-filters li {
     font-size: 14px;
     margin: 0 0 10px 0;
   }
 }

 .portfolio .portfolio-item {
   position: relative;
   overflow: hidden;
 }

 .portfolio .portfolio-item .portfolio-info {
   opacity: 0;
   position: absolute;
   left: 12px;
   right: 12px;
   bottom: -100%;
   z-index: 3;
   transition: all ease-in-out 0.5s;
   background: color-mix(in srgb, var(--background-color), transparent 10%);
   padding: 15px;
 }

 .portfolio .portfolio-item .portfolio-info h4 {
   font-size: 18px;
   font-weight: 600;
   padding-right: 50px;
 }

 .portfolio .portfolio-item .portfolio-info p {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   font-size: 14px;
   margin-bottom: 0;
   padding-right: 50px;
 }

 .portfolio .portfolio-item .portfolio-info .preview-link,
 .portfolio .portfolio-item .portfolio-info .details-link {
   position: absolute;
   right: 50px;
   font-size: 24px;
   top: calc(50% - 14px);
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   transition: 0.3s;
   line-height: 0;
 }

 .portfolio .portfolio-item .portfolio-info .preview-link:hover,
 .portfolio .portfolio-item .portfolio-info .details-link:hover {
   color: var(--accent-color);
 }

 .portfolio .portfolio-item .portfolio-info .details-link {
   right: 14px;
   font-size: 28px;
 }

 .portfolio .portfolio-item:hover .portfolio-info {
   opacity: 1;
   bottom: 0;
 }

 /*-------------------------------------------------------------- # Services Section --------------------------------------------------------------*/
 .services .service-item {
   background-color: var(--surface-color);
   box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
   height: 100%;
   padding: 60px 30px;
   text-align: center;
   transition: 0.3s;
   border-radius: 5px;
 }

 .services .service-item .icon {
   margin: 0 auto;
   width: 100px;
   height: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: ease-in-out 0.3s;
   position: relative;
 }

 .services .service-item .icon i {
   font-size: 36px;
   transition: 0.5s;
   position: relative;
 }

 .services .service-item .icon svg {
   position: absolute;
   top: 0;
   left: 0;
 }

 .services .service-item .icon svg path {
   transition: 0.5s;
   fill: color-mix(in srgb, var(--default-color), transparent 95%);
 }

 .services .service-item h3 {
   font-weight: 700;
   margin: 10px 0 15px 0;
   font-size: 22px;
 }

 .services .service-item p {
   line-height: 24px;
   font-size: 14px;
   margin-bottom: 0;
 }

 .services .service-item:hover {
   box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
 }

 .services .service-item.item-cyan i {
   color: #0dcaf0;
 }

 .services .service-item.item-cyan:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-cyan:hover .icon path {
   fill: #0dcaf0;
 }

 .services .service-item.item-orange i {
   color: #fd7e14;
 }

 .services .service-item.item-orange:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-orange:hover .icon path {
   fill: #fd7e14;
 }

 .services .service-item.item-teal i {
   color: #20c997;
 }

 .services .service-item.item-teal:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-teal:hover .icon path {
   fill: #20c997;
 }

 .services .service-item.item-red i {
   color: #df1529;
 }

 .services .service-item.item-red:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-red:hover .icon path {
   fill: #df1529;
 }

 .services .service-item.item-indigo i {
   color: #6610f2;
 }

 .services .service-item.item-indigo:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-indigo:hover .icon path {
   fill: #6610f2;
 }

 .services .service-item.item-pink i {
   color: #f3268c;
 }

 .services .service-item.item-pink:hover .icon i {
   color: #fff;
 }

 .services .service-item.item-pink:hover .icon path {
   fill: #f3268c;
 }

 /*-------------------------------------------------------------- # Testimonials Section --------------------------------------------------------------*/
 .testimonials .testimonials-carousel,
 .testimonials .testimonials-slider {
   overflow: hidden;
 }

 .testimonials .testimonial-item .testimonial-content {
   border-left: 3px solid var(--accent-color);
   padding-left: 30px;
 }

 .testimonials .testimonial-item .testimonial-img {
   border-radius: 50%;
   border: 4px solid var(--background-color);
   margin: 0 auto;
 }

 .testimonials .testimonial-item h3 {
   font-size: 20px;
   font-weight: bold;
   margin: 10px 0 5px 0;
 }

 .testimonials .testimonial-item h4 {
   font-size: 14px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
   margin: 0 0 10px 0;
 }

 .testimonials .testimonial-item .stars i {
   color: #ffc107;
   margin: 0 1px;
 }

 .testimonials .testimonial-item .quote-icon-left,
 .testimonials .testimonial-item .quote-icon-right {
   color: color-mix(in srgb, var(--accent-color), transparent 50%);
   font-size: 26px;
   line-height: 0;
 }

 .testimonials .testimonial-item .quote-icon-left {
   display: inline-block;
   left: -5px;
   position: relative;
 }

 .testimonials .testimonial-item .quote-icon-right {
   display: inline-block;
   right: -5px;
   position: relative;
   top: 10px;
   transform: scale(-1, -1);
 }

 .testimonials .testimonial-item p {
   font-style: italic;
 }

 .testimonials .swiper-wrapper {
   height: auto;
 }

 .testimonials .swiper-pagination {
   margin-top: 30px;
   position: relative;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background-color: color-mix(in srgb, var(--default-color), transparent 85%);
   opacity: 1;
 }

 .testimonials .swiper-pagination .swiper-pagination-bullet-active {
   background-color: var(--accent-color);
 }

 /*-------------------------------------------------------------- # Contact Section --------------------------------------------------------------*/
 .contact .info-item+.info-item {
   margin-top: 40px;
 }

 .contact .info-item i {
   color: var(--accent-color);
   background: color-mix(in srgb, var(--accent-color), transparent 92%);
   font-size: 20px;
   width: 44px;
   height: 44px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50px;
   transition: all 0.3s ease-in-out;
   margin-right: 15px;
 }

 .contact .info-item h3 {
   padding: 0;
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 5px;
 }

 .contact .info-item p {
   padding: 0;
   margin-bottom: 0;
   font-size: 14px;
 }

 .contact .info-item:hover i {
   background: var(--accent-color);
   color: var(--contrast-color);
 }

 .contact .php-email-form {
   height: 100%;
 }

 .contact .php-email-form input[type=text],
 .contact .php-email-form input[type=email],
 .contact .php-email-form textarea {
   font-size: 14px;
   padding: 10px 15px;
   box-shadow: none;
   border-radius: 0;
   color: var(--default-color);
   background-color: color-mix(in srgb, var(--background-color), transparent 50%);
   border-color: color-mix(in srgb, var(--default-color), transparent 80%);
 }

 .contact .php-email-form input[type=text]:focus,
 .contact .php-email-form input[type=email]:focus,
 .contact .php-email-form textarea:focus {
   border-color: var(--accent-color);
 }

 .contact .php-email-form input[type=text]::placeholder,
 .contact .php-email-form input[type=email]::placeholder,
 .contact .php-email-form textarea::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 70%);
 }

 .contact .php-email-form button[type=submit] {
   color: var(--contrast-color);
   background: var(--accent-color);
   border: 0;
   padding: 10px 30px;
   transition: 0.4s;
   border-radius: 50px;
 }

 .contact .php-email-form button[type=submit]:hover {
   background: color-mix(in srgb, var(--accent-color), transparent 25%);
 }

 /*-------------------------------------------------------------- # Portfolio Details Section --------------------------------------------------------------*/
 .portfolio-details .portfolio-details-slider img {
   width: 100%;
 }

 .portfolio-details .swiper-wrapper {
   height: auto;
 }

 .portfolio-details .swiper-button-prev,
 .portfolio-details .swiper-button-next {
   width: 48px;
   height: 48px;
 }

 .portfolio-details .swiper-button-prev:after,
 .portfolio-details .swiper-button-next:after {
   color: rgba(255, 255, 255, 0.8);
   background-color: rgba(0, 0, 0, 0.15);
   font-size: 24px;
   border-radius: 50%;
   width: 48px;
   height: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
 }

 .portfolio-details .swiper-button-prev:hover:after,
 .portfolio-details .swiper-button-next:hover:after {
   background-color: rgba(0, 0, 0, 0.3);
 }

 @media (max-width: 575px) {

   .portfolio-details .swiper-button-prev,
   .portfolio-details .swiper-button-next {
     display: none;
   }
 }

 .portfolio-details .swiper-pagination {
   margin-top: 20px;
   position: relative;
 }

 .portfolio-details .swiper-pagination .swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background-color: color-mix(in srgb, var(--default-color), transparent 85%);
   opacity: 1;
 }

 .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
   background-color: var(--accent-color);
 }

 .portfolio-details .portfolio-info h3 {
   font-size: 22px;
   font-weight: 700;
   margin-bottom: 20px;
   padding-bottom: 20px;
   position: relative;
 }

 .portfolio-details .portfolio-info h3:after {
   content: "";
   position: absolute;
   display: block;
   width: 50px;
   height: 3px;
   background: var(--accent-color);
   left: 0;
   bottom: 0;
 }

 .portfolio-details .portfolio-info ul {
   list-style: none;
   padding: 0;
   font-size: 15px;
 }

 .portfolio-details .portfolio-info ul li {
   display: flex;
   flex-direction: column;
   padding-bottom: 15px;
 }

 .portfolio-details .portfolio-info ul strong {
   text-transform: uppercase;
   font-weight: 400;
   color: color-mix(in srgb, var(--default-color), transparent 50%);
   font-size: 14px;
 }

 .portfolio-details .portfolio-info .btn-visit {
   padding: 8px 40px;
   background: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 50px;
   transition: 0.3s;
 }

 .portfolio-details .portfolio-info .btn-visit:hover {
   background: color-mix(in srgb, var(--accent-color), transparent 20%);
 }

 .portfolio-details .portfolio-description h2 {
   font-size: 26px;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .portfolio-details .portfolio-description p {
   padding: 0;
 }

 .portfolio-details .portfolio-description .testimonial-item {
   padding: 30px 30px 0 30px;
   position: relative;
   background: color-mix(in srgb, var(--default-color), transparent 97%);
   margin-bottom: 50px;
 }

 .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
   width: 90px;
   border-radius: 50px;
   border: 6px solid var(--background-color);
   float: left;
   margin: 0 10px 0 0;
 }

 .portfolio-details .portfolio-description .testimonial-item h3 {
   font-size: 18px;
   font-weight: bold;
   margin: 15px 0 5px 0;
   padding-top: 20px;
 }

 .portfolio-details .portfolio-description .testimonial-item h4 {
   font-size: 14px;
   color: #6c757d;
   margin: 0;
 }

 .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
 .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
   color: color-mix(in srgb, var(--accent-color), transparent 50%);
   font-size: 26px;
   line-height: 0;
 }

 .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
   display: inline-block;
   left: -5px;
   position: relative;
 }

 .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
   display: inline-block;
   right: -5px;
   position: relative;
   top: 10px;
   transform: scale(-1, -1);
 }

 .portfolio-details .portfolio-description .testimonial-item p {
   font-style: italic;
   margin: 0 0 15px 0 0 0;
   padding: 0;
 }

 /*-------------------------------------------------------------- # Service Details Section --------------------------------------------------------------*/
 .service-details .service-box {
   padding: 20px;
   box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
 }

 .service-details .service-box+.service-box {
   margin-top: 30px;
 }

 .service-details .service-box h4 {
   font-size: 20px;
   font-weight: 700;
   border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
   padding-bottom: 15px;
   margin-bottom: 15px;
 }

 .service-details .services-list a {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   background-color: color-mix(in srgb, var(--default-color), transparent 96%);
   display: flex;
   align-items: center;
   padding: 12px 15px;
   margin-top: 15px;
   transition: 0.3s;
 }

 .service-details .services-list a:first-child {
   margin-top: 0;
 }

 .service-details .services-list a i {
   font-size: 16px;
   margin-right: 8px;
   color: var(--accent-color);
 }

 .service-details .services-list a.active {
   color: var(--contrast-color);
   background-color: var(--accent-color);
 }

 .service-details .services-list a.active i {
   color: var(--contrast-color);
 }

 .service-details .services-list a:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   color: var(--accent-color);
 }

 .service-details .download-catalog a {
   color: var(--default-color);
   display: flex;
   align-items: center;
   padding: 10px 0;
   transition: 0.3s;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .service-details .download-catalog a:first-child {
   border-top: 0;
   padding-top: 0;
 }

 .service-details .download-catalog a:last-child {
   padding-bottom: 0;
 }

 .service-details .download-catalog a i {
   font-size: 24px;
   margin-right: 8px;
   color: var(--accent-color);
 }

 .service-details .download-catalog a:hover {
   color: var(--accent-color);
 }

 .service-details .help-box {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   margin-top: 30px;
   padding: 30px 15px;
 }

 .service-details .help-box .help-icon {
   font-size: 48px;
 }

 .service-details .help-box h4,
 .service-details .help-box a {
   color: var(--contrast-color);
 }

 .service-details .services-img {
   margin-bottom: 20px;
 }

 .service-details h3 {
   font-size: 26px;
   font-weight: 700;
 }

 .service-details p {
   font-size: 15px;
 }

 .service-details ul {
   list-style: none;
   padding: 0;
   font-size: 15px;
 }

 .service-details ul li {
   padding: 5px 0;
   display: flex;
   align-items: center;
 }

 .service-details ul i {
   font-size: 20px;
   margin-right: 8px;
   color: var(--accent-color);
 }

 /*-------------------------------------------------------------- # JKM FAQ Template --------------------------------------------------------------*/
 .iqas-body {
   background: var(--bs-white) !important;
   color: #000;
   line-height: 1.7;
   margin: 0;
 }

 .container {
   max-width: 1100px;
   margin: auto;
 }

 .container-info-image {
   background-color: var(--bs-white);
 }


 .iqas-section {
   background: var(--bs-white) !important;
   padding: 10px 0 !important;
 }

 .icon {
   font-size: 22px;
   color: #0d6efd;
   transition: transform 0.3s ease;
 }

 .faq-item-title {
   background: var(--bs-white);
   border-radius: 6px;
   overflow: hidden;
   position: relative;
   border: 1px solid #a1aab6;
   border-radius: 10px;
   padding: 5px;
 }

 .faq-item-title::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 5px;
   height: 100%;
   background: #0d6efd;
 }

 /* .faq-item-title.active .icon {
   transform: rotate(45deg);
 } */


 .heading-title {
   color: #0d6efd;
   font-size: medium !important;
 }

 .faq-question-title {
   padding: 1px 0px 0px 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   color: #0d6efd !important;
   font-weight: 500;
 }

 .faq-item-title>.faq-question-title {
   display: block !important;
 }

 .faq-question-title>i {
   color: green;
   margin-right: 30px;
 }

 .faq-answer-title {
   max-height: 0;
   overflow: hidden;
   padding: 0 0px 0 0px;
   transition: all 0.3s ease;
   color: var(--bs-black);
 }

 .faq-item-title.active .faq-answer-title {
   max-height: 100%;
   color: var(--bs-black);
 }

 .title-icon {
   font-size: 22px;
   color: #fd7e14;
   transition: transform 0.3s ease;
 }

 .faq-item-title.active .title-icon {
   transform: rotate(45deg);
 }

 .faq-item-title>.faq-question>.faq-answer-title {
   padding: 0 0px 0 0px !important;
 }

 .faq-item-title.active .faq-answer-title {
   max-height: 100%;
   color: var(--bs-black);
   text-align: left;
 }

 .faq-item {
   background: var(--bs-white);
   border-radius: 6px;
   overflow: hidden;
   position: relative;
   border: 1px solid #a1aab6;
   border-radius: 10px;
   padding: 5px;
   margin-bottom: 5px;
 }

 ol .faq-item {
   margin-right: 25px;
 }

 ul .faq-item {
   margin-right: 25px;
 }

 .faq-item::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 10px;
   height: 100%;
   background: #fd7e14;
 }

 .faq-question {
   padding: 1px 0px 0px 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   color: #0d6efd !important;
   font-weight: 500;
   text-align: left;
 }

 .faq-question span,
 p {
   font-size: 15px;
   color: #0d6efd !important;
   display: contents;
 }

 .faq-question span>p {
   font-size: 15px;
   color: #0d6efd !important;
   display: contents;
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 20px 0 26px;
   color: #fff;
   transition: all 0.3s ease;
   text-align: left;
 }

 .faq-answer p {
   margin-bottom: 0px;
   color: #000 !important;
   display: block;
 }


 .faq-answer span {
   margin-bottom: 0px;
   color: #000 !important;
 }

 .faq-answer a {
   color: var(--bs-black);
   margin-bottom: 0px;
   border: 1px solid var(--nav-mobile-background-color);
   border-radius: 10px;
   padding: 5px;
   margin-bottom: 5px;
   display: flex;
   display: block;
 }

 .faq-item.active .faq-answer {
   max-height: 100%;
   color: var(--bs-black);
   text-align: left;
 }

 .faq-item.active .icon {
   transform: rotate(45deg);
 }

 .section-title {
   padding-bottom: 5px !important;
 }

 .faq-answer table {
   margin-left: 10px;
 }

 .faq-answer dl,
 ol,
 ul {
   padding-left: 0px;
   margin-top: 0px;
   margin-right: 0px;
   margin-bottom: 0px;
   margin-left: 20px;
 }

 .faq-answer li {
   text-align: left
 }

 .faq-answer p {
   border: 0px solid var(--nav-mobile-background-color);
   padding: 0px;
   margin-bottom: 0px;
   text-align: left;
 }

 .faq-answer>.h1,
 .h2,
 .h3,
 .h4,
 .h5,
 .h6,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   color: #000;
 }

 /* Fullscreen Modal */
 .modal {
   display: none;
   position: fixed;
   inset: 0;
   background: #052c65;
   align-items: center;
   justify-content: center;
   z-index: 1000;
 }

 .modal img {
   max-width: 90%;
   max-height: 90%;
   border-radius: 12px;
 }

 .modal.close {
   display: none;
 }

 .modal-content {
   width: 80%;
   height: 80%;
   background: #fff;
   border-radius: 6px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .close-btn {
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 30px;
   color: #fff;
   cursor: pointer;
 }

 /* Overlay */
 .overlay {
   position: fixed;
   inset: 0;
   background: rgba(2, 6, 23, .92);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   overflow: hidden;
 }

 .overlay.active {
   display: flex;
 }

 .overlay img {
   max-width: none;
   cursor: grab;
   user-select: none;
   transform-origin: center center;
 }

 .close {
   position: fixed;
   top: 18px;
   right: 26px;
   font-size: 32px;
   color: #fff;
   cursor: pointer;
   z-index: 10000;
 }

 /* Iframe */
 #pdfFrame {
   width: 100%;
   height: 100%;
   border: none;
 }

 .hint {
   position: fixed;
   bottom: 20px;
   color: #cbd5f5;
   font-size: 14px;
   text-align: center;
   width: 100%;
 }

 .single-line-footer {
   text-align: center;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 12px;
   padding: 14px 24px;
   font-size: 13px;
   color: #FF5722;
   border-top: 1px solid #fb8c00;
   text-align: center;
 }

 .single-line-footer a:hover {
   color: #58a6ff;
   text-decoration: underline;
 }

 .single-line-footer a {
   color: #fff;
   text-decoration: none;
   white-space: nowrap;
 }

 .divider {
   opacity: 0.6;
 }

 .social-icons {
   gap: 20px;
   font-size: 15px;
 }

 .social-icon {
   cursor: pointer;
   transition: transform 0.2s ease, opacity 0.2s ease;
 }

 .social-icon:hover {
   transform: scale(1.15);
   opacity: 0.9;
 }


 :root {
   --bi-facebook: #1877F2;

   --bi-instagram-purple: #833AB4;
   --bi-instagram-pink: #FD1D1D;
   --bi-instagram-orange: #F56040;
   --bi-instagram-yellow: #FCAF45;

   --bi-skype: #00AFF0;
   --bi-linkedin: #0A66C2;
 }

 .bi-facebook {
   color: var(--bi-facebook);
 }

 .bi-skype {
   color: var(--bi-skype);
 }

 .bi-linkedin {
   color: var(--bi-linkedin);
 }

 .bi-instagram {
   background: linear-gradient(45deg,
       var(--bi-instagram-purple),
       var(--bi-instagram-pink),
       var(--bi-instagram-orange),
       var(--bi-instagram-yellow));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
 }


 .file-item {
   display: flex;
   align-items: center;
 }

 .file-item i {
   margin-left: auto;
   font-size: 20px;
 }

 .bi-file-text-fill {
   color: #0dfd10
 }

 .bi-file-image-fill {
   color: #052c65
 }

 .bi-file-pdf-fill {
   color: red
 }

 .skill-logo-img-div {
   border-radius: 14px;
   height: 125px;
   margin-right: 5px;
 }

 .skill-logo-img {
   width: 100%;
 }

 .client-logo-img-div {
   border: 3px solid #0056ff;
   border-radius: 14px;
   padding: 5px;
   margin: 5px;
   height: 125px;
 }

 .topic-meenu {
   list-style: none;
   padding: 0;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 8px;
 }

 .topic-meenu>li {
   background: #1e293b;
   padding: 8px 12px;
   border-radius: 10px;
 }

 .topic-meenu>li>i {
   margin-right: 8px;
   color: #22c55e;
 }

 .topic-meenu>li>a {
   margin-right: 8px;
   color: var(--bs-white);
 }

 .zoomable {
   height: 50px;
   width: 50px;
   border: 2px solid orange;
   margin-bottom: 5px;
 }

 footer {
   background: #212529;
   color: #fff;
 }

 #contact p {
   color: #fff;
 }

 /*Start Header Section */

 .circle {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   position: fixed;
   right: -15px;
   z-index: 9999;
   transition: background-color 0.3s;
 }

 .back-btn {
   color: #ffc107;
   background-color: var(--bs-white);
   font-size: 40px;
   top: 90px;
 }

 .back-btn:hover {
   transform: scale(1.08);
   background: #fd7e14;
 }

 .toggle-btn {
   color: var(--bs-white);
   background-color: #fd1d1d;
   font-size: 24px;
   top: 150px;
 }

 .toggle-btn:hover {
   transform: scale(1.08);
   background: #fd7e14;
 }

 .toggle-content-btn {
   color: var(--bs-white);
   background-color: #24caca;
   font-size: 24px;
   top: 150px;
 }

 .toggle-content-btn:hover {
   transform: scale(1.08);
   background: #fd7e14;
 }

 .toggle-images {
   color: var(--bs-white);
   background-color: #198754;
   font-size: 24px;
   top: 175px;
 }

 .toggle-images:hover {
   transform: scale(1.08);
   background: #fd7e14;
 }

 .show-images-slide {
   color: var(--bs-white);
   background-color: #20c997;
   font-size: 24px;
   top: 175px;
 }

 .show-images-slide:hover {
   transform: scale(1.08);
   background: #fd7e14;
 }

 #footer-placeholder {
   position: fixed;
   /* position: relative; */
   bottom: 0;
   left: 0;
   width: 100%;
   z-index: 999;
 }

 .iqas-section:empty {
   display: none;
 }

 .ms-wrapper {
   position: fixed;
   top: 15px;
   right: 0px;
   width: 50px;
   cursor: move;
   display: flex;
   flex-direction: column;
   gap: 10px;
   transition: transform 0.35s ease;
   z-index: 9999;

 }

 .ms-wrapper.closed {
   transform: translateX(0px);
 }

 .ms-header {
   display: flex;
   align-items: center;
   gap: 8px;
   background: #ff3c00;
   color: #fff;
   display: flex;
   justify-content: center;
   width: 36px;
   height: 36px;
   padding: 0;
   border-radius: 50%;

 }

 .ms-body {
   background: #fff;
   border: 1px solid #ddd;
   border-right: none;
   padding: 12px;
   display: none;
 }

 .ms-wrapper.open .ms-body {
   display: contents;
 }

 .ms-wrapper i {
   position: static !important;
 }


 #loader {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   z-index: 9999;
   justify-content: center;
   align-items: center;
 }

 #loader img {
   width: 80px;
   /* Loader image size */
   height: 80px;
   animation: spin 1s linear infinite;
 }

 @keyframes spin {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }

 /*End Header Section */

 /*Start Model Popup Section */

 #imageModal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.7);
   justify-content: center;
   align-items: center;
   z-index: 1000;
 }

 #imageModal .modal-content {
   position: relative;
   background: #fff;
   padding: 20px;
   border-radius: 8px;
 }

 #imageModal img {
   max-width: 80vw;
   max-height: 80vh;
   display: block;
 }

 #closeModal {
   position: absolute;
   top: 5px;
   right: 10px;
   cursor: pointer;
   font-size: 20px;
   font-weight: bold;
 }

 #sliderPopup {
   position: fixed;
   inset: 0;
   background: var(--bs-info-text-emphasis);
   display: none;
   z-index: 9999;
   align-items: center;
   justify-content: center;
 }

 #sliderPopup img {
   max-width: 90%;
   /*   max-height: 90%; */
   border-radius: 8px;
   background-color: wheat;
   /* border: 5px solid var(--bs-orange); */
 }

 .nav-btn {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: #20c997;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   backdrop-filter: blur(4px);
   transition: all 0.2s ease;
 }

 .prev {
   left: 20px;
 }

 .next {
   right: 20px;
 }

 .close {
   position: absolute;
   top: 15px;
   right: 20px;
   font-size: 30px;
   color: #fff;
   cursor: pointer;
 }

 /*  #sliderTextPopup {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
 }

 #sliderBox {
   width: 70%;
   max-width: 800px;
   background: var(--bs-info-text-emphasis);
   border-radius: 10px;
   padding: 0px 20px 20px 20px;
   overflow: hidden;
   height: 90%;
 }

 #sliderTitle {
   font-size: 20px;
   font-weight: bold;
   margin-bottom: 10px;
   border-bottom: 1px solid #ddd;
   padding-bottom: 0px;
   color: var(--bs-orange);
 }

 #sliderTextContent {
   max-height: 90%;
   overflow-y: auto;
 }

 #sliderTextContent {
   padding-right: 6px;
   scrollbar-width: thin;
   scrollbar-color: #888 transparent;
   height: 90%;
 } */

 #sliderTextPopup {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.75);
   display: none;
   justify-content: center;
   align-items: center;
   z-index: 9999;
 }

 /* Slider box */
 #sliderBox {
   width: 80%;
   max-width: 900px;
   height: 80%;
   background: #fff;
   border-radius: 8px;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   transition: all 0.3s ease;
 }

 /* Fullscreen state */
 #sliderBox:fullscreen {
   width: 100%;
   height: 100vh;
   border-radius: 0;
 }

 /* Title bar */
 #sliderTitleBar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #0d6efd;
   color: #fff;
   padding: 10px 15px;
   position: sticky;
   top: 0;
   z-index: 10;
 }

 /* Controls */
 .title-controls {
   display: flex;
   gap: 14px;
 }

 .title-controls span {
   cursor: pointer;
   font-size: 20px;
   user-select: none;
 }

 .title-controls span:hover {
   opacity: 0.85;
 }

 /* Title */
 .sliderTitle {
   font-size: 18px;
   font-weight: bold;
 }

 /* Content */
 #sliderTextContent {
   flex: 1;
   padding: 20px;
   overflow-y: auto;
   background: #f8f9fa;
 }

 .scroll-content {
   padding: 20px;
   overflow-y: auto;
   flex: 1;
   text-align: -webkit-center;
 }

 #sliderTextContent::-webkit-scrollbar {
   width: 4px;
 }

 #sliderTextContent::-webkit-scrollbar-track {
   background: transparent;
 }

 #sliderTextContent::-webkit-scrollbar-thumb {
   background-color: #888;
   border-radius: 10px;
 }

 #sliderTextContent::-webkit-scrollbar-thumb:hover {
   background-color: #555;
 }

 .pdf-icon {
   cursor: pointer;
   font-size: 22px;
   color: #0d6efd;
 }

 .pdf-popup {
   position: fixed;
   inset: 0;
   background: var(--bs-info-text-emphasis);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
 }

 .pdf-popup-content {
   width: 90vw;
   height: 90vh;
   background: #fff;
   position: relative;
   border-radius: 6px;
   overflow: hidden;
 }

 .pdf-popup iframe {
   width: 100%;
   height: 100%;
   border: none;
 }

 .pdf-close {
   position: absolute;
   top: 8px;
   right: 12px;
   font-size: 24px;
   cursor: pointer;
   z-index: 10;
   color: #fff;
 }

 /* End Model Popup*/



 #sliderTextPopup>.faq-question {
   color: var(--bs-code-color) !important;
   font-size: larger !important;
 }