/* --- 1. THEME VARIABLES --- */
        :root {
            /* Brand Identity Colors */
            --brand-navy: #022e47;
            --brand-cream: #FAF8F1;
            --brand-orange: #f68f1d;
            --brand-pink: #ea3b60;
            
            /* Default LIGHT Theme Mapping */
            --bg-body: var(--brand-cream);
            --text-main: var(--brand-navy);
            --text-muted: rgba(2, 46, 71, 0.7);
            --nav-bg-scrolled: rgba(250, 248, 241, 0.95);
            --nav-mobile-bg: #FAF8F1;
            --nav-mobile-shadow: rgba(0,0,0,0.1);
            
            /* Footer is always dark */
            --footer-bg: var(--brand-navy);
            
            --vf-grad: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange) 65%, var(--brand-pink) 100%);
            
            --font-display: 'Bakbak One', cursive;
            --font-body: 'Work Sans', sans-serif;
        }

        /* DARK THEME OVERRIDES */
        [data-theme="dark"] {
            --bg-body: #011a2a; 
            --text-main: #e6e6e6;
            --text-muted: rgba(255, 255, 255, 0.7);
            --nav-bg-scrolled: rgba(1, 26, 42, 0.95);
            --nav-mobile-bg: #022e47;
            --nav-mobile-shadow: rgba(0,0,0,0.4);
        }

        /* --- 2. GLOBAL STYLES --- */
        body {
            background-color: var(--bg-body);
            font-family: var(--font-body);
            color: var(--text-main);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            text-transform: uppercase;
            font-weight: 600;
        }

        .text-gradient {
            background: var(--vf-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* --- 3. AMBIENT BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            z-index: -1; pointer-events: none; overflow: hidden;
            background: var(--bg-body);
            transition: background-color 0.3s ease;
        }

        .orb {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: 0.5;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .orb-1 { width: 100vw; height: 100vw; background: var(--brand-orange); top: -10%; left: -10%; opacity: 0.15;}
        .orb-2 { width: 30vw; height: 30vw; background: var(--brand-pink); bottom: 10%; right: -5%; animation-delay: -5s; opacity: 0.15;}
        .orb-3 { width: 60vw; height: 60vw; background: #ff5500; top: 40%; left: 40%; animation-delay: -10s; opacity: 0.1;}

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -50px) scale(1.1); }
        }

        /* BRAND LOGO THEME ADAPTATION */
        .brand-logo { height: 70px; width: auto; object-fit: contain; }
        .logo-light { display: block; }
        .logo-dark { display: none; }
        html[data-theme="dark"] .logo-light { display: none; }
        html[data-theme="dark"] .logo-dark { display: block; }

    

		/* --- 7. HERO SECTION (RESTORED & STYLED) --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px; /* Offset for fixed nav */
        }

		/* --- BRAND LOGO THEME ADAPTATION --- */
		/* Set a uniform height so it fits cleanly in the navbar */
		.brand-logo {
			height: 70px; /* Adjust this value if you want the logo bigger or smaller */
			width: auto;
		object-fit: contain;
		}

		/* Default (Light Theme) Settings */
		.logo-light {
			display: block;
		}
		.logo-dark {
			display: none;
		}

		/* Dark Theme Settings */
		/* Targets the images when your JS adds data-theme="dark" to the html tag */
		html[data-theme="dark"] .logo-light {
			display: none;
		}
		html[data-theme="dark"] .logo-dark {
			display: block;
		}
		 /* Sidebar Link Styles */
            .sidebar-article-link {
                color: var(--text-muted);
                text-decoration: none;
                transition: color 0.3s ease, padding-left 0.3s ease;
                display: block;
                font-size: 0.9rem;
            }
            .sidebar-article-link:hover {
                color: var(--brand-orange);
                padding-left: 5px;
            }
            .sidebar-category-btn {
                background: transparent !important;
                color: var(--text-main) !important;
                font-family: var(--font-body);
                font-weight: 700;
                padding: 15px 0;
                box-shadow: none !important;
            }
            .sidebar-category-btn:not(.collapsed) {
                color: var(--brand-orange) !important;
            }
            .sidebar-category-btn::after {
                filter: grayscale(1) invert(var(--bs-body-color-rgb)); 
            }
            [data-theme="dark"] .sidebar-category-btn::after {
                filter: invert(1);
            }
            
            /* Back Arrow Style */
            .back-to-blogs-btn {
                color: var(--brand-pink);
                text-decoration: none;
                font-family: var(--font-body);
                font-weight: 700;
                font-size: 0.85rem;
                letter-spacing: 1px;
                display: inline-flex;
                align-items: center;
                transition: all 0.3s ease;
            }
            .back-to-blogs-btn:hover {
                color: var(--brand-orange);
                transform: translateX(-5px); /* Smooth slide to the left */
            }

            .bullet-list {
    list-style-position: outside;
    padding-left: 1.5rem;
    text-align: left;
    display: inline-block;
    max-width: 700px;
    color: #f68f1d; /* Orange in light mode */
  }

  @media (prefers-color-scheme: dark) {
    .bullet-list {
      color: #022e47; /* Navy in dark mode */
    }
  }

  /* --- CONTACT US BUTTON --- */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: var(--vf-grad); /* Verafede gradient */
  box-shadow: 0 10px 20px rgba(234, 59, 96, 0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover: lift + glow */
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(246, 143, 29, 0.35);
}

/* Arrow animation */
.btn-gradient i {
  transition: transform 0.35s ease;
}
.btn-gradient:hover i {
  transform: translateX(6px);
}

/* Shine effect */
.btn-gradient::after {
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-gradient:hover::after {
  left: 120%;
}

.style-hover-link:hover {
        color: var(--brand-orange) !important;
        text-decoration: underline !important;
    }
