/* ==========================================
   1. Base & Global Setup
   ========================================== */
:root {
  --bg-dark: #0f172a;
  --bg-glass: rgba(15, 23, 42, 0.75);
  --border-glass: rgba(255, 255, 255, 0.1);
  --accent-cyan: #38bdf8;
  --accent-blue: #0ea5e9;
  --accent-indigo: #6366f1;
  --accent-violet: #a855f7;
  --accent-pink: #ec4899;
  --accent-gradient: linear-gradient(90deg, var(--accent-cyan), var(--accent-indigo), var(--accent-pink));
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-body: #cbd5e1;
  --panel-bg: rgba(255, 255, 255, 0.045);
  --panel-bg-strong: rgba(255, 255, 255, 0.07);
  --panel-border: rgba(255, 255, 255, 0.1);
  --font-family: 'Plus Jakarta Sans', 'Kantumruy Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-family);
  background-color: #05070f;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.16), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(168, 85, 247, 0.14), transparent 45%),
    radial-gradient(circle at 20% 85%, rgba(236, 72, 153, 0.1), transparent 40%),
    radial-gradient(circle at 90% 92%, rgba(14, 165, 233, 0.12), transparent 45%),
    linear-gradient(180deg, #05070f 0%, #0b1120 50%, #05070f 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Slim accent-colored scrollbar for a more premium feel */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #05070f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet));
  border-radius: 10px;
  border: 2px solid #05070f;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) #05070f;
}

/* Slim gradient bar tracking scroll progress down the page */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-gradient);
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* Background Snow Canvas */
#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Loading Overlay */
.lodding-wrap {
  position: fixed;
  inset: 0;
  background: #090d16;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loadding-div {
  width: 45px;
  height: 45px;
  border: 3.5px solid rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   2. Modern Glass Header & Navigation
   ========================================== */
.header.navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.container.navbar-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.menu-container {
  display: flex;
  align-items: center;
}

/* Logo Styling */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-wrap:hover .logo-img {
  transform: scale(1.05);
}

.logo-img-active {
  display: none;
}

/* Navigation List */
.nav-flex-container {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

/* Links & Hover Underline Effect */
.nav-item-child {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item-child:hover,
.nav-item.active .nav-item-child {
  color: var(--accent-cyan);
}

.nav-item-hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover .nav-item-hover::after,
.nav-item.active .nav-item-hover::after {
  width: 60%;
}

/* ==========================================
   3. Language Switcher Widget
   ========================================== */
.lang-item {
  margin-left: 1px;
}

.lang-toggle-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 3px;
  border-radius: 50px;
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  color: var(--text-main);
}

.lang-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
}

/* ==========================================
   4. Floating Audio Player Widget
   ========================================== */
.music-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: transform 0.3s ease;
}

.music-wrap:hover {
  transform: translateY(-3px);
}

.music-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.music-icon {
  font-size: 16px;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.music-card audio {
  height: 30px;
  max-width: 180px;
  filter: invert(0.9) hue-rotate(170deg);
}

/* ==========================================
   5. Mobile Hamburger Toggle & Breakpoints
   ========================================== */
.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.toggle-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: background 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.3s ease, top 0.3s ease;
}

.toggle-icon::before { top: -6px; }
.toggle-icon::after { top: 6px; }

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .nav-collapse {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 24px;
    display: none;
  }

  .nav-collapse.in,
  .nav-collapse.show {
    display: block;
  }

  .nav-flex-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-item-child {
    padding: 10px 0;
    width: 100%;
  }

  .lang-item {
    margin-left: 0;
    margin-top: 8px;
  }

  .music-wrap {
    bottom: 16px;
    right: 16px;
  }
}


.promo-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.promo-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(15, 23, 42, 0.85) 0%, 
    rgba(15, 23, 42, 0.5) 100%
  );
  z-index: 1;
}

.promo-block .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: 5%;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0;
}

.col-sm-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

@media (min-width: 768px) {
  .col-sm-6 {
    flex: 0 0 65%;
    max-width: 65%;
  }
}

.promo-block-divider {
  margin-bottom: 30px;
}

.promo-block-title {
  font-family: var(--font-family);
  font-size: clamp(2.75rem, 3.2vw + 1.5rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0 0 10px 0;
  min-height: 3.3rem;
}

/* Base style for JS-driven Name (#title1) */
#title1 {
  display: inline-block;
  font-family: var(--font-family);
  font-size: clamp(2.75rem, 3.2vw + 1.5rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 10px 0;
  color: var(--text-main);
}

.promo-eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.promo-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.promo-block-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 15px;
}

