
        :root {
            --marquee-gap: 2rem;
            --card-width: 400px; 
            --card-height: 300px;
        }

        /* BACKGROUND CONFIGURATION & Scoped Styles */
        .banner-section {
            /* Using the uploaded image filename */
            background-image: url('Gemini_Generated_Image_r8klc2r8klc2r8kl.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #171717; /* Fallback color */
            
            /* Scoped text styles */
            color: white;
            font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            
            position: relative;
            /* CRITICAL FIX: Creates a new stacking context so 3D elements don't poke through text */
            isolation: isolate; 
        }

        /* The 3D Perspective Wrapper */
        .marquee-wrapper {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            /* Pushed to the back */
            z-index: 0; 
        }

        /* The Tilted Plane */
        .marquee-plane {
            position: absolute;
            top: 24rem;
            right: 50%;
            width: 1720px;
            height: 1720px;
            
            /* The Magic 3D Transform */
            transform: rotateX(55deg) rotateY(0deg) rotateZ(-45deg);
            transform-style: preserve-3d;
            transform-origin: top left;
            
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        /* Column Animations */
        .marquee-col {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: flex-start;
        }

        .marquee-col:nth-child(even) {
            animation: float-up 10s infinite linear alternate;
        }
        .marquee-col:nth-child(odd) {
            animation: float-down 15s infinite linear alternate;
        }

        @keyframes float-up {
            from { transform: translateY(0); }
            to { transform: translateY(100px); }
        }

        @keyframes float-down {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }

        /* Image Styling */
        .marquee-img {
            width: 100%;
            border-radius: 0.5rem;
            object-fit: cover;
            height: auto;
            /* Ensures images are visible enough */
            min-height: 250px; 
            background-color: #262626;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
        }

        .marquee-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* --- Grid Lines --- */
        .grid-line {
            position: absolute;
            z-index: 30;
            pointer-events: none;
            --background: #ffffff;
            --fade-stop: 90%;
        }

        .grid-line-v {
            width: 1px;
            height: calc(100% + 150px);
            top: -75px; 
            left: -1rem; 
            background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.2) 50%, transparent 0, transparent);
            background-size: 1px 5px;
            mask: linear-gradient(to top, var(--background) var(--fade-stop), transparent),
                  linear-gradient(to bottom, var(--background) var(--fade-stop), transparent),
                  linear-gradient(black, black);
            mask-composite: exclude;
            -webkit-mask-composite: xor; 
        }

        .grid-line-h {
            height: 1px;
            width: calc(100% + 200px);
            left: -100px;
            top: -1rem; 
            background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0.2) 50%, transparent 0, transparent);
            background-size: 5px 1px;
            mask: linear-gradient(to left, var(--background) var(--fade-stop), transparent),
                  linear-gradient(to right, var(--background) var(--fade-stop), transparent),
                  linear-gradient(black, black);
            mask-composite: exclude;
            -webkit-mask-composite: xor;
        }

        .scale-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scale-inner {
            flex-shrink: 0;
            width: 1720px;
            height: 1720px;
            transform: scale(0.5); 
        }

        @media (min-width: 640px) { .scale-inner { transform: scale(0.75); } }
        @media (min-width: 1024px) { .scale-inner { transform: scale(1); } }
        
        /* Ensure Text is strictly above everything */
        .banner-content-z {
            position: relative;
            z-index: 50;
            /* Extra safety: slight translateZ ensures it's "closer" to the camera than the 3D plane */
            transform: translateZ(1px); 
        }
        
        /* Ensure Overlay is between background and text */
        .banner-overlay-z {
            z-index: 10;
        }





        /* new banner bg  */


                /* --- 1. Reset & Base Styles --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --color-bg: #000000;
            --color-text-main: #ffffff;
            --color-text-muted: rgba(255, 255, 255, 0.7);
            --color-border: rgba(255, 255, 255, 0.1);
            --font-serif: 'Instrument Serif', serif;
            --font-sans: 'Inter', sans-serif;
        }


        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }

        /* --- 2. Layout & Stacking Context Isolation --- */
        .wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            /* 'isolation: isolate' creates a new stacking context. 
               This ensures negative z-index children (bg-image) 
               don't disappear behind the body background. */
            isolation: isolate; 
        }

        .bg-image {
            position: absolute; 
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2; /* Placed deep in the isolated stack */
        }

        .overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            z-index: -1; /* Placed behind content but above image */
        }

        .container {
            max-width: 80rem; /* approx 7xl */
            margin: 0 auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* --- 3. Header Component --- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            /* Reduced padding to decrease navbar size */
            padding-top: 0.6rem;
            padding-bottom: 0.6rem;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            /* Slightly more compact on scroll */
            padding-top: 0.4rem;
            padding-bottom: 0.4rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* Attached closer to the start/edge of screen */
            margin: 0 0.5rem;
        }

        .logo {
            display: inline-block;
            width: 160px;
            height: 64px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-image: url('/assets/img/logo/FCRF\ Logo.png');
            transition: filter 0.3s;
        }

        .header.scrolled .logo {
            filter: invert(1) brightness(0);
        }

        /* --- 4. Navigation Component --- */
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-pill {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.25rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            transition: background-color 0.3s, border-color 0.3s;
        }

        .header.scrolled .nav-pill {
            background-color: rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 9999px;
            transition: color 0.2s, background-color 0.2s;
            color: rgba(255, 255, 255, 0.7);
        }

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

        .nav-link.active {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .header.scrolled .nav-link {
            color: rgba(0, 0, 0, 0.6);
        }
        .header.scrolled .nav-link:hover {
            color: #000;
        }
        .header.scrolled .nav-link.active {
            color: #000;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .btn-reserve {
            margin-left: 0.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #ffffff;
            color: #171717;
            padding: 0.5rem 0.875rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 9999px;
            transition: background-color 0.2s, color 0.2s;
        }

        .btn-reserve:hover {
            background-color: #e5e5e5;
        }

        .header.scrolled .btn-reserve {
            background-color: #000;
            color: #fff;
        }
        .header.scrolled .btn-reserve:hover {
            background-color: #333;
        }

        .btn-mobile-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.2s;
        }

        /* Ensure clicks on the icon pass through to the button */
        .btn-mobile-menu svg {
            pointer-events: none;
        }

        .btn-mobile-menu:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .header.scrolled .btn-mobile-menu {
            color: #000;
            border-color: rgba(0, 0, 0, 0.1);
            background-color: rgba(0, 0, 0, 0.05);
        }

        .mobile-menu-dropdown {
            display: none;
            position: fixed;
            top: 5rem;
            left: 1rem;
            right: 1rem;
            /* Increased Z-Index to ensure it sits above header */
            z-index: 60;
            background-color: rgba(23, 23, 23, 0.95);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 1rem;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .mobile-menu-dropdown.open {
             opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
        }

        .mobile-link {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.2s;
        }

        .mobile-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-btn-reserve {
            display: block;
            margin-top: 0.5rem;
            background-color: #fff;
            color: #171717;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            font-weight: 700;
            text-align: center;
        }

        /* --- 5. Hero Content --- */
        .hero-section {
            position: relative;
            z-index: 10;
            padding-top: 8rem;
            padding-bottom: 4rem;
        }

        .hero-inner {
            max-width: 56rem;
            margin: 0 auto;
            text-align: center;
        }

        /* Badge */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.375rem 0.5rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            margin-bottom: 2rem;
        }

        .badge-label {
            background-color: #fff;
            color: #171717;
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
        }

        .badge-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            padding-right: 0.5rem;
        }

        /* Titles */
        .hero-title {
            font-family: var(--font-serif);
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -0.05em;
            color: #fff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            font-size: 3rem;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        }

        /* Description */
        .hero-desc {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 42rem;
            margin: 2rem auto 0;
            line-height: 1.625;
            font-weight: 400;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
        }

        /* CTA Buttons */
        .cta-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 2.5rem;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            width: 100%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(255, 255, 255, 0.9);
            color: #171717;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .btn-primary:hover {
            background-color: #fff;
            transform: scale(1.05);
        }

        .btn-secondary {
            width: 100%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            font-weight: 500;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-size: 1rem;
            transition: background-color 0.2s;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* --- 6. Partners Component --- */
        .partners-section {
            margin-top: 0.5rem;
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 3rem;
            text-align: center;
        }

        .partners-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.5s;
        }

        .partners-grid:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .partner-logo {
            display: block;
            height: 2rem;
            width: auto;
            min-width: 100px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.2s;
        }
        
        .partner-logo:hover {
            transform: scale(1.1);
        }

        /* --- Animations --- */
        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .anim-1 { animation: fadeSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.1s; opacity: 0; }
        .anim-2 { animation: fadeSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.2s; opacity: 0; }
        .anim-3 { animation: fadeSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.3s; opacity: 0; }
        .anim-4 { animation: fadeSlideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: 0.4s; opacity: 0; }

        /* --- Media Queries --- */
        @media (min-width: 640px) {
            .hero-title { font-size: 3.75rem; }
            .cta-group { flex-direction: row; gap: 1rem; }
            .btn-primary, .btn-secondary { width: auto; }
        }

        @media (min-width: 768px) {
            .nav-desktop { display: flex; }
            .btn-mobile-menu { display: none; }
            .mobile-menu-dropdown { display: none !important; }
            
            .header { top: 1rem; }
            .hero-title { font-size: 4.5rem; }
            .partners-grid { gap: 4rem; }
        }

        @media (min-width: 1024px) {
            .hero-section { padding-top: 10rem; }
            .hero-title { font-size: 6rem; }
            .hero-desc { font-size: 1.25rem; }
        }

        /* number css   */

        
