/* =========================================
   1. VARIABLES & GLOBAL SETTINGS
   ========================================= */
:root {
  --primary-green: #2E7D32;
  --dark-green: #1B5E20;
  --mint: #A5D6A7;
  --accent: #fafcb8;
  --neutral-bg: #F5F5F5;
  --text-dark: #1F2937;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(165, 214, 167, 0.1);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2E7D32, #66BB6A);
  border-radius: 999px;
}

.body-no-scroll {
  overflow: hidden;
}

.scroll-target {
  scroll-margin-top: 5rem;
}

/* Enhanced Hero Overlay for Video Visibility */
.hero-video-overlay {
  background: linear-gradient(to bottom,
      rgba(10, 30, 15, 0.7) 0%,
      rgba(20, 50, 25, 0.4) 50%,
      rgba(255, 255, 255, 1) 95%);
}

/* Smooth Navigation Scroll-margin */
section {
  scroll-margin-top: 100px;
}

/* Custom Calculator Cards */
.calc-result-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* style.css */
html {
  scroll-behavior: smooth;
}

/* Adds space so the fixed navigation doesn't cover the top of the section */
#aloe,
#seed,
#salary,
#calculator {
  scroll-margin-top: 60px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.nav-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.logo-link {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

/* Dropdown Menus */
.dropdown-bg {
  background-color: var(--mint);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dropdown-item,
.submenu-item {
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.dropdown-item:hover,
.submenu-item:hover {
  color: var(--dark-green);
  transform: translateX(4px);
}

.group\/sub:hover .sub-menu {
  display: block;
}

/* Animated Arrows */
.dropdown-arrow-animated {
  transition: transform 0.3s ease;
}

.dropdown-arrow-animated.active {
  transform: rotate(180deg);
}

.mobile-arrow-animated {
  transition: transform 0.3s ease;
}

.mobile-arrow-animated.rotate-180 {
  transform: rotate(180deg);
}

.glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

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

.bg-hero-pattern {
  background-image: linear-gradient(to right bottom, rgba(22, 101, 52, 0.8), rgba(20, 83, 45, 0.7)), url('images/arayat.png');
}

/* Navigation Link Base Styles */
.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.nav-link:hover {
  color: #bbf7d0;
}

/* The Diamond Indicator */
.nav-link::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-right: 0;
  background-color: #facc15;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

/* Active State: Show Diamond */
.nav-link.active::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  opacity: 1;
}

/* --- SCROLLED STATE OVERRIDES --- */

.scrolled-nav .nav-link {
  color: #374151;
}

.scrolled-nav .nav-link:hover {
  color: #15803d;
}

/* Change Diamond to Green when scrolled */
.scrolled-nav .nav-link::before {
  background-color: #16a34a;
}

/* =========================================
   3. SHARED UI COMPONENTS
   ========================================= */

.hero-bg {
  background-image: url('../images/arayat.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 0;
}

.hero-bg .max-w-7xl {
  position: relative;
  z-index: 10;
}

.neon-corner-glow {
  position: relative;
  z-index: 1;
}

.neon-corner-glow:hover .absolute.-top-14 {
  transform: translateX(-50%) rotate(0deg) !important;
  transition: transform 0.5s ease;
}

.neon-corner-glow .absolute.-top-14 {
  transition: transform 0.5s ease;
}

.neon-corner-glow::before,
.neon-corner-glow::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-width: 3px;
  border-style: solid;
  border-color: #358d55;
  background-color: transparent;

  box-shadow: none;
  filter: drop-shadow(0 0 2px #4ade80) drop-shadow(0 0 8px rgba(74, 222, 128, 0.6));

  pointer-events: none;
  z-index: 20;
  transition: all 0.3s ease;
}

/* Top-Right Position */
.neon-corner-glow::before {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0 1rem 0 0;
}

/* Bottom-Left Position */
.neon-corner-glow::after {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 1rem;
}


.neon-corner-glow:hover::before,
.neon-corner-glow:hover::after {
  border-color: #22c55e;
  filter: drop-shadow(0 0 4px #22c55e) drop-shadow(0 0 15px rgba(34, 197, 94, 0.8));
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(46, 125, 50, 0.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-green), #66BB6A);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
  z-index: 30;
  border: none;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.3);
}

.back-to-top.show {
  display: flex;
}

/* Active center card styling */
.slide.center-active img {
  border-color: var(--primary-green);
  box-shadow: 0 25px 50px -12px rgba(46, 125, 50, 0.25);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .slide {
    margin-left: -90px;
    /* Smaller mobile width */
    margin-top: -130px;
  }
}

/* Footer Styles */
.footer-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  opacity: 0.8;
}

.footer-divider-color {
  border-color: rgba(250, 252, 184, 0.4);
}

/* Modals & Backdrops */
.backdrop-glass {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background: #2E7D32;
  border-radius: 4px;
}

.modal-scroll::-webkit-scrollbar-thumb:hover {
  background: #1B5E20;
}

.modal-section-header {
  color: var(--primary-green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

/* =========================================
   4. HOME & GENERAL PAGE ELEMENTS
   ========================================= */

/* Head Office Card Design */
.hq-card {
  border-left: 4px solid #15803d !important;
  min-height: 180px;
}

.hq-badge {
  background-color: #15803d;
}

.hq-watermark {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Keeps it behind the text */
}

.hq-watermark img {
  filter: grayscale(100%);
  opacity: 0.05;
  width: 250px;
  height: auto;
  object-fit: contain;
}

#branchesMap {
  scroll-margin-top: 100px;
}

.tooltip-btn {
  position: relative;
}

.tooltip-btn:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  margin-bottom: 5px;
  z-index: 10;
}

.brand-border {
  border-top: 4px solid var(--primary-green);
}

.prog-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.2);
}