/* Typing Caret */
.typing-cursor::after {
  content: "|";
  animation: blink 0.8s infinite;
  color: var(--accent-cyan);
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==========================================
   4. List Items & Download CV Button Fixes
   ========================================== */
.list-inline {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 20px 0 0 0 !important;
  list-style: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.list-inline > li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle;
}

.social-icons {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgb(255, 255, 255);
  font-size: 18px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.social-icons:hover {
  background: var(--accent-blue);
  color: rgb(255, 255, 255);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

/* Download CV Button with Animated Running RGB Gradient */
.btn-download-cv,
.btn-download-cv.btn-rgb-run {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
  padding: 12px 28px !important;
  margin-left: 4px;
  border-radius: 50px !important;
  color: rgb(255, 255, 255) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  background: linear-gradient(
    90deg, 
    rgb(14, 165, 233), 
    rgb(168, 85, 247), 
    rgb(236, 72, 153), 
    rgb(14, 165, 233)
  ) !important;
  background-size: 300% 300% !important;
  animation: rgbRunBtn 4s ease infinite !important;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer;
}

@keyframes rgbRunBtn {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-download-cv:hover,
.btn-download-cv.btn-rgb-run:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6) !important;
}


#about {
    padding: 100px 0 70px;
    font-family: var(--font-family);
}

#about h2 {
    font-weight: 800;
    color: var(--text-main);
    font-size: 22px;
    position: relative;
    display: inline-block;
}

#about h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 32px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Main Container and 2-Column Flex Wrapper */
.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-left-col {
    flex: 1;
    min-width: 280px;
    color: var(--text-body);
}

.about-right-col {
    flex: 2.2;
    min-width: 300px;
}

/* Profile Image & Intro */
.intro-section {
  text-align: center;
  padding: 8px;
}

/* Stylish image wrapper scaled to 70% size */
.intro-image-wrapper {
  display: block;
  margin: 15px auto;
  max-width: 185px;              /* Exactly 70% of the original 260px width */
  width: 100%;
  border-radius: 20px;
  
  /* Accent Glow Frame */
  padding: 3.5px;                /* Balanced border frame thickness */
  background: linear-gradient(
    270deg,
    var(--accent-cyan),
    var(--accent-indigo),
    var(--accent-violet),
    var(--accent-pink),
    var(--accent-cyan)
  );
  background-size: 400% 400%;
  animation: rgbBorder 8s ease infinite;
  
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.25),
              0 0 12px rgba(14, 165, 233, 0.3);
              
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

/* RGB animation keyframes */
@keyframes rgbBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Image styling - scaled to 70% height */
.intro-image {
  display: block;
  width: 100%;
  height: 250px;                  /* Scaled proportionally to match the 70% width */
  object-fit: cover;
  object-position: center top;
  border-radius: 17px;           /* Matches inner curve */
  
  /* Crisp inner white border ring */
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover animation */
.intro-image-wrapper:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35),
              0 0 20px rgba(236, 72, 153, 0.5);
}

.intro-image-wrapper:hover .intro-image {
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.02);
}

/* Subtle cinematic zoom on the photo during hover */
.intro-image-wrapper:hover .intro-image {
    filter: brightness(1.05) contrast(1.02);
}
/* Custom 4-Column Grid for Education Logos */
.custom-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-grid-item {
    flex: 1 1 calc(25% - 12px);
    min-width: 110px;
}

/* Education Cards */
.work {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.97);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--panel-border);
    height: 100%;
}

.work:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(56, 189, 248, 0.25);
    border-color: rgba(56, 189, 248, 0.5);
}

.work-overlay {
    padding: 15px 10px;
    text-align: center;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.work-overlay img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.work:hover .work-overlay img {
    transform: scale(1.08);
}

/* ==========================================
   POPUP MODAL & INTERNAL FLEX GRID
   ========================================== */
.work-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.work-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.work-popup-content {
    background: #0f1729;
    background-image:
      radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.12), transparent 50%),
      radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.1), transparent 50%);
    width: 90%;
    max-width: 700px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--panel-border);
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-body);
}

.work-popup-content h3 {
    color: var(--text-main);
}