/* Component Wrapper - Scopes variables and base styles */
.st-section {
  /* Local Variables */
  --st-navy: #1e3a8a;
  --st-bright-blue: #3b82f6;
  --st-bg: #ffffff;
  --st-border: #e5e7eb;
  --st-text-main: #374151;
  
  /* Layout & Reset */
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--st-bg);
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure box-sizing for all children */
.st-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== GRID CONTAINER ===== */
.st-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* Default: 4 columns + 1 highlight column */
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 20px;
}

/* ===== CARD ===== */
.st-card {
  background: #ffffff;
  border: 1px solid var(--st-border);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Removed hover transition/transform */
}

/* ===== MOVING LIGHT SHIMMER ===== */
.st-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(59, 130, 246, 0.08), 
    transparent 70%
  );
  transform: translateX(-100%);
  /* UPDATED: FAST ANIMATION (2 seconds) */
  animation: st-shimmer 2s linear infinite;
  pointer-events: none;
}

@keyframes st-shimmer {
  0% { transform: translateX(-100%); }
  /* Faster pass-through */
  50% { transform: translateX(100%); } 
  100% { transform: translateX(100%); }
}

/* ===== NUMBER ===== */
.st-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(
    270deg,
    var(--st-bright-blue),
    var(--st-navy),
    var(--st-bright-blue)
  );
  background-size: 400% 400%;
  /* UPDATED: FASTER GRADIENT (3 seconds) */
  animation: st-gradient-move 2s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes st-gradient-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== LABEL ===== */
