/* ==========================================================================
   HiFiData Website - Premium Design System (Modern & Elegant Redo)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");

:root {
    /* Brand Color Palette */
    --primary-dark: #0f172a; /* Deep Slate / Dark Navy */
    --primary-blue: #1e3a8a; /* Classic Deep Blue */
    --accent-blue: #2563eb; /* Vibrant Royal Blue */
    --accent-blue-light: #60a5fa; /* Electric Light Blue */
    --accent-yellow: #f59e0b; /* Warm Gold/Amber */

    /* Backgrounds & Text */
    --bg-light: #f8fafc; /* Light Slate Gray */
    --bg-card-light: #ffffff;
    --text-dark: #0f172a; /* Slate Dark */
    --text-gray: #475569; /* Medium Slate */
    --text-light: #f8fafc;
    --footer-bg: #0b0f19;

    /* Borders & Accents */
    --border-color: #e2e8f0; /* Light border */
    --glow-color: rgba(37, 99, 235, 0.15);

    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", "Open Sans", sans-serif;

    /* Animation & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 6px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

a {
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Navbar (Frosted Glass Effect)
   ========================================================================== */

.navbar-hifidata {
    background-color: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
    transition: var(--transition-smooth);
}

.navbar-hifidata .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 !important;
    text-decoration: none;
}

.navbar-hifidata .navbar-brand .brand-icon {
    height: 36px;
    width: 36px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.navbar-hifidata .navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-hifidata .navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.navbar-hifidata .navbar-brand .brand-slogan {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: #5eead4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.navbar-hifidata .navbar-brand:hover .brand-icon {
    box-shadow: 0 0 12px rgba(94, 234, 212, 0.35);
    transform: scale(1.05);
}

.navbar-hifidata .navbar-brand:hover .brand-name {
    color: #99f6e4;
}

.navbar-hifidata .navbar-brand:hover .brand-slogan {
    color: #99f6e4;
}

.navbar-hifidata .navbar-nav .nav-link {
    color: rgba(248, 250, 252, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm);
}

.navbar-hifidata .navbar-nav .nav-link:hover,
.navbar-hifidata .navbar-nav .nav-link.active {
    color: var(--accent-blue-light) !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-hifidata .dropdown-menu {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 0.5rem;
    margin-top: 8px !important;
}

.navbar-hifidata .dropdown-item {
    color: rgba(248, 250, 252, 0.9);
    border-radius: var(--border-radius-sm);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.navbar-hifidata .dropdown-item:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
}

.navbar-hifidata .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
}

.navbar-hifidata .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(248, 250, 252, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (min-width: 992px) {
    .navbar-hifidata .dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeInSlideUp 0.3s forwards;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background:
        radial-gradient(
            ellipse 80% 60% at 50% 40%,
            rgba(37, 99, 235, 0.15),
            transparent
        ),
        radial-gradient(
            circle at top right,
            rgba(37, 99, 235, 0.08),
            transparent 50%
        ),
        linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: var(--text-light);
    padding: 6rem 0 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(15, 23, 42, 0.5));
    pointer-events: none;
}

/* Decorative accent line under hero */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-blue-light),
        transparent
    );
    border-radius: 2px;
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.hero-headline span.txt-highLight-blue {
    background: linear-gradient(
        135deg,
        var(--accent-blue-light) 0%,
        #818cf8 50%,
        #3b82f6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.25));
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Interactive Slogan Carousel styling */
.slogan-carousel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem auto;
    max-width: 720px;
}

.slogan-carousel-body {
    flex: 1;
    min-width: 0;
}

.slogan-arrow {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(248, 250, 252, 0.5);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0;
}

.slogan-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-blue-light);
    border-color: rgba(96, 165, 250, 0.25);
    transform: scale(1.08);
}

.slogan-arrow:active {
    transform: scale(0.95);
}

.animated-text-container {
    padding: 1.1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    height: 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.animated-text-container:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(96, 165, 250, 0.15);
}

.animated-text-item {
    font-size: 1.05rem;
    font-weight: 500;
    color: #e2e8f0;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(-100%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

/* Slide in from left (active) */
.animated-text-item.active {
    opacity: 1;
    transform: translateX(0);
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease;
}

/* Slide out to the right (exit) */
.animated-text-item.exit-right {
    opacity: 0;
    transform: translateX(100%);
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease;
}

/* Slide out to the left (reverse exit for prev arrow) */
.animated-text-item.exit-left {
    opacity: 0;
    transform: translateX(-100%);
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.5s ease;
}

/* Indicator dots */
.slogan-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.6rem;
}