.work-popup-content span[data-translate] {
    color: var(--accent-cyan);
    font-weight: 600;
}

.work-popup-overlay.active .work-popup-content {
    transform: translateY(0);
}

.work-popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #ff5e57;
    color: #fff !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    z-index: 10;
}

.work-popup-close:hover {
    background: #ff3b30;
}

/* Modal Inner Flexbox Row */
.modal-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.modal-flex-col-8 {
    flex: 2;
    min-width: 250px;
}

.modal-flex-col-4 {
    flex: 1;
    min-width: 120px;
}

.work-popup-content-divider {
    border-right: 1px solid var(--panel-border);
    padding-right: 15px;
}

@media (max-width: 768px) {
    .modal-flex-col-8 {
        border-right: none;
        border-bottom: 1px solid var(--panel-border);
        padding-bottom: 15px;
        margin-bottom: 15px;
        padding-right: 0;
    }
}

/* ==========================================
   SKILLS & LANGUAGE PROGRESS BARS
   ========================================== */
.progress-box {
    margin-bottom: 16px;
    color: var(--text-body);
    padding: 0 5px;
}

.progress-box h5 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 5px;
    padding: 4px;
}

.color-heading {
    color: var(--accent-cyan);
    float: right;
    font-weight: 700;
}

.progress {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-indigo));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    transition: width 1.2s cubic-bezier(0.1, 0.42, 0.22, 1);
}

.margin-t-40 {
    margin-top: 40px;
}

/* Certificate Slideshow Styles (3D Multi-Card View) */


.margin-b-0{
    padding-top: 20px;
    color: var(--text-main);
}

.certificate-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 24px 70px;
}

.certificate-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.certificate-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.slideshow-wrapper {

  position: relative;
  max-width: 850px;
  width: 100%;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Hides cards sliding completely off-screen */
  padding:20px 0;
}

.slideshow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px; /* Adjust height based on your layout */
  position: relative;
}

/* Individual Slide Card */
.slide {
    
  position: absolute;
  width: 50%; /* Main active card width */
  max-width: 400px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7) translateX(0);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* --- STATES FOR CAROUSEL POSITIONING --- */

/* Active / Middle Certificate */
.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateX(0);
  z-index: 3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Previous Certificate (Peeking on the Left) */
.slide.prev {
  opacity: 0.5;
  pointer-events: auto;
  transform: scale(0.75) translateX(-75%) perspective(1000px) rotateY(15deg);
  z-index: 2;
  filter: blur(1px);
  cursor: pointer;
}

/* Next Certificate (Peeking on the Right) */
.slide.next {
  opacity: 0.5;
  pointer-events: auto;
  transform: scale(0.75) translateX(75%) perspective(1000px) rotateY(-15deg);
  z-index: 2;
  filter: blur(1px);
  cursor: pointer;
}

