html {
/* 	scroll-behavior: smooth; */
scroll-behavior: auto;
}

body
{
    background: #f9fafa !important;
}


/* BrandCat.dev theme extensions */
:root {
  --bcdev-hero-bg: #f9fafa;

  
  --bcdev-hero-text-color: #1e2d3d;
  --bcdev-hero-subtext-color: #2f4154;

  --bcdev-search-shadow: rgba(0,0,0,0.08);
  --bcdev-card-shadow: rgba(0,0,0,0.06);
  --bcdev-card-shadow-hover: rgba(0,0,0,0.10);

  --bcdev-pill-bg: #f0f3f5;
  --bcdev-pill-text: #354b61;
  
  --bc-link-color: #3a3a3a;
  
  --bc-action-color: #f6c445;  ;
  --bc-action-color-hover: #ffcf4f;  
  
  
  --bc-font-color: #1f1f1f;
}


.container
{
    background: #f9fafa;
}


a
{
  color: var(--bc-link-color);
}

a.top-menu-nav {
  text-decoration: none;
}

a.top-menu-nav:hover {
  text-decoration: none;
}



/* ---------------------------------------------------------
   Brandinium / BrandCat.dev – SaaS Landing Styling
   Cleaned & Deduplicated
---------------------------------------------------------- */


/* =========================================================
   ========== HERO SECTION ==========
========================================================= */

.bcdev-hero {
    padding: 120px 20px 40px;
    background-color: #f9fafa;
}

.bcdev-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--bcdev-hero-text-color);
}

.bcdev-hero-subtitle {
    font-size: 18px;
    color: var(--bcdev-hero-subtext-color);
    margin-bottom: 35px;
}

.bcdev-hero .lottie-hero {
    height: 200px;
}


/* =========================================================
   ========== SEARCH BAR ==========
========================================================= */

.bcdev-search-form {
    
    background: var(--bc-panel-bg-color);
    border-radius: 12px;
    padding: 8px;
    gap: 10px;
    box-shadow: 0 4px 15px var(--bcdev-search-shadow);
    
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 0 auto 32px auto;
    
}

.bcdev-main-page
{
    max-width: 680px;
}


.bcdev-search-input {
    border: none !important;
    font-size: 18px;
    padding-left: 16px;
    background: transparent;
    color: var(--bc-font-color);
}

.bcdev-search-input::placeholder {
    color: var(--bc-light-font-color);
}

.bcdev-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}


/* =========================================================
   ========== FILTER TOGGLE PILLS ==========
========================================================= */

