/* DSS Power Light Theme & Enhanced Ambient Lighting Effects CSS */

:root {
  --bg-main: #FFFFFF;
  --bg-sub: #F8FAFC;
  --text-primary: #0A4A92; /* DSS Power Primary Blue */
  --text-body: #334155;    /* Slate 700 for high readability */
  --brand-blue: #0A4A92;   /* DSS Power Primary Blue */
  --brand-orange: #F36F21; /* DSS Power Primary Orange Accent */
  --card-border: #E2E8F0;
}

body {
  background-color: #FFFFFF !important;
  color: #334155 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Fix Force-Stretched Fonts */
h1, h2, h3, .font-display {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-stretch: normal !important;
  letter-spacing: -0.02em !important;
  font-weight: 800 !important;
}

/* -------------------------------------------------------------
   ENHANCED LIGHTING & BACKGROUND SHADOW EFFECTS
---------------------------------------------------------------- */

/* Hero Light Rays & Angled Geometric Line Background */
.hero-light-rays-bg {
    position: relative;
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(ellipse at 15% 25%, rgba(10, 74, 146, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(243, 111, 33, 0.12) 0%, transparent 60%),
        repeating-linear-gradient(135deg, rgba(10, 74, 146, 0.03) 0px, rgba(10, 74, 146, 0.03) 2px, transparent 2px, transparent 40px),
        repeating-linear-gradient(45deg, rgba(243, 111, 33, 0.02) 0px, rgba(243, 111, 33, 0.02) 2px, transparent 2px, transparent 50px);
}

/* Glowing Blue & Orange Light Rays Streaks */
.hero-light-rays-bg::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 74, 146, 0.15) 0%, rgba(243, 111, 33, 0.08) 50%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.hero-light-rays-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 111, 33, 0.15) 0%, rgba(10, 74, 146, 0.05) 50%, transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    z-index: 0;
}

/* Rich Blue Shadow Glow Effects */
.blue-shadow-glow {
    box-shadow: 0 12px 32px -4px rgba(10, 74, 146, 0.22), 0 4px 16px -2px rgba(10, 74, 146, 0.12) !important;
}

.blue-shadow-glow:hover {
    box-shadow: 0 20px 40px -4px rgba(10, 74, 146, 0.35), 0 8px 24px -2px rgba(10, 74, 146, 0.2) !important;
    transform: translateY(-3px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Vibrant Orange Accent Shadow Glow */
.orange-shadow-glow {
    box-shadow: 0 10px 28px -4px rgba(243, 111, 33, 0.3), 0 4px 12px -2px rgba(243, 111, 33, 0.15) !important;
}

.orange-shadow-glow:hover {
    box-shadow: 0 18px 36px -4px rgba(243, 111, 33, 0.45), 0 6px 20px -2px rgba(243, 111, 33, 0.25) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Interactive Card Blue & Orange Hover Glow */
.card-hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.card-hover-glow:hover {
    border-color: #0A4A92 !important;
    box-shadow: 0 16px 32px -8px rgba(10, 74, 146, 0.2), 0 4px 12px rgba(243, 111, 33, 0.15) !important;
    transform: translateY(-4px);
}

/* Glowing Decorative Light Line Accents */
.glowing-red-beam {
    background: linear-gradient(90deg, transparent, #F36F21, #FF4D00, transparent);
    height: 3px;
    filter: drop-shadow(0 0 10px rgba(243, 111, 33, 0.8));
}

.glowing-blue-beam {
    background: linear-gradient(90deg, transparent, #0A4A92, #0056b3, transparent);
    height: 3px;
    filter: drop-shadow(0 0 10px rgba(10, 74, 146, 0.8));
}

/* Decorative Diagonal Light Stripe Overlay */
.bg-light-stripe-accent {
    position: relative;
    overflow: hidden;
}

.bg-light-stripe-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A4A92 0%, #F36F21 50%, #0A4A92 100%);
    box-shadow: 0 0 12px rgba(243, 111, 33, 0.6);
}

/* Custom Animations & Light Line Rays */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(243, 111, 33, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(243, 111, 33, 0.7)); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}