.st-label {
  font-size: 13px;
  color: var(--st-text-main);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 600;
  word-wrap: break-word; 
  overflow-wrap: break-word;
}

/* ===== HIGHLIGHT CARD (Last One) ===== */
.st-card.st-highlight {
  background: linear-gradient(
    135deg,
    var(--st-navy),
    var(--st-bright-blue)
  );
  border: none;
  grid-column: auto; 
}

.st-card.st-highlight::before { display: none; }

.st-card.st-highlight .st-value {
  font-size: 42px;
  background: linear-gradient(270deg, #ffffff, #bfdbfe, #ffffff);
  background-size: 300% 300%;
  /* UPDATED: FASTER GRADIENT (3 seconds) */
  animation: st-gradient-move 3s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st-card.st-highlight .st-label {
  color: #eff6ff;
  opacity: 0.9;
}

/* ===== BAR GRAPH ===== */
.st-bars {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.st-bars span {
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #93c5fd, var(--st-bright-blue));
  /* UPDATED: FAST PULSE (1 second) */
  animation: st-bar-pulse 1s ease-in-out infinite;
}

.st-bars span:nth-child(1) { height: 20px; background: rgba(255,255,255,0.3); }
.st-bars span:nth-child(2) { height: 30px; animation-delay: .1s; background: rgba(255,255,255,0.6); }
.st-bars span:nth-child(3) { height: 45px; animation-delay: .2s; background: #ffffff; }

@keyframes st-bar-pulse {
  0%,100% { transform: scaleY(0.9); }
  50% { transform: scaleY(1.1); }
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet / Small Laptop */
@media (max-width: 1200px) {
  .st-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .st-card.st-highlight {
    grid-column: span 1; 
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .st-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .st-card.st-highlight {
    grid-column: span 2;
  }
  .st-value {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 550px) {
  .st-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 12px;
  }
  
  .st-card.st-highlight {
    grid-column: span 2; /* Highlight card spans bottom */
  }
  
  .st-card {
    padding: 16px;
    min-height: auto; 
  }
  
  .st-value {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .st-label {
    font-size: 11px;
    line-height: 1.3;
  }
}