    .stat-card {
      border-left: 2px solid #8a6d3b;
    }

    .marquee {
      display: flex;
      overflow: hidden;
      user-select: none;
      gap: 4rem;
    }
/* Professional Grid Overlay */
.bg-grid-professional {
  background-image: 
    linear-gradient(to right, rgba(212, 175, 55, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  /* This makes the grid fade out at the edges for a "vignette" look */
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 85%);
}

/* Fix for Lottie Player to fill screen */
lottie-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}/* Default for Desktop */
.bg-container {
  top: 50px; /* Your downward shift */
}

/* Specific adjustments for Mobile (Devices smaller than 768px) */
@media (max-width: 768px) {
  .bg-container {
    top: 20px; /* Move it less on mobile */
    transform: scale(1.5); /* Zoom in slightly if the details are too small */
  }
}
    .marquee-content {
      flex-shrink: 0;
      display: flex;
      justify-content: space-around;
      gap: 4rem;
      min-width: 100%;
      animation: scroll 30s linear infinite;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

    .bg-grid {
      background-image: linear-gradient(to right, #111 1px, transparent 1px),
        linear-gradient(to bottom, #111 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .meta {
      background: linear-gradient(135deg,
          #BF953F 0%,
          #FCF6BA 25%,
          #B38728 50%,
          #FBF5B7 75%,
          #AA771C 100%);
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
      position: relative;
      background-color: var(--charcoal-black);
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }

    :root {
      --metal-gold: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
 --soft-gold: #c5a367;
            --obsidian: #0a0a0b;
            --muted-gray: #888888;
      --mustard-yellow: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
      --charcoal-black: #0A0A0A;
      --card-bg: #141414;
      --bg-color: #0a0a0a;
      --card-bg: #141414;
      --gold-primary: linear-gradient(135deg, #bf953f, #dace4f, #b38728, #726c21, #aa771c);
      --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
      --text-white: #ffffff;
      --text-gray: #a0a0a0;
      --scroll-speed: 40s;
      --gold: #D4AF37;

    }

    .service-card:hover .service-image {
      transform: scale(1.1);
    }

    /* Hide scrollbar but keep functionality */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    /* Smooth loading placeholder */
    .img-placeholder {
      background: linear-gradient(110deg, #1a2a41 8%, #243b55 18%, #1a2a41 33%);
      background-size: 200% 100%;
      animation: shine 1.5s linear infinite;
    }

    @keyframes shine {
      to {
        background-position-x: -200%;
      }
    }

    /* =========================================
       NEW ANIMATION STYLES [ADDED BY AI]
       ========================================= */
    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
      will-change: opacity, transform;
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delays for cards/grids */
    .stagger-1 {
      transition-delay: 100ms;
    }

    .stagger-2 {
      transition-delay: 200ms;
    }

    .stagger-3 {
      transition-delay: 300ms;
    }



    .gold-text {
      background: var(--metal-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bg-gold-gradient {
      background: var(--metal-gold);
    }

    /* Glassmorphism Effect */
    .glass-card {
      background: rgba(20, 20, 20, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .glass-card:hover {
      border-color: var(--mustard-yellow);
      transform: translateY(-8px);
      background: rgba(225, 173, 1, 0.03);
    }

    .btn-glow {
      box-shadow: 0 0 0 rgba(225, 173, 1, 0.4);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(225, 173, 1, 0.4);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(225, 173, 1, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(225, 173, 1, 0);
      }
    }

    .marquee {
      display: flex;
      overflow: hidden;
      user-select: none;
      gap: 4rem;
    }

    .marquee-content {
      flex-shrink: 0;
      display: flex;
      justify-content: space-around;
      gap: 4rem;
      min-width: 100%;
      animation: scroll 30s linear infinite;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

    .testimonial-section {
      width: 100%;
      padding: 80px 0;
      background-color: var(--bg-color);
      overflow: hidden;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }



    /* The moving container */
    .slider-wrapper {
      display: flex;
      width: max-content;
      animation: slide var(--scroll-speed) linear infinite;
    }

    /* Pause on hover */
    .slider-wrapper:hover {
      animation-play-state: paused;
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .testimonial-card {
      width: 400px;
      background: var(--card-bg);
      border: 1px solid rgba(212, 175, 55, 0.15);
      padding: 40px;
      margin: 0 20px;
      border-radius: 16px;
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .testimonial-card:hover {
      border-color: var(--gold-primary);
      transform: translateY(-5px);
      background: #1a1a1a;
    }

    /* Gold metallic accent line */
    .testimonial-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gold-gradient);
      border-radius: 12px 12px 0 0;
    }

    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .stars {
      display: flex;
      gap: 4px;
      color: var(--gold-primary);
      font-size: 14px;
    }

    .verified-badge {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold-primary);
      background: rgba(212, 175, 55, 0.1);
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: bold;
    }

    .quote-icon {
      font-size: 30px;
      color: var(--gold-primary);
      opacity: 0.3;
      line-height: 1;
    }

    .testimonial-content {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-gray);
      margin-bottom: 30px;
      font-style: italic;
      flex-grow: 1;
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 20px;
    }

    .user-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold-primary);
      padding: 2px;
      background: var(--bg-color);
    }

    .user-details h4 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--text-white);
    }

    .user-details span {
      font-size: 0.9rem;
      color: var(--gold-primary);
      display: block;
    }

    /* Gradient overlays to fade edges */
    .testimonial-section::before,
    .testimonial-section::after {
      content: "";
      position: absolute;
      top: 0;
      width: 200px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .testimonial-section::before {
      left: 0;
      background: linear-gradient(to right, var(--bg-color), transparent);
    }

    .testimonial-section::after {
      right: 0;
      background: linear-gradient(to left, var(--bg-color), transparent);
    }

    .border-gold {
      border: 4px solid;
      /* Set width here */
      border-image-source: var(--gold-gradient);
      border-image-slice: 1;
    }
    /* Premium Slide & Icon Transition */
    .faq-item.active .faq-content {
      max-height: 400px;
    }

    .faq-item.active .icon-v {
      transform: rotate(90deg);
      opacity: 0;
    }

    .faq-toggle:focus {
      outline: none;
    }
    .bg-gold{
            background: var(--metal-gold);

    }
    .btn-gold {
      background: var(--metal-gold);
      color: black;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
      font-size: 15px;
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    }
    .project-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .project-card:hover {
            border-color: rgba(197, 163, 103, 0.4);
            background: rgba(255, 255, 255, 0.03);
        }

        .glass-nav {
            background: rgba(10, 10, 11, 0.8);
            backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) brightness(0.6);
            transition: filter 0.8s ease, transform 0.8s ease;
        }

        .project-card:hover .project-image {
            filter: grayscale(40%) brightness(0.7);
            transform: scale(1.02);
        }

        .stat-line {
            height: 1px;
            background: linear-gradient(90deg, var(--soft-gold), transparent);
            width: 80px;
        }
         .team-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.5);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
        }

        .image-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .image-overlay {
            opacity: 1;
        }

        .social-icon {
            color: #fff;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icon:hover {
            color: #D4AF37;
            transform: scale(1.2);
        }

        .cta-button {
            background: var(--gold-metallic);
            color: #000;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(170, 119, 28, 0.3);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(170, 119, 28, 0.5);
        }

        .glow-effect {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