.bcdev-filters {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.bcdev-pill {
    cursor: pointer;
    user-select: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f3f5;
    color: #333;
    transition: all 0.15s ease;
}

.bcdev-pill input {
    display: none;
}

.bcdev-pill.active {
    background: var(--bc-action-color);     /* BrandCat yellow */
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.bcdev-pill:hover {
    transform: translateY(-2px);
}


/* ================================================
   BrandCat.dev – Mini Yellow CTA Button
   (for toggle actions, like View Results)
=================================================== */

.bcdev-cta-mini {
    background: var(--bc-action-color);          /* BrandCat yellow */
    color: #1f1f1f;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition:
        background 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

.bcdev-cta-mini:hover {
    background: var(--bc-action-color-hover);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.bcdev-cta-mini:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.bcdev-cta-mini:disabled {
    background: #e8d08f;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}



/* =========================================================
   ========== STATIC DISPLAY PILLS (optional) ==========
========================================================= */

.bcdev-pill-row {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}


/* =========================================================
   ========== DATABASE SECTION ==========
========================================================= */

.bcdev-filter-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.bcdev-filter-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e2d3d;
}

.bcdev-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.bcdev-filter-group label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.bcdev-filter-group input {
    margin-right: 8px;
}

.bcdev-filter-group label.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* =========================================================
   ========== BUTTONS (BrandCat Yellow CTA) ==========
========================================================= */

/* Base reset */
.btn,
.bcdev-search-btn {
    border: none !important;
    outline: none !important;
    font-weight: 600;
    border-radius: 10px;
    transition:
        background 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

/* Primary */
.bcdev-search-btn,
.btn-primary {
    background: var(--bc-action-color);     /* #f6c445 */
    color: #1f1f1f;
    padding: 0.65rem 1.4rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Hover */
.bcdev-search-btn:hover,
.btn-primary:hover {
    background: var(--bc-action-color-hover); /* #ffcf4f */
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

/* Active */
.bcdev-search-btn:active,
.btn-primary:active {
    transform: translateY(1px);
    background: var(--bc-action-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* Focus */
.bcdev-search-btn:focus,
.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(255, 231, 150, 0.45);
}

/* Disabled */
.bcdev-search-btn:disabled,
.btn-primary:disabled {
    background: #e8d08f;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}






/* ============================================================
   Brandinium.com - HEADER LINK COLOR OVERRIDES
   ============================================================ */

.header_nav
{
    background: #f9fafa;
}

.header_nav .navbar-nav .nav-item a.top-menu-nav {
    color: var(--bc-link-color) !important;
    font-weight: 500;
    text-decoration: none;
    
}

.header_nav .navbar-nav .nav-item a.top-menu-nav:hover {
    color: var(--bc-link-color) !important;
    text-decoration: none;
}

/* For the BrandCat.io link in the menu */
.header_nav .navbar-nav .nav-item a strong {
    color: var(--bc-link-color) !important;
}


#footer a 
{ 
    color: var(--bc-link-color) !important; 
    text-decoration: none; font-weight: 500;     
} 

#footer a:hover 
{ 
    color: var(--bc-link-color) !important; t
    ext-decoration: underline; 
    
} /* Optional: footer section titles (h6) can be darker for contrast */ 

#footer h6 
{ 
    color: var(--bc-font-color); 
    font-weight: 700;     
}







/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:32:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-horizontal-bottom
 * ----------------------------------------
 */
@-webkit-keyframes flip-horizontal-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}
@keyframes flip-horizontal-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:34:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

.flip-horizontal-top {
	-webkit-animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}


.flip-horizontal-bottom 
{
	-webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

/**
 * ----------------------------------------
 * animation flip-horizontal-top
 * ----------------------------------------
 */
@-webkit-keyframes flip-horizontal-top {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}
@keyframes flip-horizontal-top {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}






.flip-2-hor-top-2 {
	-webkit-animation: flip-2-hor-top-2 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-2-hor-top-2 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}


/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:35:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-2-hor-top-2
 * ----------------------------------------
 */
@-webkit-keyframes flip-2-hor-top-2 {
  0% {
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) rotateX(180deg);
            transform: translateY(-100%) rotateX(180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
@keyframes flip-2-hor-top-2 {
  0% {
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) rotateX(180deg);
            transform: translateY(-100%) rotateX(180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}




.bcdev-social-footer a {
    display: inline-block;
    margin-right: 12px;
    font-size: 22px;
    color: #444;                 /* neutral grey */
    transition: color 0.15s ease, transform 0.15s ease;
}

.bcdev-social-footer a:hover {
    color: #f6c445;              /* BrandCat yellow highlight */
    transform: translateY(-2px); /* subtle lift */
}


.result-box h4 img {
    vertical-align: middle;
    margin-top: -3px;
}








/* Smooth slide-down section */
.bcdev-slide {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.bcdev-slide.open {
    max-height: 2000px; /* high enough to handle results */
    opacity: 1;
}

/* Arrow rotation */
.bcdev-toggle-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.bcdev-toggle-arrow.open {
    transform: rotate(180deg);
}

/* Light pill-style info badge */
.bcdev-pill-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.75rem;
    background: var(--bcdev-pill-bg);
    color: var(--bcdev-pill-text);
    border-radius: 10px;
    margin-left: 8px;
}



.bcdev-toggle-hint {
    font-size: 0.95rem;           /* bigger */
    color: #2f4154;               /* hero-subtext color */
    font-weight: 500;             /* more visible */
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}
.bcdev-toggle-hint .arrow {
    font-size: 1rem;
}



/* Pill used for expand/collapse hint */
.bcdev-pill-hint {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.78rem;
    background: var(--bcdev-pill-bg);
    color: var(--bcdev-pill-text);
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.bcdev-pill-hint:hover {
    background: #e2e5e8; /* slightly darker grey */
    transform: translateY(-1px);
}



.bcdev-toggle-header {
    padding: 10px 0;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.bcdev-toggle-header:hover {
    background-color: rgba(0, 0, 0, 0.03); /* ultra-light tint */
}



.bcdev-hover-panel {
    transition: background-color 0.2s ease;
    border-radius: 12px; /* matches your design */
    cursor: pointer;
}

.bcdev-hover-panel:hover {
    background-color: rgba(159,192,229, 0.08); /* light BrandCat sky-blue */
    cursor: pointer;
}


.bcdev-card-body
{
   cursor: default;
}




/* Default: collapsed mode → clickable */
.bcdev-collapsed {
    cursor: pointer;
}

.bcdev-collapsed:hover {
    background-color: rgba(159, 192, 229, 0.08); /* brand tint */
}

/* Expanded mode → NOT clickable */
.bcdev-expanded {
    cursor: default;
    background-color: transparent; /* remove hover effect */
}

/* Disable hover tint entirely in expanded mode */
.bcdev-expanded:hover {
    background-color: transparent;
    cursor: default;
}




.bcdev-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.04);
}


.bcdev-section:hover {
    box-shadow: 0px 10px 26px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s ease;
}


.bcdev-search-area 
{
    width: 100% !important;   /* guaranteed fix */
    display: block;
}



.bcdev-search-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid #dce2ea;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #fff;
    transition: border-color 0.2s ease;
     width: 100%;
    
}





.bcdev-stats-bar {
    margin-top: 1rem;
    margin-bottom: 2.2rem;   /* NEW: nice breathing space */
    padding: 10px 18px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    text-align: center;
    position: relative;
/*     display: inline-block; */

}

.bcdev-stat-item {
    position: relative;
    display: inline-block; /* REQUIRED for Hint.css inside flex environments */
    margin: 0 12px;
    white-space: nowrap;
    cursor: default;
}


.bcdev-stat-icon {
    font-weight: bold;
    margin-right: 4px;
}





.tm-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.tm-class-pill {
    display: inline-flex;
    align-items: center;

    /*background: var(--bc-action-color); */
    /*#f0f0f0*/;   /* soft blue */
    color: #111;        /* deep professional blue */
    
    border-radius: 6px;
    padding: 4px 10px;

    font-size: 13px;
    font-weight: bold;


    transition: background 0.15s ease;
    cursor: default;
}


.tm-class-code {
    font-weight: 700;
    margin-right: 6px;
    color: #0d3ea8;
}

.tm-class-title {
    font-weight: 500;
}



.tm-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tm-registered {
    background: #d4edda;
    color: #155724;
}

.tm-pending {
    background: #fff3cd;
    color: #856404;
}

.tm-dead {
    background: #f8d7da;
    color: #721c24;
}


.tm-details-btn {
    background: #2c3e50 !important;   /* deep gray-blue */
    color: #fff !important;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.tm-details-btn:hover {
    background: #1a252f;
    color: #fff !important;
}





.bcdev-copy-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: 6px;
    opacity: 0.5;
}

.bcdev-copy-btn:hover {
    opacity: 1;
}




.domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    background: white;
    transition: background 0.15s;
}

.domain-row:hover {
    background: #fafafa;
}

.domain-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-name {
    font-size: 16px;
    font-weight: 600;
}

.domain-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.domain-status.free {
    background: #d4f9d4;
    color: #1a8a1a;
}

.domain-status.taken {
    background: #ffd6d6;
    color: #bb3030;
}

.domain-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-copy, .btn-open {
    padding: 6px 10px;
    border: none;
    background: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
}

.btn-copy:hover, .btn-open:hover {
    background: #e5e5e5;
}




.status-icon {
    width: 22px;
    font-size: 16px;
    margin-right: 8px;
}

.status-icon.free {
    color: #28a745;
}

.status-icon.taken {
    color: #dc3545;
}




.social-grid {
    display: flex;
    flex-direction: column;
}

.social-item {
    background: #fff;
}

.social-icon {
    font-size: 1.4rem;
}

.status-taken {
    color: #c0392b;
    font-weight: 600;
}

.status-free {
    color: #27ae60;
    font-weight: 600;
}

.status-unknown {
    color: #999;
}



.brandcat-top-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    
    font-size: 14px;
    font-weight: 600;
    color: #222;
    
    text-decoration: none;
    opacity: 0.9;
}

.brandcat-top-cta:hover {
    color: #222;
    opacity: 1;
}

.brandcat-icon {
    width: 16px;
    height: 16px;
}


.start-monitoring {
    font-weight: 500;
    color: #1f6feb; /* subtle link blue */
}
.start-monitoring:hover {
    text-decoration: underline;
}



.bcdev-brandcat-banner {
    background: #fff7d6; /* soft BrandCat yellow */
    border: 1px solid #f1dc9b;
    border-radius: 10px;
    padding: 14px 18px;
}

.bcdev-brandcat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #f6c445;
    border: 1px solid #e6b93a;
    color: #000;
    font-weight: 600;

    border-radius: 8px;
    padding: 8px 14px;
    text-decoration: none;

    transition: background 0.15s ease,
                box-shadow 0.15s ease,
                transform 0.05s ease;
}

.bcdev-brandcat-btn:hover {
    background: #ffd766;
    color: #000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.bcdev-brandcat-btn:active {
    transform: translateY(1px);
}



/* Brandinium hero logo – responsive sizing */
.brandinium-hero-logo
{
    height: clamp(140px, 20vw, 260px);
    max-width: 100%;
}

/* Slightly smaller on typical laptops */
@media (max-width: 1366px)
{
    .brandinium-hero-logo
    {
        height: clamp(120px, 18vw, 220px);
    }

}

/* Laptop / HiDPI edge case (≈1600–1800px wide) */
@media (min-width: 1600px) and (max-width: 1800px)
{
    .brandinium-hero-logo
    {
        height: 210px;
    }
}


/* Tablets */
@media (max-width: 992px)
{
    .brandinium-hero-logo
    {
        height: 180px;
    }
}

/* Phones */
@media (max-width: 576px)
{
    .brandinium-hero-logo
    {
        height: 140px;
    }
}


/* Short viewport height safeguard */
@media (max-height: 660px)
{
    .brandinium-hero-logo
    {
        height: 160px;
    }

    .bcdev-hero
    {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .bcdev-hero-title
    {
        margin-top: 0.75rem;
    }
}


/* Short viewport height (laptops, browser chrome, zoom) */
@media (max-height: 700px)
{
    .bcdev-hero
    {
        padding: 0px 20px 30px;
    }
}


@media (max-height: 620px)
{
    .bcdev-hero
    {
        padding: 0px 16px 24px;
    }
}


/* Phones: remove decorative hero logo */
@media (max-width: 576px)
{
    .brandinium-hero-logo
    {
        display: none;
    }
    
    
}



/* Phones: remove decorative hero logo */
@media (max-width: 576px)
{
    .brandinium-hero-logo
    {
        display: none;
    }
    
    .bcdev-hero
    {
        padding: 00px 16px 24px;
    }
    
    
    .bcdev-hero-title
    {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    
}



.bcdev-doc-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bcdev-doc-intro {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.bcdev-doc h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 10px;
    color: #222;
}

.bcdev-doc p {
    line-height: 1.6;
    color: #333;
}

.bcdev-doc ul {
    padding-left: 18px;
    margin-top: 10px;
}

.bcdev-doc ul li {
    margin-bottom: 6px;
}

.bcdev-doc-note {
    margin-top: 30px;
    color: #555;
}

.bcdev-doc-back {
    margin-top: 50px;
}