.slogan-indicator {
    width: 24px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.slogan-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slogan-indicator.active {
    background: var(--accent-blue-light);
    width: 36px;
    box-shadow: 0 0 6px rgba(96, 165, 250, 0.3);
}

.hero-cta.mt-4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem !important;
}

.hero-cta .me-3 {
    margin-right: 0 !important;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.page-header {
    background:
        radial-gradient(
            circle at bottom left,
            rgba(30, 58, 138, 0.4),
            transparent
        ),
        linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.page-header .lead {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0.5rem auto 0 auto;
}

/* ==========================================================================
   Services & Value Cards
   ========================================================================== */

.section-title {
    font-size: 2.25rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-card-light);
    border-radius: var(--border-radius-lg);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.25);
}

/* Value Cards */
.value-card {
    border-top: 4px solid var(--accent-blue-light);
}

.card-icon {
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition-smooth);
}

.card:hover .card-icon {
    background: var(--accent-blue);
    color: #ffffff !important;
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    padding: 1.5rem 1rem;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.card:hover .service-icon {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.card:hover .service-icon i {
    color: #ffffff !important;
}

/* Product Preview Cards */
.product-preview-card {
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
}

.product-preview-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ==========================================================================
   Products Detail Section
   ========================================================================== */

.product-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.product-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Anchor scroll offset for sticky navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* Tab button improvements */
.product-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.product-tabs .btn {
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.product-tabs .btn[aria-expanded="true"] {
    background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        var(--primary-blue) 100%
    ) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Accordion layout within product section */
.accordion-group .collapse.show,
.accordion-group .collapsing {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-top: 1rem;
}

.accordion-group .card {
    box-shadow: none;
    border: none;
}

.accordion-group .card:hover {
    transform: none;
    box-shadow: none;
}

.accordion-group .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.accordion-group ul {
    padding-left: 1.25rem;
}

.accordion-group li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Knowledge Base
   ========================================================================== */

.search-container {
    max-width: 550px;
    margin: 1.5rem auto 0 auto;
}

.search-container .input-group {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    overflow: hidden;
    padding: 4px;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.search-container .input-group:focus-within {
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.search-container input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-container input:focus {
    background: transparent;
    box-shadow: none;
    color: #ffffff;
}

.search-container .btn {
    border-radius: 40px !important;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
}

.filter-section {
    border-bottom: 1px solid var(--border-color);
    background: #ffffff !important;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-section .btn-group .btn {
    border-radius: 30px !important;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    margin: 0 0.25rem;
}

.filter-section .btn-outline-primary {
    color: var(--accent-blue) !important;
    border-color: var(--border-color) !important;
    background-color: transparent !important;
    transition: var(--transition-smooth);
}

.filter-section .btn-outline-primary:hover,
.filter-section .btn-outline-primary.active {
    background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        var(--primary-blue) 100%
    ) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.resource-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.wh-category-title-icon {
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

.wh-item-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.wh-item-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.wh-item-title a:hover {
    color: var(--accent-blue);
}

.wh-item-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0.75rem 0 1.25rem 0;
}

.wh-futher-reading-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.wh-futher-reading-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.wh-futher-reading-list li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
}

.wh-futher-reading-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue-light);
}

.wh-futher-reading-list a {
    color: var(--text-gray);
    text-decoration: none;
}

.wh-futher-reading-list a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */

.pricing-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pricing-icon {
    font-size: 3.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.value-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-form-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.contact-info-container {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.contact-info-container h3 {
    color: #ffffff;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--accent-blue-light);
}

.contact-details a {
    color: #94a3b8;
}

.contact-details a:hover {
    color: #ffffff;
}

/* Form control styling */
.form-control {
    border-radius: var(--border-radius-sm);
    padding: 0.65rem 1rem;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px var(--glow-color);
}

/* PDF download button icon */
.pdf-btn-icon {
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin-left: 0.35rem;
    display: inline-block;
    position: relative;
    top: -1px;
}

/* ==========================================================================
   Buttons (Modern Pills with Soft Shadows)
   ========================================================================== */

.btn-hifi-data,
.btn-hifi-data:hover {
    background: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        var(--primary-blue) 100%
    ) !important;
    border: none !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn-hifi-data:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
}

.btn-hifi-data-blue,
.btn-hifi-data-blue:hover {
    background: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 30px !important;
    color: var(--text-dark) !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.btn-hifi-data-blue:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.btn-sm {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.8rem !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background-color: var(--footer-bg);
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

footer img.footer-logo {
    height: 30px;
    width: auto;
    margin-right: 8px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
}

footer .copy-right {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2rem;
}

/* Knowledge Base Section Rows - Equal Height */
.kb-section-group .row.equal-height-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
}

@media (min-width: 992px) {
    .kb-section-group .row.equal-height-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.kb-section-group .row.equal-height-row > [class*="col-"] {
    display: flex;
    width: 100%;
    padding: 0;
}

/* ==========================================================================
   Knowledge Base Search Section
   ========================================================================== */

/* Search Container */
.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-box-group {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-box-group .input-group-text {
    background-color: #ffffff;
    border-right: none;
    padding: 0.75rem 1rem;
}

.search-box-group .search-icon {
    background-color: transparent;
    color: #9ca3af;
    font-size: 0.95rem;
    border: none;
    padding: 0 0.75rem;
}

.search-box-group .form-control {
    border-left: none;
    border-right: none;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
}

.search-box-group .form-control:focus {
    box-shadow: none;
}

.search-box-group .btn-hifi-data {
    border-left: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.search-hint {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================================================
   Knowledge Base Section Groups
   ========================================================================== */

.kb-section-group {
    scroll-margin-top: 80px;
    transition: all 0.3s ease;
}

.kb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 0;
    user-select: none;
    transition: all 0.2s ease;
}

.kb-section-header:hover {
    opacity: 0.8;
}

.kb-section-header:hover .kb-section-toggle {
    transform: scale(1.1);
}

.kb-section-title-wrapper {
    flex: 1;
}

.kb-section-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.kb-section-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 0;
}

.kb-section-header:hover .kb-section-toggle::before {
    width: 100%;
    height: 100%;
}

.kb-section-toggle i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.kb-section-header:hover .kb-section-toggle {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.kb-section-header:hover .kb-section-toggle i {
    color: #ffffff;
}

.kb-section-group.collapsed .kb-section-toggle {
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

.kb-section-group.collapsed .kb-section-toggle i {
    transform: rotate(-90deg);
    color: #ffffff;
}

.kb-section-group.collapsed .kb-section-toggle::before {
    width: 100%;
    height: 100%;
}

.kb-section-content {
    max-height: 5000px;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
    opacity: 1;
}

.kb-section-group.collapsed .kb-section-content {
    max-height: 0 !important;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    pointer-events: none;
}

.kb-section-count {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2em 0.6em;
    background-color: var(--accent-blue);
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

/* Expand/Collapse All controls */
.kb-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.kb-control-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kb-control-btn:hover {
    border-color: var(--accent-blue);
    background-color: #f0f9ff;
    color: var(--accent-blue);
}

.kb-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.kb-section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 0;
    font-weight: 400;
}

/* Section-specific icon colors (muted, professional) */
#section-effectdemos .icon-square i {
    color: #8b5cf6; /* Muted purple */
}

#section-whitepapers .icon-square i {
    color: #3b82f6; /* Muted blue */
}

#section-usecases .icon-square i {
    color: #10b981; /* Muted emerald green */
}

#section-blogs .icon-square i {
    color: #f59e0b; /* Muted amber */
}

#section-podcasts .icon-square i {
    color: #ec4899; /* Muted rose/pink */
}

/* Search highlight styling */
.search-highlight {
    background-color: #fef08a; /* Soft yellow */
    padding: 0.1em 0.2em;
    border-radius: 2px;
    font-weight: 600;
}

/* Section match badge */
.section-match-badge {
    display: inline-block;
    margin-left: 0.5em;
    padding: 0.2em 0.6em;
    background-color: var(--accent-blue);
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

/* Dynamic section filter buttons - Two-row layout with badge style */
#sectionFilterButtons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.kb-filter-main-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.kb-submenu-btn[data-filter="all"] {
    padding: 0.45rem 1.1rem;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.kb-submenu-btn[data-filter="all"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.kb-submenu-btn[data-filter="all"].active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 3px 8px rgba(59, 130, 246, 0.35);
}

.kb-filter-count {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}

.kb-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
}

/* Responsive: wrap on smaller screens */
@media (max-width: 768px) {
    .kb-filter-pills {
        flex-wrap: wrap;
    }
}

.kb-submenu-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid;
    background-color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

.kb-submenu-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.kb-submenu-badge.active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.kb-badge-icon {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Section-specific colors */
.kb-submenu-badge[data-filter="whitepapers"] {
    border-color: #bfdbfe;
    background-color: #eff6ff;
    color: #2563eb;
}

.kb-submenu-badge[data-filter="whitepapers"] .kb-badge-icon {
    background-color: #3b82f6;
}

.kb-submenu-badge[data-filter="whitepapers"]:hover,
.kb-submenu-badge[data-filter="whitepapers"].active {
    border-color: #3b82f6;
    background-color: #dbeafe;
    color: #1e40af;
}

.kb-submenu-badge[data-filter="usecases"] {
    border-color: #a7f3d0;
    background-color: #ecfdf5;
    color: #059669;
}

.kb-submenu-badge[data-filter="usecases"] .kb-badge-icon {
    background-color: #10b981;
}

.kb-submenu-badge[data-filter="usecases"]:hover,
.kb-submenu-badge[data-filter="usecases"].active {
    border-color: #10b981;
    background-color: #d1fae5;
    color: #047857;
}

.kb-submenu-badge[data-filter="blogs"] {
    border-color: #fde68a;
    background-color: #fffbeb;
    color: #d97706;
}

.kb-submenu-badge[data-filter="blogs"] .kb-badge-icon {
    background-color: #f59e0b;
}

.kb-submenu-badge[data-filter="blogs"]:hover,
.kb-submenu-badge[data-filter="blogs"].active {
    border-color: #f59e0b;
    background-color: #fef3c7;
    color: #b45309;
}

.kb-submenu-badge[data-filter="podcasts"] {
    border-color: #fbcfe8;
    background-color: #fdf2f8;
    color: #db2777;
}

.kb-submenu-badge[data-filter="podcasts"] .kb-badge-icon {
    background-color: #ec4899;
}

.kb-submenu-badge[data-filter="podcasts"]:hover,
.kb-submenu-badge[data-filter="podcasts"].active {
    border-color: #ec4899;
    background-color: #fce7f3;
    color: #be185d;
}

.kb-submenu-badge[data-filter="effectdemos"] {
    border-color: #ddd6fe;
    background-color: #f5f3ff;
    color: #7c3aed;
}

.kb-submenu-badge[data-filter="effectdemos"] .kb-badge-icon {
    background-color: #8b5cf6;
}

.kb-submenu-badge[data-filter="effectdemos"]:hover,
.kb-submenu-badge[data-filter="effectdemos"].active {
    border-color: #8b5cf6;
    background-color: #ede9fe;
    color: #6d28d9;
}

/* ==========================================================================
   Product Page
   ========================================================================== */

.product-nav-section {
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.product-nav-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-nav-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    background-color: #ffffff;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-nav-btn:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.product-section {
    scroll-margin-top: 350px;
    padding: 2rem 0;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px; /* Slightly larger border-radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Softer initial shadow */
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
}

.feature-card:hover {
    transform: translateY(-8px); /* More pronounced lift effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.feature-card .icon {
    font-size: 3rem; /* Large icon size */
    color: var(--bs-primary); /* Use primary brand color for icon */
    margin-bottom: 20px; /* Space below icon */
}

.feature-card h5 {
    color: var(--bs-dark); /* Use dark color for heading */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--bs-secondary);
    font-size: 0.95rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Tabs */
.product-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.product-tabs .nav-link {
    border: none;
    color: var(--text-gray);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.product-tabs .nav-link:hover {
    color: var(--accent-blue);
    border-bottom-color: #bfdbfe;
}

.product-tabs .nav-link.active {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
    background-color: transparent;
}

.tab-icon-challenges {
    color: #ef4444 !important;
}
.tab-icon-solutions {
    color: #22c55e !important;
}
.tab-icon-benefits {
    color: #f59e0b !important;
}
.tab-icon-usecases {
    color: #3b82f6 !important;
}

.product-tab-content {
    padding: 1.5rem 0;
}

.product-tab-content ul {
    padding-left: 1.5rem;
}

.product-tab-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.product-tab-content li strong {
    color: var(--text-dark);
}

.use-case-item {
    padding: 1rem;
    background-color: #f9fafb;
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.use-case-header {
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    user-select: none;
}

.use-case-header:hover {
    background-color: #e5e7eb;
}

.use-case-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.use-case-chevron {
    font-size: 1.2rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.use-case-header[aria-expanded="true"] .use-case-chevron {
    transform: rotate(180deg);
}

.use-case-content {
    padding: 0.5rem 1rem 1rem 1rem;
    line-height: 1.7;
}

.use-case-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.use-case-content p:last-child {
    margin-bottom: 0;
}

.use-case-intro {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Search Highlight */
.search-highlight {
    background-color: #fef08a;
    color: inherit;
    padding: 0.1em 0.2em;
    border-radius: 2px;
    font-weight: 600;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Pdiver Effect Lightbox
   ========================================================================== */

.pdiver-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.pdiver-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.pdiver-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pdiver-lightbox-content {
    position: relative;
    background: var(--bg-card-light);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    max-width: 900px;
    width: 94%;
    max-height: 92vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.pdiver-lightbox.open .pdiver-lightbox-content {
    transform: scale(1) translateY(0);
}

/* Responsive lightbox sizing */
@media (min-width: 576px) {
    .pdiver-lightbox-content {
        padding: 2rem;
        width: 90%;
    }
}

@media (min-width: 768px) {
    .pdiver-lightbox-content {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .pdiver-lightbox-content {
        max-width: 860px;
    }
}

@media (min-width: 1200px) {
    .pdiver-lightbox-content {
        max-width: 960px;
    }
}

.pdiver-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    padding: 0;
}

.pdiver-lightbox-close:hover {
    background: rgba(15, 23, 42, 0.12);
    color: var(--text-dark);
    transform: scale(1.1);
}

.pdiver-lightbox-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

/* Theme toggle buttons (background color picker) */
.pdiver-lightbox-theme-toggle {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pdiver-theme-btn {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pdiver-theme-btn:hover {
    background: rgba(15, 23, 42, 0.1);
    color: var(--text-dark);
}

.pdiver-theme-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.pdiver-lightbox-img-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    background: var(--primary-dark);
    text-align: center;
    transition: background-color 0.3s ease;
}

.pdiver-lightbox-img-wrapper img {
    width: 100%;
    height: auto;
    transition: mix-blend-mode 0.3s ease;
}

.pdiver-lightbox-caption {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* ==========================================================================
   Outline Button (for hero CTA)
   ========================================================================== */

.btn-hifi-data-outline,
.btn-hifi-data-outline:hover {
    background: transparent !important;
    border: 1px solid rgba(96, 165, 250, 0.5) !important;
    border-radius: 30px !important;
    color: var(--accent-blue-light) !important;
    padding: 0.8rem 2.2rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: 0.01em;
}

.btn-hifi-data-outline:hover {
    background: rgba(96, 165, 250, 0.1) !important;
    border-color: var(--accent-blue-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.2);
}

/* ==========================================================================
   Hover Dropdown Menus (Desktop)
   ========================================================================== */

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDropdown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Knowledge Base Sub-Navigation & Redesign
   ========================================================================== */

.kb-submenu {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.kb-submenu-btn {
    border-radius: 30px !important;
    padding: 0.55rem 1.6rem !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: var(--transition-smooth) !important;
    border: 1px solid rgba(37, 99, 235, 0.15) !important;
    background-color: var(--bg-card-light) !important;
    color: var(--text-gray) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.kb-submenu-btn:hover {
    background-color: rgba(37, 99, 235, 0.04) !important;
    color: var(--accent-blue) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.kb-submenu-btn.active {
    background-color: var(--accent-blue) !important;
    color: #ffffff !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
}

/* Separator styling in Navbar Dropdown */
.navbar-hifidata .dropdown-menu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0.5rem 0;
}

/* Coming Soon badge */
.badge-kb-coming-soon {
    background-color: rgba(71, 85, 105, 0.1);
    color: var(--text-gray);
    border: 1px solid rgba(71, 85, 105, 0.2);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Cards on KB page styles */
.resource-card {
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-card-light);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.15);
}

.required-mark {
    font-size: 0.8rem;
    color: red;
}

.pdiver-title {
    font-family: "Montserrat", sans-serif !important;
}
