@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --primary-purple: #8A00FF;
    --deep-violet: #5C1DFF;
    --royal-blue: #147FF5;
    --bright-cyan: #19C8F5;
    --dark-text: #111111;
    --light-bg: #F7F9FC;
    --white: #FFFFFF;
    
    --grad-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-violet) 50%, var(--royal-blue) 100%);
    --grad-cyan-blue: linear-gradient(135deg, var(--bright-cyan) 0%, var(--royal-blue) 100%);
    --grad-purple-cyan: linear-gradient(135deg, var(--primary-purple) 0%, var(--bright-cyan) 100%);
    --grad-dark: linear-gradient(135deg, #090314 0%, #0d0a21 50%, #03010a 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-dark-bg: rgba(13, 10, 33, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.08);
    
    --shadow-soft: 0 15px 35px rgba(92, 29, 255, 0.06);
    --shadow-premium: 0 30px 60px rgba(92, 29, 255, 0.12);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Manrope', sans-serif;
}

/* Base resets & transitions */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: #444444;
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--deep-violet);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-purple);
}

/* Premium Background Mesh */
.bg-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: floatBlob 12s infinite alternate ease-in-out;
}

.mesh-blob-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary-purple);
    top: -10%;
    right: -10%;
}

.mesh-blob-2 {
    width: 600px;
    height: 600px;
    background-color: var(--royal-blue);
    bottom: -10%;
    left: -15%;
    animation-delay: -3s;
}

.mesh-blob-3 {
    width: 400px;
    height: 400px;
    background-color: var(--bright-cyan);
    top: 40%;
    right: 15%;
    animation-delay: -6s;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 80px 0 80px;
    background-color: #0b061e;
    background-image: var(--grad-dark);
    color: var(--white);
    overflow: hidden;
    min-height: 90vh; /* Desktop default */
}


/* Adjust hero wrapper min-height for tablets and mobiles */
@media (max-width: 1199px) {
    .hero-wrapper { min-height: auto; }
}


/* Flex container for hero section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 95vh;
}
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 95vh;
}


/* Hero carousel image styling */
.hero-slider-img {
    width: 100%;
    max-width: 480px;
    max-height: 320px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    object-fit: cover;
}


.hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero responsive layout */
@media (min-width: 1400px) {
    .hero-left { flex: 0 0 58%; }
    .hero-right { flex: 0 0 42%; }
    .hero-container { min-height: 90vh; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-left { flex: 0 0 56%; }
    .hero-right { flex: 0 0 44%; }
    .hero-container { min-height: 85vh; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-left { flex: 0 0 60%; }
    .hero-right { flex: 0 0 40%; }
    .hero-container { min-height: auto; }
}

@media (max-width: 991px) {
    .hero-container { flex-direction: column; align-items: center; }
    .hero-left, .hero-right { flex: 0 0 100%; width: 100%; }
    .hero-container { min-height: auto; }
}


.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-primary-title {
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 20px;
}
/* Ensure badge and subtitle are centered */
.hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--white);
}
.hero-left {
    text-align: center;
}
.hero-right {
    display: flex;
    justify-content: center;
}
.hero-slider-img {
    max-width: 520px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    margin: 0 auto 20px;
}
.hero-primary-title .title-line {
    display: block;
    font-size: 80px; /* desktop size */
}
.hero-primary-title .title-line.primary {
    color: var(--white);
}
.hero-primary-title .title-line.gradient {
    background: var(--grad-primary);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}
/* Responsive sizes */
@media (max-width: 1199px) {
    .hero-primary-title .title-line { font-size: 64px; }
}
@media (max-width: 991px) {
    .hero-primary-title .title-line { font-size: 48px; }
}
@media (max-width: 767px) {
    .hero-primary-title .title-line { font-size: 36px; }
}
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2D9FF 50%, #9BC6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Redesigned large hero tagline with premium gradient animation */
/* Hero tagline split styling */
.hero-tagline-split {
    font-size: 5rem; /* Desktop default, overridden by media queries */
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    display: inline-block;
}
.hero-tagline-split .tagline-primary {
    color: var(--white);
}
.hero-tagline-split .tagline-gradient {
    background: var(--grad-primary);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}