.prog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.scroll-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-green), #66BB6A);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  animation: bounce 2s infinite;
}

.scroll-btn:hover {
  animation: none;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(46, 125, 50, 0.3);
}

.prototype-badge {
  background: linear-gradient(135deg, #FFC107, #FFB300);
  color: #1F2937;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

.award-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(46, 125, 50, 0.08);
  border-radius: .5rem;
  transition: all 0.25s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16, 23, 12, 0.08);
}



/* =========================================
   5. BRANCHES SPECIFIC
   ========================================= */
.branch-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 125, 50, 0.08);
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.2);
}

.ho-badge {
  background-color: var(--primary-green);
  color: white;
}

/* =========================================
   6. JOIN/CAREERS SPECIFIC
   ========================================= */
.animated-border-box {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 0.75rem;
}

.animated-border-box::before {
  content: "";
  display: block;
  background: linear-gradient(90deg,
      rgba(46, 125, 50, 0) 0%,
      rgba(46, 125, 50, 0.4) 50%,
      rgba(46, 125, 50, 0) 100%);
  height: 150%;
  width: 100px;
  position: absolute;
  animation: rotate 4s linear forwards infinite;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform-origin: top left;
  margin-top: -75%;
  margin-left: -50px;
}

.animated-border-box::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
  border-radius: 0.65rem;
  z-index: -1;
}

/* Forms */
.form-input,
.form-select,
.calc-input {
  transition: all 0.2s;
  background-color: #f9fafb;
}

.form-input:focus,
.form-select:focus,
.calc-input:focus {
  background-color: white;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  outline: none;
}

.input-boxed {
  display: block;
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  background-color: #F9FAFB;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  color: #1F2937;
  height: 42px;
}

.input-boxed:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 1px var(--primary-green);
}

select.input-boxed {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.form-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.job-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.job-card:hover {
  border-left-color: var(--primary-green);
  transform: translateX(4px);
  background-color: rgba(255, 255, 255, 0.95);
}

.section-header {
  border-left: 4px solid var(--primary-green);
  padding-left: 1rem;
}

/* Horizontal Album Carousel */
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  scroll-snap-align: center;
  flex: 0 0 85%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .carousel-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .carousel-card {
    flex: 0 0 30%;
  }
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.15);
  border-color: var(--primary-green);
}

.card-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-card:hover .card-image {
  transform: scale(1.05);
}

/* =========================================
   GALLERY SPECIFIC STYLES
   ========================================= */

/* index Carousel */
.progress-bar-fill {
  animation: fillProgress 5s linear forwards;
}

.group:hover .progress-bar-fill {
  animation-play-state: paused;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.gallery-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.gallery-image-fix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  /* This cuts off edges to fill space (no whitespace) */
  object-position: center;
  display: block;
}

