﻿/* Custom Text Muted for Dark/Premium Themes */
.text-muted {
    color: #ffffff !important; /* Soft white-transparency for dark backgrounds */
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* If you need a version for light backgrounds (like the footer or body) */
.bg-light .text-muted,
body:not(.hero-premium) .text-muted {
    color: #64748b !important; /* Modern Slate-gray */
}
/* Glassmorphism Effect */
.hero-glass-card {
    background: rgba(15, 23, 42, 0.4); /* Deep navy with 40% opacity */
    backdrop-filter: blur(12px); /* This blurs the hero image behind the text */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle edge highlight */
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Typography & Layout adjustments */
.tracking-widest {
    letter-spacing: 0.15em;
}

/* Ensure image takes up more space on mobile */
@media (max-width: 991px) {
    .hero-premium {
        background-size: cover;
        background-position: center;
        min-height: 55vh;
        align-items: center; /* Back to center on mobile */
    }

    .hero-glass-card {
        padding: 2.5rem 1.5rem !important;
        margin: 0 10px;
    }
    .hero-premium .text-end {
        text-align: center !important;
    }

    .hero-premium .justify-content-end {
        justify-content: center !important;
    }
}
.hero-premium {
    /* Reversed gradient: Darkness is now on the RIGHT (0%) to protect right-aligned text */
    /*background-image:  url('/images/landing/hero.png') !important;*/
}
.hero-premium-text {
    max-width: 450px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
    line-height: 1.6;
}
/* The Bloom Animation Logic */
@keyframes bloomPulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(2px);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
        /* Subtle text-glow to enhance the 'bloom' feel */
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    100% {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(1px);
    }
}

.bloom-animation {
    /* Adjust '4s' to make the pulse faster or slower */
    animation: bloomPulse 6s ease-in-out infinite;
    will-change: transform, opacity, filter;
    display: inline-block; /* Ensures transform works correctly */
}
/* Ensure the text remains crisp against the busy background */
.hero-premium h1 {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* ITrust Metrics Section Styling */
.metric-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .metric-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
        border-color: var(--primary);
    }

    .metric-card h3 {
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

    .metric-card p {
        color: var(--slate);
        margin: 0;
    }

/* Industry Section Styling */
.bg-primary-soft {
    background-color: rgba(37, 99, 235, 0.1);
}

.bg-success-soft {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-warning-soft {
    background-color: rgba(245, 158, 11, 0.1);
}

.bg-info-soft {
    background-color: rgba(6, 182, 212, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.industry-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    }

.industry-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.industry-list i {
    font-size: 1rem;
    margin-right: 12px;
    color: var(--primary);
}

.text-navy {
    color: var(--navy);
}

.text-slate {
    color: var(--slate);
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Service partial page  */
.service-hover-card {
    transition: all 0.4s ease;
    border-top: 4px solid transparent !important;
}

    .service-hover-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
        border-top: 4px solid var(--primary) !important;
    }

.service-features li {
    font-weight: 500;
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.service-features i {
    color: var(--primary);
    font-size: 1.5rem;
    vertical-align: middle;
}

.bg-primary-soft {
    background-color: rgba(37, 99, 235, 0.08);
}

/* FAQ partial Page*/
.custom-faq .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.custom-faq .accordion-button {
    background-color: transparent;
    color: var(--navy);
    box-shadow: none !important;
}

    .custom-faq .accordion-button:not(.collapsed) {
        color: var(--primary);
        background-color: rgba(37, 99, 235, 0.02);
    }

    .custom-faq .accordion-button::after {
        background-size: 1rem;
        transition: transform 0.3s ease;
    }

.custom-faq .accordion-item:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

/* CTA (Call To Action) Section */
.cta-premium {
    min-height: 450px;
    display: flex;
    align-items: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.z-1 {
    z-index: 1;
}

/* Button Refinement */
.cta-premium .btn-primary {
    background-color: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

    .cta-premium .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: scale(1.05);
    }

.cta-premium .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}