:root {
    --color-dark-blue: #0A1128;
    --color-gray-bg: #222831;
    --color-black-bg: #1A1A1A;
    --color-white-translucent: rgba(255, 255, 255, 0.1);
    --color-white-text: #E0E0E0;
    --color-accent: #61A4FF; /* A subtle blue for highlights */
    --font-poppins: 'Poppins', sans-serif;
    --glass-blur: 10px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-speed: 0.3s ease-in-out;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    line-height: 1.6;
    color: var(--color-white-text);
    background-color: var(--color-dark-blue); /* Deep blurred backdrop */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-white-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphic Panel Styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.05); /* Translucent white panel */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
    padding: 40px;
    margin: 60px auto;
    animation: fadeIn var(--transition-speed) forwards;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08); /* Slightly more opaque for cards */
    backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    border: var(--glass-border);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.45);
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-white-text);
}

h1 {
    font-size: 3.5rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-white-text);
}

/* This class is used to style a paragraph as an H2 for SEO purposes */
.section-description-as-h2 {
    font-size: 1.5rem; /* Slightly smaller than section-title for hierarchy */
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}


.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 1; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: var(--glass-border);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white-text);
    letter-spacing: 1px;
    padding: 5px 0;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--color-white-text);
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white-text);
    overflow: hidden; /* Ensure overlay and content stay within bounds */
    background-image: url('images/image_13.jpg'); /* Placeholder image for video background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    backdrop-filter: blur(5px); /* Gentle blur to simulate video texture */
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05); /* Glassmorphic panel for content */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
    padding: 50px;
    margin-top: 150px;
    animation: fadeIn 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(97, 164, 255, 0.4);
}

.cta-button:hover {
    background: var(--color-white-text);
    color: var(--color-dark-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(97, 164, 255, 0.6);
}

.secondary-cta {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    margin-left: 20px;
    box-shadow: none;
}

.secondary-cta:hover {
    background: var(--color-accent);
    color: var(--color-dark-blue);
    box-shadow: 0 4px 15px rgba(97, 164, 255, 0.4);
}

/* About Us Section with Tabs */
.about-us-section {
    padding: 80px 0;
    background: var(--color-gray-bg);
}

.tabs-container {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    border: var(--glass-border);
    color: var(--color-white-text);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.tab-button.active {
    background: var(--color-accent);
    color: var(--color-dark-blue);
    box-shadow: 0 6px 20px rgba(97, 164, 255, 0.5);
    border-color: var(--color-accent);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
}

.tab-pane.active {
    display: block;
}

.tab-panel-title {
    font-size: 1.8rem;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 20px;
}

.tab-pane p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--color-dark-blue);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row, responsive */
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) - 5px));
    border: var(--glass-border);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.45);
}

.process-step-title {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.process-step ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.process-step li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.process-step li::before {
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--color-gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row, responsive */
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    box-shadow: 0 0 20px rgba(97, 164, 255, 0.6);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-white-text);
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-black-bg) 0%, var(--color-dark-blue) 100%);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row, responsive */
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    overflow: hidden;
}

.story-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 250px; /* Fixed height for image uniformity, could be auto for masonry like */
    object-fit: cover;
    margin-bottom: 15px;
}

.story-content {
    padding: 0 15px 15px;
}

.story-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.story-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.story-testimonial {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-testimonial p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.story-testimonial span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    text-align: right;
}

/* Case Studies Section (Masonry-like with CSS Grid) */
.case-studies-section {
    padding: 80px 0;
    background: var(--color-dark-blue);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row */
    grid-auto-rows: minmax(min-content, max-content); /* Allow rows to size based on content */
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* For masonry effect, some cards can have different heights due to content */
}

.case-study-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 200px; /* Base height, content will push further */
    object-fit: cover;
    margin-bottom: 15px;
}

.case-study-content {
    flex-grow: 1; /* Allows content to expand and create varied heights */
    padding: 0 15px 15px;
}

.case-study-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.case-study-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.case-study-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.case-study-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.case-study-card li::before {
    content: '✓'; /* Simple checkmark */
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-gray-bg) 0%, var(--color-black-bg) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row, responsive */
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    text-align: center;
}

.stars {
    color: gold;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.stars .star {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-accent);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--color-dark-blue);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards per row, responsive */
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(97, 164, 255, 0.5);
    transition: transform 0.3s ease;
}

.team-member-card img:hover {
    transform: scale(1.05);
}

.member-info {
    flex-grow: 1;
}

.member-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--color-white-text);
}

.member-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background-image: url('images/image_14.jpg'); /* Another image for background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    padding: 60px;
}

.cta-section .section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cta-section .section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.cta-section .cta-button {
    margin: 0 15px;
}

/* Footer */
.site-footer {
    background: var(--color-black-bg);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    border-top: var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
    color: var(--color-white-text);
}

.footer-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading { /* Now primarily for 'Legal', 'Quick Links' is H2 */
    font-size: 1.2rem;
    color: var(--color-white-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hide navigation on smaller screens for simplicity (no hamburger menu requested) */
    }

    .main-nav {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description-as-h2 {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .secondary-cta {
        margin-left: 10px;
        margin-top: 15px;
    }

    .glass-panel {
        padding: 30px;
        margin: 40px auto;
    }

    .process-grid,
    .services-grid,
    .success-stories-grid,
    .case-study-grid,
    .testimonial-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Allow 2 cards on medium screens if possible, or stack */
        gap: 25px;
    }

    .tab-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .tab-panel-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-section .section-title {
        font-size: 2.5rem;
    }

    .cta-section .section-description {
        font-size: 1.1rem;
    }

    .cta-button {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }

    .secondary-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .process-grid,
    .services-grid,
    .success-stories-grid,
    .case-study-grid,
    .testimonial-grid,
    .team-grid {
        grid-template-columns: 1fr; /* Stack to 1 column on mobile */
        gap: 20px;
    }

    .glass-panel {
        padding: 20px;
        margin: 30px auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand, .footer-nav, .footer-legal {
        margin-bottom: 20px;
    }

    .footer-nav ul, .footer-legal ul {
        padding: 0;
        margin: 0;
    }

    .footer-nav li, .footer-legal li {
        display: inline-block;
        margin: 0 10px 10px;
    }

    .footer-brand .logo {
        display: inline-block;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Enhanced: Team grid stabilization */
+ .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
+ @media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
+ @media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* Enhanced: Missing animation classes from JS */
.animate-on-scroll {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Accessibility focus outlines */
:focus{outline:2px solid #5ac8fa;outline-offset:2px;}
:focus:not(:focus-visible){outline:none;}