/* Base Slide Style */
.slide {
  position: absolute;
  width: 260px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-top: -240px;
  margin-left: -130px;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 500ms, z-index 0ms;
  will-change: transform, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide Inner (Card) */
.slide-inner {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 1rem;
  padding: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  pointer-events: none;
}

.slide.center-active {
  z-index: 50;
}

.slide.center-active .slide-inner {
  border: 2px solid var(--primary-green);
  box-shadow: 0 30px 60px -10px rgba(46, 125, 50, 0.4);
  cursor: zoom-in;
}

/* Filter Buttons */
.filter-btn.active {
  background-color: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ALBUM MODAL STYLES */
.album-card {
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: white;
  border: 1px solid #e5e7eb;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.album-card:hover img {
  transform: scale(1.05);
}

/* Modal Open Animation Classes */
.modal-open {
  transform: scale(1) !important;
  opacity: 1 !important;
}

@media (max-width: 640px) {
  .slide {
    width: 200px;
    height: 300px;
    margin-top: -180px;
    margin-left: -100px;
  }

  .carousel-window {
    height: 600px;
  }
}

/* =========================================
   8. ANIMATION KEYFRAMES
   ========================================= */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

@keyframes bounce {

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

  50% {
    transform: translateY(-8px);
  }
}

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

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

/* =========================================
   8. GALLERY SPECIFIC STYLES 
   ========================================= */

/* Transitions */
.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.slide-up {
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Shimmer Text Effect */
.shimmer-text {
  color: var(--primary-green, #2E7D32);
  background: linear-gradient(90deg, var(--primary-green, #2E7D32) 0%, #46ca63 50%, var(--primary-green, #2E7D32) 100%);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
  to {
    background-position: -300% center;
  }
}

/* Album Card Hover Effects */
.album-card-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.25);
}


/* The Input Field */
.floating-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-input {
  display: block;
  width: 100%;
  padding: 1.25rem 1rem 0.75rem 1rem;
  background-color: white;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  appearance: none;
  outline: none;
  transition: all 0.2s ease;
  color: #1F2937;
}

textarea.floating-input {
  resize: none !important;
}

.floating-input:focus {
  border-color: #15803d !important;
  box-shadow: 0 0 0 1px #15803d;
}

.floating-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  /* Centered inside the box */
  color: #6B7280;
  background-color: white;
  /* Hides the border line behind text */
  padding: 0 0.4rem;
  font-size: 1rem;
  transition: all 0.2s ease-out;
  pointer-events: none;
  z-index: 10;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.floating-input:focus~.floating-label {
  color: #15803d !important;
}

select.floating-input~.floating-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Carousel Progress Bar */
.progress-bar-fill {
  animation: fillBar 3000ms linear forwards;
}

@keyframes fillBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* =========================================
   8. GLOBAL SCROLL ANIMATIONS
   ========================================= */
.scroll-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* =========================================
   7. GLOBAL LOADER
   ========================================= */
#global-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#global-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Circular Loader (l25) */
.loader-circle {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #15803d;
  /* Brand Green */
  -webkit-mask: radial-gradient(circle closest-side at 50% 40%, #0000 94%, #000);
  mask: radial-gradient(circle closest-side at 50% 40%, #0000 94%, #000);
  transform-origin: 50% 40%;
  animation: l25 1s infinite linear;
}

@keyframes l25 {
  100% {
    transform: rotate(1turn);
  }
}

/* Bar Loader (l6) */
.loader-bar {
  height: 9px;
  width: 60px;
  --c: no-repeat linear-gradient(#15803d 0 0);
  /* Brand Green */
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 26% 3px;
  animation: l6 1s infinite;
}

@keyframes l6 {

  0%,
  70%,
  100% {
    background-position: calc(0*100%/3) 50%, calc(1*100%/3) 50%, calc(2*100%/3) 50%, calc(3*100%/3) 50%;
  }

  23.33% {
    background-position: calc(0*100%/3) 0, calc(1*100%/3) 100%, calc(2*100%/3) 0, calc(3*100%/3) 100%;
  }

  46.67% {
    background-position: calc(1*100%/3) 0, calc(0*100%/3) 100%, calc(3*100%/3) 0, calc(2*100%/3) 100%;
  }

  69.99% {
    background-position: calc(1*100%/3) 50%, calc(0*100%/3) 50%, calc(3*100%/3) 50%, calc(2*100%/3) 50%;
  }
}

.loader-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #15803d;
  /* Brand Green */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}