:root {
            --primary-red: #E03C31;
            --sa-blue: #001489;
            --sa-green: #007749;
            --sa-gold: #FFB612;
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --text-dark: #1a1a1a;
            --text-muted: #666;
        }

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

 .container {
            max-width: 1400px !important;
            margin: 0 auto;
            padding: 0 2rem;
        }

/* Animated background elements */
        .bg-decoration {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite ease-in-out;
        }

        .bg-circle-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-red);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .bg-circle-2 {
            width: 400px;
            height: 400px;
            background: var(--sa-blue);
            bottom: -50px;
            left: -50px;
            animation-delay: 3s;
        }

        .bg-circle-3 {
            width: 350px;
            height: 350px;
            background: var(--sa-green);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(20px, 30px) scale(1.05); }
        }


/* ===== Extra Rounded Modern Scrollbar ===== */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e5e7eb, #9ca3af);
  border-radius: 9999px; /* ultra rounded pill */
  border: 4px solid transparent; /* more padding = softer look */
  background-clip: content-box;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9ca3af, #6b7280);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1) inset;
}

::-webkit-scrollbar-corner {
  background: transparent;
}