/* Navigation Arrows */
.arrow {
  background: rgba(14, 165, 233, 0.9);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow:hover {
  background: rgba(14, 165, 233, 1);
  transform: scale(1.1);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* --- Experience & Works Placeholder Card Styling --- */
/* ==========================================================================
   Pure CSS & JS Grid + Layout System (No Bootstrap Required)
   ========================================================================== */

/* ==========================================================================
   Pure CSS Layout & Section Component Styling (Zero Bootstrap)
   ========================================================================== */

.section-bg {
  padding: 35px 0;
}

/* Main Container Box Wrapping the Section Content */
.custom-section-box {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Custom Flex Grid System */
.custom-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

/* Left Title Column (25% width approx) */
.custom-title-col {
  flex: 0 0 24%;
  min-width: 200px;
}

/* Right Cards Container Column (Remaining space) */
.custom-cards-col {
  flex: 1;
  min-width: 0;
}

/* 3-Column Cards Grid */
.custom-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Section Title Typography */
.section-title h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 28px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-title .subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Glassmorphism Placeholder Cards */
.placeholder-card {
  background: var(--panel-bg-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

/* Icon Container */
.placeholder-card .card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.placeholder-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.placeholder-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Card Hover Micro-Interactions */
.placeholder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
}

.placeholder-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(99, 102, 241, 0.2));
}

/* Responsive Breakpoints for Mobile / Tablets */
@media (max-width: 900px) {
  .custom-grid {
    flex-direction: column;
    gap: 20px;
  }
  .custom-cards-grid {
    grid-template-columns: 1fr;
  }
  .custom-section-box {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   Contacts Section & RGB Animated Boxes
   ========================================================================== */

.contact-section {
  width: 100%;
  max-width: 1190px;
  margin: 35px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contact-row {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 45px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-header {
  text-align: center;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.contact-name {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 12px;
}

/* Contact Boxes Grid Layout */
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

/* Base Contact Box & Accent Animated Border Wrapper */
.contact-box {
  position: relative;
  border-radius: 20px;
  padding: 1.5px; /* Creates the border thickness */
  background: linear-gradient(270deg, var(--accent-cyan), var(--accent-indigo), var(--accent-violet), var(--accent-pink), var(--accent-cyan));
  background-size: 400% 400%;
  animation: rgbBorder 8s ease infinite;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Inner card content wrapper to keep the frosted glass background */
.contact-box::before {
  content: '';
  position: absolute;
  inset: 1.5px; /* Inner offset */
  background: #0d1425;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18.5px;
  z-index: 1;
}

/* Ensure text sits safely above the pseudo background element */
.contact-box h5,
.contact-box a {
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.contact-box {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-box h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-box a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-box a:hover {
  color: var(--accent-cyan);
}

/* Hover effects for contact cards */
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(56, 189, 233, 0.3);
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
  .contact-row {
    padding: 25px 20px;
  }
  .contact-boxes {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Minimalist 5% Width Footer Accent Line
   ========================================================================== */

.footer {
  position: relative;
  background: transparent;
  padding: 26px 10px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Tiny top accent line */
.footer::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--panel-border) 20%, var(--panel-border) 80%, transparent);
}

/* Borderless Content */
.footer-content {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  flex-wrap: wrap;
}

.footer-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-text a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-text a:hover {
  color: var(--accent-cyan);
}

.fweight-700 {
  font-weight: 700;
}


/* ==========================================================
   FINAL RESPONSIVE SYSTEM
   Desktop / Tablet / Mobile
   Add this section at the END of your CSS file.
   ========================================================== */

/* Prevent horizontal scrolling on every device */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

/* Better container sizing */
.container,
.promo-block .container,
.contact-section,
.custom-section-box {
  width: 100%;
}

/* ---------- LARGE TABLET: 769px - 1024px ---------- */
@media (min-width: 769px) and (max-width: 1024px) {

  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.navbar-flex {
    height: 68px;
    padding: 0 20px;
  }

  .logo-img {
    height: 36px;
  }

  .nav-flex-container {
    gap: 2px;
  }

  .nav-item-child {
    padding: 8px 9px;
    font-size: 13px;
  }

  .lang-btn {
    padding: 4px 9px;
  }

  .promo-block {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .promo-block .container {
    margin: 0 auto;
    padding: 0 30px;
  }

  .promo-block-title,
  #title1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
  }

  .promo-block-text {
    max-width: 650px;
    font-size: 1rem;
  }

  .about-flex-wrapper {
    gap: 25px;
  }

  .about-left-col {
    flex: 0 0 30%;
    min-width: 220px;
  }

  .about-right-col {
    flex: 1;
    min-width: 0;
  }

  .custom-grid-item {
    flex: 1 1 calc(50% - 8px);
  }

  .custom-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-section-box {
    margin-left: 20px;
    margin-right: 20px;
    padding: 25px;
  }

  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .slideshow-wrapper {
    max-width: 760px;
  }

  .slide {
    width: 52%;
  }
}


/* ---------- TABLET / SMALL LAPTOP: 769px+ ----------
   Keep desktop navigation visible.
   --------------------------------------------------- */


/* ---------- MOBILE + SMALL TABLET: <= 768px ---------- */
@media (max-width: 768px) {

  /* Global */
  body {
    font-size: 15px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* =========================
     NAVBAR
     ========================= */

  html {
    scroll-padding-top: 80px;
  }

  .header.navbar-fixed-top {
    height: 64px;
  }

  .container.navbar-flex {
    height: 64px;
    padding: 0 16px;
  }

  .logo-img {
    height: 34px;
    max-width: 150px;
  }

  .menu-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin-left: 8px;
    border-radius: 10px;
    z-index: 1002;
  }

  .navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-collapse {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 16px 22px;
    background: #0a0f1e;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }

  .nav-collapse.in,
  .nav-collapse.show {
    display: block !important;
  }

  .nav-flex-container {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    margin: 0;
    padding: 0;
  }

  .nav-flex-container .nav-item {
    width: 100%;
  }

  .nav-item-child {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-item-child:hover,
  .nav-item.active .nav-item-child {
    background: rgba(56, 189, 248, 0.08);
  }

  .nav-item-hover::after {
    display: none;
  }

  .lang-item {
    width: 100%;
    margin: 10px 0 0;
  }

  .lang-toggle-container {
    width: fit-content;
  }

  /* =========================
     HERO
     ========================= */

  .promo-block {
    min-height: auto;
    height: auto;
    padding-top: 105px;
    padding-bottom: 55px;
    background-position: center center;
  }

  .promo-block .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .promo-block .row {
    width: 100%;
  }

  .col-sm-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .promo-block-title,
  #title1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.18;
    min-height: auto;
    margin-bottom: 8px;
    word-break: normal;
  }

  .promo-block-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 12px;
  }

  .list-inline {
    gap: 9px !important;
    margin-top: 18px !important;
  }

  .social-icons {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .btn-download-cv,
  .btn-download-cv.btn-rgb-run {
    margin-left: 0;
    padding: 11px 20px !important;
    font-size: 13px !important;
  }

  /* =========================
     ABOUT
     ========================= */

  #about {
    padding: 45px 0;
  }

  .about-flex-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-left-col,
  .about-right-col {
    width: 100%;
    min-width: 0;
    flex: 0 0 100%;
  }

  .intro-section {
    padding: 0;
  }

  .intro-image-wrapper {
    width: min(70vw, 220px);
    max-width: 220px;
    margin: 18px auto;
  }

  .intro-image {
    height: auto;
    aspect-ratio: 0.74;
    object-fit: cover;
  }

  .custom-grid-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .custom-grid-item {
    min-width: 0;
    width: 100%;
    flex: none;
  }

  .work-overlay {
    min-height: 90px;
    padding: 12px 8px;
  }

  .work-overlay img {
    max-width: 90%;
    max-height: 68px;
  }

  /* =========================
     POPUP
     ========================= */

  .work-popup-content {
    width: calc(100% - 24px);
    max-width: 620px;
    max-height: calc(100vh - 24px);
    padding: 55px 20px 22px;
    border-radius: 18px;
  }

  .work-popup-close {
    top: 12px;
    right: 12px;
    padding: 7px 12px;
  }

  .modal-flex-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .modal-flex-col-8,
  .modal-flex-col-4 {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .work-popup-content-divider {
    border-right: none;
    border-bottom: 1px solid var(--panel-border);
    padding-right: 0;
    padding-bottom: 15px;
  }

  /* =========================
     SKILLS
     ========================= */

  .progress-box {
    padding: 0;
    margin-bottom: 15px;
  }

  .progress-box h5 {
    font-size: 14px;
  }

  /* =========================
     CERTIFICATES
     ========================= */

  .slideshow-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    padding: 15px 0;
  }

  .slideshow-container {
    width: 100%;
    height: clamp(175px, 52vw, 230px);
  }

  .slide {
    width: 72%;
    max-width: 390px;
    padding: 7px;
    border-radius: 12px;
  }

  .slide.prev {
    transform: scale(0.72) translateX(-72%) perspective(800px) rotateY(10deg);
    opacity: 0.35;
  }

  .slide.next {
    transform: scale(0.72) translateX(72%) perspective(800px) rotateY(-10deg);
    opacity: 0.35;
  }

  .arrow {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .arrow.left {
    left: 5px;
  }

  .arrow.right {
    right: 5px;
  }

  /* =========================
     EXPERIENCE / WORK
     ========================= */

  .section-bg {
    padding: 15px 0;
  }

  .custom-section-box {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .custom-grid {
    flex-direction: column;
    gap: 20px;
  }

  .custom-title-col {
    width: 100%;
    min-width: 0;
    flex: none;
  }

  .custom-cards-col {
    width: 100%;
    min-width: 0;
  }

  .custom-cards-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .section-title .subtitle {
    font-size: 0.85rem;
  }

  .placeholder-card {
    padding: 20px 17px;
    border-radius: 16px;
  }

  /* =========================
     CONTACT
     ========================= */

  .contact-section {
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    padding: 0 12px;
  }

  .contact-row {
    width: 100%;
    padding: 22px 15px;
    border-radius: 20px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-name {
    font-size: 0.92rem;
  }

  .contact-boxes {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-box {
    min-width: 0;
    padding: 19px 15px;
    border-radius: 16px;
  }

  .contact-box h5 {
    font-size: 0.78rem;
  }

  .contact-box a {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* =========================
     MUSIC
     ========================= */

  .music-wrap {
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
  }

  .music-card {
    gap: 7px;
    padding: 6px 10px;
    max-width: 100%;
  }

  .music-card audio {
    width: min(150px, 42vw);
    max-width: 150px;
    height: 28px;
  }

  .music-icon {
    font-size: 14px;
  }

  /* =========================
     FOOTER
     ========================= */

  .footer {
    padding: 12px 8px;
  }

  .footer-text {
    gap: 7px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-logo {
    height: 18px;
  }
}


/* ---------- SMALL PHONES: <= 480px ---------- */
@media (max-width: 480px) {

  .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .container.navbar-flex {
    padding: 0 12px;
  }

  .logo-img {
    height: 31px;
    max-width: 135px;
  }

  .navbar-toggle {
    width: 42px;
    height: 42px;
  }

  .promo-block {
    padding-top: 96px;
    padding-bottom: 45px;
  }

  .promo-block .container {
    padding: 0 16px;
  }

  .promo-block-title,
  #title1 {
    font-size: clamp(1.65rem, 8.8vw, 2.1rem);
  }

  .promo-block-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .list-inline {
    gap: 7px !important;
  }

  .social-icons {
    width: 39px;
    height: 39px;
    font-size: 15px;
  }

  .btn-download-cv,
  .btn-download-cv.btn-rgb-run {
    padding: 10px 16px !important;
    font-size: 12px !important;
  }

  #about {
    padding: 35px 0;
  }

  .intro-image-wrapper {
    width: 175px;
  }

  .intro-image {
    aspect-ratio: 0.75;
  }

  .custom-grid-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .work-overlay {
    min-height: 75px;
    padding: 8px 5px;
  }

  .work-overlay img {
    max-height: 55px;
  }

  .work-popup-content {
    width: calc(100% - 16px);
    padding: 52px 15px 18px;
    border-radius: 15px;
  }

  .slideshow-container {
    height: 170px;
  }

  .slide {
    width: 78%;
  }

  .slide.prev {
    transform: scale(0.66) translateX(-76%);
  }

  .slide.next {
    transform: scale(0.66) translateX(76%);
  }

  .arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .custom-section-box {
    width: calc(100% - 16px);
    padding: 18px 12px;
    border-radius: 17px;
  }

  .placeholder-card {
    padding: 17px 14px;
  }

  .placeholder-card .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .contact-section {
    padding: 0 8px;
  }

  .contact-row {
    padding: 19px 11px;
    border-radius: 17px;
  }

  .contact-box {
    padding: 17px 12px;
  }

  .contact-box a {
    font-size: 0.82rem;
  }

  .music-wrap {
    right: 7px;
    bottom: 7px;
  }

  .music-card audio {
    width: 125px;
  }

  .footer-text {
    font-size: 0.74rem;
  }
}


/* ---------- VERY SMALL PHONES: <= 360px ---------- */
@media (max-width: 360px) {

  .promo-block-title,
  #title1 {
    font-size: 1.55rem;
  }

  .promo-block-text {
    font-size: 0.87rem;
  }

  .custom-grid-row {
    gap: 7px;
  }

  .work-overlay {
    min-height: 65px;
  }

  .work-overlay img {
    max-height: 48px;
  }

  .slide {
    width: 80%;
  }

  .arrow {
    width: 30px;
    height: 30px;
  }

  .music-card audio {
    width: 105px;
  }
}


/* ---------- TOUCH DEVICES ----------
   Remove hover movement that can feel awkward on phones.
   ------------------------------------------------------ */
@media (hover: none) and (pointer: coarse) {

  .social-icons:hover,
  .btn-download-cv:hover,
  .work:hover,
  .placeholder-card:hover,
  .contact-box:hover,
  .intro-image-wrapper:hover {
    transform: none !important;
  }

  .work:hover .work-overlay img,
  .intro-image-wrapper:hover .intro-image,
  .placeholder-card:hover .card-icon {
    transform: none !important;
  }

  .nav-item-child:hover {
    color: var(--text-muted);
  }
}


/* ---------- ACCESSIBILITY / PERFORMANCE ---------- */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
