@charset "UTF-8";
:root {
      --yellow: #F5C800;
      --black: #0D0D0D;
      --dark: #111111;
      --grey: #1a1a1a;
      --light-grey: #2a2a2a;
      --text-muted: #888;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      background-color: rgba(13, 13, 13, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 3px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--yellow), #fff8a0, var(--yellow), transparent) 1;
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .navbar-brand img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .navbar-brand:hover img {
      transform: rotate(8deg) scale(1.07);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-text .brand-mg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.95rem;
      color: var(--yellow);
      letter-spacing: 2px;
    }

    .brand-text .brand-sub {
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #FFFFFF;
    }

    .navbar-nav .nav-link:not(.btn-nav-cta) {
      color: #ccc !important;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 8px 16px !important;
      transition: color 0.25s;
    }

    .navbar-nav .nav-link:not(.btn-nav-cta):hover,
    .navbar-nav .nav-link:not(.btn-nav-cta).active {
      color: var(--yellow) !important;
    }

    .btn-nav-cta {
      background-color: var(--yellow) !important;
      color: #000000 !important;
      font-weight: 800 !important;
      font-size: 0.82rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 9px 22px !important;
      border-radius: 4px;
      border: 2px solid var(--yellow) !important;
      transition: background 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-nav-cta:hover {
      background-color: transparent !important;
      color: var(--yellow) !important;
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background-color: var(--black);
    }

    .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(245,200,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,200,0,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      font-weight: 600;
      margin-bottom: 20px;
      padding: 6px 14px;
      border: 1px solid rgba(245,200,0,0.3);
      border-radius: 2px;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 9vw, 110px);
      line-height: 0.95;
      color: var(--white);
      letter-spacing: 1px;
    }

    .hero-title span {
      color: var(--yellow);
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: #aaa;
      max-width: 540px;
      line-height: 1.7;
      margin-top: 22px;
    }

    .hero-actions {
      margin-top: 36px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary-yellow {
      background-color: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1px;
      padding: 14px 32px;
      border-radius: 4px;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-primary-yellow:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
      color: var(--black);
    }

    .btn-outline-white {
      border: 1px solid #444;
      color: #ccc;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 1px;
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-outline-white:hover {
      border-color: var(--yellow);
      color: var(--yellow);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid #1e1e1e;
      flex-wrap: wrap;
    }

    .hero-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--yellow);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.78rem;
      color: #666;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-card-mock {
      background: var(--grey);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      padding: 28px;
      position: relative;
    }

    .mock-browser-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 18px;
    }

    .mock-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mock-line {
      height: 10px;
      border-radius: 4px;
      background: #333;
      margin-bottom: 10px;
    }

    .mock-line.yellow { background: var(--yellow); }
    .mock-line.short { width: 60%; }
    .mock-line.medium { width: 80%; }

    .floating-badge {
      position: absolute;
      background: var(--yellow);
      color: var(--black);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 8px 14px;
      border-radius: 6px;
    }

    /* ── SECTION STYLES ── */
    section { padding: 16px 0; }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    .section-subtitle {
      font-size: 1rem;
	  text-align:justify;
      color: #888;
      max-width: 100%;
      line-height: 1.7;
      margin-top: 14px;
	  font-family: cambria;
	  color:#FFFFFF;
    }

    /* ── SERVICES ── */
    #services { background-color: var(--dark); }

    .service-card {
      background: var(--grey);
      border: 1px solid #222;
      border-radius: 10px;
      padding: 32px 28px;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover {
      border-color: rgba(245,200,0,0.25);
      transform: translateY(-4px);
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(245,200,0,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--yellow);
      margin-bottom: 20px;
    }

    .service-title {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 10px;
      color: var(--white);
    }

    .service-desc {
      font-size: 0.88rem;
      color: #777;
      line-height: 1.65;
    }

    /* ── ABOUT ── */
    #about { background-color: var(--black); }

    .about-img-wrapper {
      position: relative;
    }

    .about-img-box {
      background: var(--grey);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-big-letter {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 260px;
      color: rgba(245,200,0,0.06);
      line-height: 1;
      user-select: none;
    }

    .about-tag {
      position: absolute;
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 0.78rem;
      padding: 10px 18px;
      border-radius: 6px;
      letter-spacing: 0.5px;
    }

    .feature-row {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .feature-icon-box {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(245,200,0,0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow);
      font-size: 1.1rem;
    }

    .feature-title {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .feature-desc {
      font-size: 0.84rem;
      color: #777;
      line-height: 1.6;
    }

    /* ── PROJECTS ── */
    #projects { background-color: var(--dark); }

    .project-card {
      background: var(--grey);
      border: 1px solid #222;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .project-card:hover {
      transform: translateY(-5px);
      border-color: rgba(245,200,0,0.2);
    }

    .project-thumb {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
    }

    .project-body { padding: 22px; }

    .project-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 8px;
    }

    .project-title {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .project-desc {
      font-size: 0.84rem;
      color: #777;
      line-height: 1.6;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--yellow);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      margin-top: 14px;
      transition: gap 0.2s;
    }

    .project-link:hover { gap: 10px; color: var(--yellow); }

    /* ── CAREERS ── */
    #careers { background-color: var(--black); }

    .job-card {
      background: var(--grey);
      border: 1px solid #222;
      border-radius: 10px;
      padding: 24px 28px;
      /*display: flex;*/
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      transition: all 0.3s;
	  text-align:center;
    }

    .job-card:hover {
      border-color: rgba(245,200,0,0.25);
    }

    .job-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .job-meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .job-badge {
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 4px;
    }

    .badge-type { background: rgba(245,200,0,0.12); color: var(--yellow); }
    .badge-loc  { background: rgba(255,255,255,0.06); color: #aaa; }

    .btn-apply {
      background: transparent;
      border: 1px solid var(--yellow);
      color: var(--yellow);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 9px 20px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.25s;
      white-space: nowrap;
    }

    .btn-apply:hover {
      background: var(--yellow);
      color: var(--black);
    }

    /* ── CONTACT ── */
    #contact { background-color: var(--dark); }

    .contact-form-wrap {
      background: var(--grey);
      border: 1px solid #222;
      border-radius: 12px;
      padding: 42px 38px;
    }

    .form-label {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #aaa;
      margin-bottom: 6px;
    }

    .form-control, .form-select {
      background: #111 !important;
      border: 1px solid #2a2a2a !important;
      color: var(--white) !important;
      font-size: 0.9rem;
      padding: 12px 16px;
      border-radius: 6px;
      transition: border-color 0.25s;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--yellow) !important;
      box-shadow: 0 0 0 3px rgba(245,200,0,0.1) !important;
    }

    .form-control::placeholder { color: #555 !important; }

    .contact-info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 24px;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: rgba(245,200,0,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow);
      font-size: 1.15rem;
    }

    .contact-label {
      font-size: 0.76rem;
      color: #666;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-value {
      font-size: 0.92rem;
      font-weight: 500;
      color: #ddd;
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 1px solid #1a1a1a;
      padding: 40px 0 24px;
	  margin-top:40px;
    }

    .footer-logo img { height: 44px; }

    .footer-tagline {
      font-size: 0.84rem;
      color: #FFFFFF;
      margin-top: 10px;
	  font-family: cambria;
    }

    .footer-link {
      font-size: 0.84rem;
      color: #FFFFFF;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: color 0.2s;
	  font-family: cambria;
    }

    .footer-link:hover { color: var(--yellow); }

    .footer-heading {
      font-size: 0.76rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #444;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      border: 1px solid #222;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #777;
      text-decoration: none;
      margin-right: 8px;
      transition: all 0.25s;
      font-size: 0.9rem;
    }

    .social-link:hover {
      background: var(--yellow);
      border-color: var(--yellow);
      color: var(--black);
    }

    .footer-bottom {
      border-top: 1px solid #151515;
      padding-top: 20px;
      margin-top: 32px;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: #FFFFFF;
	  font-family: cambria;
    }

    /* ── DIVIDER ── */
    .section-divider {
      border: none;
      border-top: 1px solid #1a1a1a;
      margin: 0;
    }

    /* ── NAVBAR TOGGLER ── */
    .navbar-toggler {
      border-color: #333;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 200, 0, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-8px); }
    }
    @keyframes shimmer {
      0%   { background-position: -400px 0; }
      100% { background-position: 400px 0; }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; } 50% { opacity: 0; }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,0,0.35); }
      50%       { box-shadow: 0 0 0 12px rgba(245,200,0,0); }
    }

    .hero-animate-1 { animation: fadeInUp 0.7s ease both; animation-delay: 0.1s; }
    .hero-animate-2 { animation: fadeInUp 0.7s ease both; animation-delay: 0.25s; }
    .hero-animate-3 { animation: fadeInUp 0.7s ease both; animation-delay: 0.4s; font-family: cambria; }
    .hero-animate-4 { animation: fadeInUp 0.7s ease both; animation-delay: 0.55s; }
    .hero-animate-5 { animation: fadeInUp 0.7s ease both; animation-delay: 0.7s; }
    .hero-animate-right { animation: fadeInRight 0.8s ease both; animation-delay: 0.3s; }

    .floating-badge { animation: floatBadge 3s ease-in-out infinite; }
    .floating-badge:nth-child(3) { animation-delay: 1.2s; }

    .btn-primary-yellow { animation: pulseGlow 2.5s ease-in-out infinite; animation-delay: 1.5s; }

    /* Typed cursor */
    .typed-cursor {
      display: inline-block;
      width: 3px;
      height: 0.85em;
      background: var(--yellow);
      margin-left: 4px;
      vertical-align: middle;
      animation: blink 0.8s step-end infinite;
      border-radius: 2px;
    }

    /* Shimmer bar in mock */
    .shimmer-bar {
      background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
      background-size: 400px 100%;
      animation: shimmer 1.8s infinite linear;
      border-radius: 4px;
    }

    /* Footer logo animation */
    .footer-logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .footer-logo-wrap img {
      height: 58px;
      width: 58px;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .footer-logo-wrap:hover img { transform: rotate(-10deg) scale(1.08); }
    .footer-brand-mg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: var(--yellow);
      letter-spacing: 2px;
      line-height: 1;
    }
    .footer-brand-sub {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #666;
    }
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── GOOGLE REVIEWS ── */
    .overall-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: var(--grey);
      border: 1px solid #2a2a2a;
      border-radius: 12px;
      padding: 16px 22px;
    }
    .orb-score {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--yellow);
      line-height: 1;
    }
    .orb-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 4px; }
    .orb-label { font-size: 0.75rem; color: #666; margin-bottom: 5px; }
    .orb-link { font-size: 0.75rem; font-weight: 600; color: var(--yellow); text-decoration: none; }
    .orb-link:hover { color: #e6b800; }

    .reviews-track-wrapper { overflow: hidden; position: relative; }
    .reviews-track {
      display: flex;
      gap: 22px;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .review-card {
      background: var(--grey);
      border: 1px solid #222;
      border-radius: 12px;
      padding: 26px 24px;
      min-width: calc(33.333% - 15px);
      max-width: calc(33.333% - 15px);
      flex-shrink: 0;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .review-card::before {
      content: '\201C';
      position: absolute;
      top: -10px; right: 18px;
      font-size: 7rem;
      color: rgba(245,200,0,0.06);
      font-family: Georgia, serif;
      line-height: 1;
      pointer-events: none;
    }
    .review-card:hover { border-color: rgba(245,200,0,0.25); transform: translateY(-4px); }
    .rc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .rc-avatar {
      width: 42px; height: 42px; min-width: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1.1rem; color: #fff;
    }
    .rc-name { font-weight: 700; font-size: 0.92rem; color: var(--white); }
    .rc-date { font-size: 0.74rem; color: #666; margin-top: 2px; }
    .rc-google-logo { height: 18px; margin-left: auto; opacity: 0.65; }
    .rc-stars { color: var(--yellow); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 12px; }
    .rc-text { font-size: 0.87rem; color: #aaa; line-height: 1.65; font-style: italic; }

    .reviews-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-top: 32px;
    }
    .rev-arrow {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--grey); border: 1px solid #333;
      color: #aaa; display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.25s; font-size: 0.9rem;
    }
    .rev-arrow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
    .rev-dots { display: flex; gap: 8px; align-items: center; }
    .rev-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #333; cursor: pointer; transition: all 0.25s;
    }
    .rev-dot.active { background: var(--yellow); width: 22px; border-radius: 4px; }

    @media (max-width: 991px) {
      .review-card { min-width: calc(50% - 11px); max-width: calc(50% - 11px); }
    }
    @media (max-width: 575px) {
      .review-card { min-width: 100%; max-width: 100%; }
      .overall-rating-badge { flex-wrap: wrap; }
    }
    /* ── PAGE LOADER ── */
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #0D0D0D;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #page-loader.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      animation: loaderPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
      animation-delay: 0.1s;
    }

    @keyframes loaderPop {
      from { opacity: 0; transform: scale(0.7); }
      to   { opacity: 1; transform: scale(1); }
    }

    .loader-logo-img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 0 3px rgba(245,200,0,0.25);
      animation: logoPulse 1.8s ease-in-out infinite;
    }

    @keyframes logoPulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(245,200,0,0.2); }
      50%       { box-shadow: 0 0 0 10px rgba(245,200,0,0); }
    }

    .loader-brand {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .loader-brand-mg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: var(--yellow);
      letter-spacing: 3px;
    }

    .loader-brand-sub {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #888;
    }

    /* Progress bar */
    .loader-progress-wrap {
      width: 220px;
      animation: fadeInUp 0.5s ease both;
      animation-delay: 0.3s;
    }

    .loader-progress-track {
      height: 3px;
      background: #1e1e1e;
      border-radius: 2px;
      overflow: hidden;
    }

    .loader-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--yellow), #fff8a0, var(--yellow));
      background-size: 200% 100%;
      border-radius: 2px;
      animation: progressFill 2s cubic-bezier(0.4,0,0.2,1) forwards,
                 shimmerBar 1s linear infinite;
    }

    @keyframes progressFill {
      0%   { width: 0%; }
      60%  { width: 75%; }
      85%  { width: 90%; }
      100% { width: 100%; }
    }

    @keyframes shimmerBar {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .loader-pct {
      text-align: right;
      font-size: 0.72rem;
      font-weight: 600;
      color: #555;
      margin-top: 7px;
      letter-spacing: 1px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      color: var(--yellow);
    }

    /* Dots */
    .loader-dots {
      display: flex;
      gap: 7px;
      animation: fadeInUp 0.5s ease both;
      animation-delay: 0.4s;
    }

    .loader-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #333;
    }

    .loader-dot:nth-child(1) { animation: dotBounce 1.2s ease-in-out infinite 0s; }
    .loader-dot:nth-child(2) { animation: dotBounce 1.2s ease-in-out infinite 0.2s; }
    .loader-dot:nth-child(3) { animation: dotBounce 1.2s ease-in-out infinite 0.4s; }

    @keyframes dotBounce {
      0%, 80%, 100% { background: #333; transform: translateY(0); }
      40%            { background: var(--yellow); transform: translateY(-7px); }
    }

    .loader-tagline {
      font-size: 0.75rem;
      color: #444;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: fadeInUp 0.5s ease both;
      animation-delay: 0.5s;
    }
	