/* Responsive font sizes */
@media (min-width: 1200px) {
    .hero-tagline-split { font-size: 60px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-tagline-split { font-size: 54px; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hero-tagline-split { font-size: 44px; }
}

@media (max-width: 767px) {
    .hero-tagline-split { font-size: 34px; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Hero services icons styling */

/* Grid container for services */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
/* Service Card Design */
.glass-card.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass-card.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.glass-card.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
}
.glass-card.service-card .service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}
.glass-card.service-card .service-text {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* CTA Button Styles */
.btn-primary-gradient {
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary-gradient:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.btn-outline-glass {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn-outline-glass:hover {
    background: var(--glass-bg);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

@media (max-width: 991.98px) {
    .hero-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575.98px) {
    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service card styling */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    padding: 14px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    padding: 14px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(92, 29, 255, 0.2);
}
.service-icon {
    font-size: 22px;
    margin-bottom: 4px;
    background: var(--grad-primary);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}
.service-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}




.hero-highlight {
    background: linear-gradient(90deg, #b577ff 0%, #19C8F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b7b3d3;
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Glassmorphism Header & Navigation */
.custom-header {
    background: rgba(11, 6, 30, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    z-index: 1000;
    width: 100%;
}

.custom-header.scrolled {
    background: rgba(11, 6, 30, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(138, 0, 255, 0.2);
}

.custom-header .navbar {
    height: 80px;
    padding: 0 !important;
}

@media (max-width: 991.98px) {
    .custom-header .navbar {
        height: 70px;
    }
}

.navbar-brand img {
    height: 42px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--bright-cyan) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--grad-cyan-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Mega Menu */
.mega-menu {
    position: static !important;
}

.mega-dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 10, 33, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(138, 0, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    top: 90% !important;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-menu .text-muted {
    color: #a5a1c9 !important;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mega-menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.mega-menu-icon {
    font-size: 1.5rem;
    color: var(--bright-cyan);
    margin-right: 15px;
    background: rgba(25, 200, 245, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Buttons with Gradient Glow */
.btn-premium {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    color: var(--white);
    background: var(--grad-primary);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(92, 29, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-cyan-blue);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(25, 200, 245, 0.35);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium-outline {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 27px;
    border-radius: 30px;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--bright-cyan);
    color: var(--bright-cyan);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(92, 29, 255, 0.25);
}

.glass-card.dark {
    background: var(--glass-dark-bg);
    border: 1px solid var(--glass-dark-border);
    color: var(--white);
}

.glass-card.dark:hover {
    border-color: rgba(138, 0, 255, 0.3);
}

/* Section Dividers & Dividers Graphics */
.section-title-wrapper {
    margin-bottom: 50px;
}

.section-tag {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--bright-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* KPI Count Block */
.kpi-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.2rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.kpi-title {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

/* Timeline Process UI */
.process-timeline {
    position: relative;
    padding-left: 35px;
    border-left: 2px dashed rgba(92, 29, 255, 0.2);
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--deep-violet);
    box-shadow: 0 0 10px rgba(92, 29, 255, 0.4);
    z-index: 5;
    transition: all 0.3s ease;
}

.timeline-step:hover::before {
    background: var(--bright-cyan);
    border-color: var(--primary-purple);
    transform: scale(1.2);
}

.timeline-num {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

/* Brand Logos Swiper Carousel */
.clients-carousel {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    opacity: 0.9;
    filter: grayscale(0);
}

/* Floating WhatsApp Quick Enquiry */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--dark-text);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-soft);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--deep-violet);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Section */
.footer-wrapper {
    background-color: #080414;
    background-image: var(--grad-dark);
    color: #D7DCE5;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(138, 0, 255, 0.15);
}

.footer-wrapper p, 
.footer-wrapper .text-muted, 
.footer-wrapper span {
    color: #D7DCE5 !important;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-link,
.footer-bottom a {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-bottom a {
    display: inline-block;
    margin-bottom: 0;
}

.footer-link:hover,
.footer-bottom a:hover {
    color: #19C8F5 !important;
    transform: translateX(3px);
}

.footer-wrapper i.text-primary-purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--bright-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #D7DCE5 !important;
}

/* Preloader Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b061e;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(138, 0, 255, 0.1);
    border-top-color: var(--bright-cyan);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Keyframes */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes floatBlob {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

/* Animations */
.hover-float {
    transition: all 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-5px);
}

.hover-glow {
    position: relative;
}

.hover-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 30px rgba(138, 0, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

.hover-glow:hover::after {
    opacity: 1;
}

/* Responsive Customizations */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .mega-dropdown-menu {
        position: relative !important;
        top: 0 !important;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 10px;
    }
    .nav-item.dropdown:hover .mega-dropdown-menu {
        display: block;
    }
}

/* Accessibility focus visible indicators (WCAG 2.2 AA) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--primary-purple);
    outline-offset: 3px;
    box-shadow: 0 0 10px rgba(138, 0, 255, 0.4);
}

/* Subpage Hero Title Readability (Option A: Keep Dark, White Title, Gray Subtitle, Dark Overlay) */
.bg-dark.text-center {
    background-image: linear-gradient(180deg, rgba(8, 4, 20, 0.85) 0%, rgba(11, 6, 30, 0.95) 100%), var(--grad-dark) !important;
}

.bg-dark h1, 
.bg-dark h2, 
.bg-dark h3, 
.bg-dark h4, 
.bg-dark h5, 
.bg-dark h6, 
.bg-dark .text-white {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bg-dark p, 
.bg-dark .text-muted {
    color: #D7DCE5 !important;
}

/* Breadcrumbs Visibility Customization */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 15px 0 0 0;
}

.breadcrumb-item a {
    color: #D7DCE5 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #19C8F5 !important;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #FFFFFF !important;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(215, 220, 229, 0.5) !important;
}
