/* =========================================
   INDZU NAVBAR — navbar.css
   All classes prefixed "indzu-" to avoid
   conflicts with Bootstrap or any existing
   theme styles on the page.
   ========================================= */

/* ── CSS Variables ──────────────────────── */
:root {
    --indzu-primary-gradient : linear-gradient(135deg, #9333ea, #db2777);
    --indzu-secondary-gradient: linear-gradient(to right, #9333ea, #db2777);
    --indzu-bg-glass         : rgba(255, 255, 255, 0.88);
    --indzu-border           : rgba(229, 231, 235, 0.55);
    --indzu-text-mid         : #374151;
    --indzu-text-dark        : #111827;
    --indzu-purple           : #7c3aed;
    --indzu-purple-hover     : #6d28d9;
    --indzu-max-w            : 1280px;
    --indzu-h                : 70px;   /* navbar height */
}

/* ── Slide-in animation ─────────────────── */
@keyframes indzu-slide-down {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
@keyframes indzu-mobile-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes indzu-acc-open {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Navbar shell ───────────────────────── */
.indzu-navbar {
    position : fixed;
    top      : 0;
    left     : 0;
    right    : 0;
    z-index  : 1050;               /* above Bootstrap fixed-top (1030) */
    height   : var(--indzu-h);
    background        : var(--indzu-bg-glass);
    backdrop-filter   : blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom     : 1px solid var(--indzu-border);
    display    : flex;
    align-items: center;
    animation  : indzu-slide-down 0.55s ease-out forwards;
    transition : box-shadow 0.3s ease, border-color 0.3s ease;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Inner container ────────────────────── */
.indzu-nav-container {
    max-width: var(--indzu-max-w);
    margin   : 0 auto;
    width    : 100%;
    padding  : 0 16px;
    display  : flex;
    justify-content: space-between;
    align-items    : center;
    gap            : 16px;
}
@media (min-width: 640px)  { .indzu-nav-container { padding: 0 24px; } }
@media (min-width: 1024px) { .indzu-nav-container { padding: 0 32px; } }

/* ── Logo ───────────────────────────────── */
.indzu-logo-section {
    display    : flex;
    align-items: center;
    gap        : 8px;
    text-decoration: none;
    flex-shrink: 0;
    transition : transform 0.2s ease;
}
.indzu-logo-section:hover  { transform: scale(1.04); }
.indzu-logo-section:active { transform: scale(0.96); }
.indzu-logo-section img    { display: block; }

/* ── Desktop nav list ───────────────────── */
.indzu-desktop-nav {
    list-style: none;
    margin    : 0;
    padding   : 0;
    display   : none;
    align-items: center;
    gap        : 28px;
}
@media (min-width: 768px) { .indzu-desktop-nav { display: flex; } }

.indzu-nav-item {
    position   : relative;
    display    : flex;
    align-items: center;
    height     : var(--indzu-h);
}

/* ── Nav links ──────────────────────────── */
.indzu-nav-link {
    text-decoration: none;
    color      : var(--indzu-text-mid);
    font-weight: 500;
    font-size  : 15px;
    line-height: 1;
    cursor     : pointer;
    border     : none;
    background : none;
    padding    : 0;
    display    : flex;
    align-items: center;
    white-space: nowrap;
    transition : color 0.18s ease;
    font-family: inherit;
}
.indzu-nav-link:hover,
.indzu-nav-link.indzu-active {
    color: var(--indzu-purple);
}
/* underline indicator for active item */
.indzu-nav-link.indzu-active::after {
    content   : '';
    position  : absolute;
    bottom    : 12px;
    left      : 0;
    right     : 0;
    height    : 2px;
    background: var(--indzu-purple);
    border-radius: 1px;
}

/* ── Dropdown menu ──────────────────────── */
.indzu-dropdown-menu {
    position  : absolute;
    left      : 50%;
    top       : 100%;
    transform : translate(-50%, 12px);
    margin-top: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 48px -8px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.06);
    border    : 1px solid #e5e7eb;
    opacity   : 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    overflow  : hidden;
    z-index   : 200;
}
.indzu-dropdown:hover .indzu-dropdown-menu,
.indzu-dropdown-menu.indzu-open {
    opacity   : 1;
    visibility: visible;
    transform : translate(-50%, 0);
    pointer-events: auto;
}

.indzu-features-menu,
.indzu-platforms-menu { width: 780px; }
.indzu-resources-menu { width: 540px; }

/* keep dropdowns on screen near right edge */
@media (max-width: 900px) {
    .indzu-features-menu,
    .indzu-platforms-menu { width: calc(100vw - 32px); left: 16px; transform: none; }
    .indzu-resources-menu { width: calc(100vw - 32px); left: 16px; transform: none; }
    .indzu-dropdown:hover .indzu-dropdown-menu,
    .indzu-dropdown-menu.indzu-open { transform: none; }
}

/* ── Platform grid inside dropdown ─────── */
.indzu-platform-grid {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap    : 4px;
    padding: 16px;
}
.indzu-grid-2-columns { grid-template-columns: repeat(2, 1fr) !important; }

.indzu-platform-column {
    display       : flex;
    flex-direction: column;
}

.indzu-platform-item {
    display    : flex;
    align-items: flex-start;
    gap        : 10px;
    padding    : 10px;
    text-decoration: none;
    border-radius  : 10px;
    transition     : all 0.18s ease;
}
.indzu-platform-item:hover { transform: translateX(4px); }

.indzu-platform-icon-box {
    width    : 38px;
    height   : 38px;
    min-width: 38px;
    border-radius: 8px;
    display    : flex;
    align-items: center;
    justify-content: center;
    color      : white;
    flex-shrink: 0;
}
/*
  Icons are Font Awesome <i> elements.
  FA renders via ::before, so font-size controls size — not width/height.
*/
.indzu-platform-icon-box i {
    font-size  : 17px;
    line-height: 1;
    color      : #ffffff !important;
    display    : block;
    text-align : center;
    width      : auto;
    height     : auto;
}
/* Mobile accordion chevron — FA icon */
.indzu-acc-icon {
    display    : inline-block;
    font-size  : 14px;
    color      : #6b7280;
    transition : transform 0.3s ease;
    flex-shrink: 0;
}
.indzu-mobile-accordion-trigger[aria-expanded="true"] .indzu-acc-icon {
    transform: rotate(180deg);
}
/* Mobile sub-link icon */
.indzu-sub-icon {
    font-size  : 13px;
    color      : #7c3aed;
    flex-shrink: 0;
}

.indzu-platform-info {
    display       : flex;
    flex-direction: column;
    gap           : 2px;
}
.indzu-platform-title {
    font-size  : 13px;
    font-weight: 700;
    color      : var(--indzu-text-dark);
    line-height: 1.3;
}
.indzu-platform-desc {
    font-size  : 11px;
    color      : #4b5563;
    line-height: 1.4;
    margin     : 0;
}

/* ── Icon bg colours ────────────────────── */
.indzu-bg-instagram  { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.indzu-bg-facebook   { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.indzu-bg-x          { background: linear-gradient(135deg, #0f0f0f, #1f2937); }
.indzu-bg-linkedin   { background: linear-gradient(135deg, #0a66c2, #1d4ed8); }
.indzu-bg-youtube    { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.indzu-bg-pinterest  { background: linear-gradient(135deg, #ef4444, #dc2626); }
.indzu-bg-tiktok     { background: linear-gradient(135deg, #1f2937, #111827); }
.indzu-bg-gmb        { background: linear-gradient(135deg, #22c55e, #059669); }
.indzu-bg-threads    { background: linear-gradient(135deg, #9333ea, #ec4899); }
.indzu-bg-blue-500   { background: #3b82f6; }
.indzu-bg-blue-600   { background: #2563eb; }
.indzu-bg-purple-500 { background: #a855f7; }
.indzu-bg-green-500  { background: #22c55e; }
.indzu-bg-emerald-500{ background: #10b981; }
.indzu-bg-orange-500 { background: #f97316; }
.indzu-bg-indigo-500 { background: #6366f1; }
.indzu-bg-pink-500   { background: #ec4899; }
.indzu-bg-teal-500   { background: #14b8a6; }

/* ── Hover tint per platform ────────────── */
.indzu-platform-item.indzu-hover-blue:hover        { background: #eff6ff; }
.indzu-platform-item.indzu-hover-blue-alt:hover    { background: #eff6ff; }
.indzu-platform-item.indzu-hover-purple:hover      { background: #faf5ff; }
.indzu-platform-item.indzu-hover-purple-alt:hover  { background: #faf5ff; }
.indzu-platform-item.indzu-hover-sky:hover         { background: #f0f9ff; }
.indzu-platform-item.indzu-hover-red:hover         { background: #fef2f2; }
.indzu-platform-item.indzu-hover-pink:hover        { background: #fdf2f8; }
.indzu-platform-item.indzu-hover-pink-alt:hover    { background: #fdf2f8; }
.indzu-platform-item.indzu-hover-orange:hover      { background: #fff7ed; }
.indzu-platform-item.indzu-hover-green:hover       { background: #f0fdf4; }
.indzu-platform-item.indzu-hover-indigo:hover      { background: #eef2ff; }
.indzu-platform-item.indzu-hover-teal:hover        { background: #f0fdfa; }

/* ── Nav action buttons ─────────────────── */
.indzu-nav-actions {
    display    : none;
    align-items: center;
    gap        : 10px;
    flex-shrink: 0;
}
@media (min-width: 768px) { .indzu-nav-actions { display: flex; } }

.indzu-btn {
    padding        : 9px 20px;
    border-radius  : 9999px;
    font-size      : 14px;
    font-weight    : 600;
    cursor         : pointer;
    transition     : all 0.18s ease;
    border         : none;
    white-space    : nowrap;
    text-decoration: none;
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    font-family    : inherit;
    line-height    : 1;
}
.indzu-btn-ghost {
    background: transparent;
    color     : var(--indzu-text-mid);
}
.indzu-btn-ghost:hover {
    background: #f3f4f6;
    color     : var(--indzu-text-dark);
}
.indzu-btn-primary {
    background: var(--indzu-purple);
    color     : #fff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(124,58,237,0.28);
}
.indzu-btn-primary:hover {
    background: var(--indzu-purple-hover);
    color     : #fff;
    box-shadow: 0 6px 20px rgba(124,58,237,0.42);
}

/* ── Hamburger button ───────────────────── */
.indzu-mobile-toggle {
    display    : flex;
    align-items: center;
    justify-content: center;
    background : none;
    border     : none;
    padding    : 6px;
    cursor     : pointer;
    flex-shrink: 0;
}
@media (min-width: 768px) { .indzu-mobile-toggle { display: none; } }

.indzu-hamburger {
    display : inline-block;
    width   : 24px;
    position: relative;
}
.indzu-hamburger span {
    display      : block;
    width        : 24px;
    height       : 2.5px;
    background   : #1e293b;
    border-radius: 2px;
    margin       : 5px 0;
    transition   : transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* open state → X */
.indzu-mobile-toggle[aria-expanded="true"] .indzu-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.indzu-mobile-toggle[aria-expanded="true"] .indzu-hamburger span:nth-child(2) {
    opacity  : 0;
    transform: translateX(10px);
}
.indzu-mobile-toggle[aria-expanded="true"] .indzu-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ── Mobile menu panel ──────────────────── */
.indzu-mobile-menu {
    position  : absolute;
    top       : var(--indzu-h);
    left      : 0;
    right     : 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow   : 0 8px 28px rgba(0,0,0,0.09);
    display   : none;
    overflow  : hidden;
    z-index   : 1049;
}
.indzu-mobile-menu.indzu-open {
    display  : block;
    animation: indzu-mobile-in 0.28s ease-out forwards;
}

.indzu-mobile-menu-inner {
    padding       : 16px 20px 24px;
    display       : flex;
    flex-direction: column;
    gap           : 2px;
    border-top    : 1px solid #f1f5f9;
}

/* flat links */
.indzu-mobile-link {
    display        : block;
    text-decoration: none;
    color          : var(--indzu-text-mid);
    font-weight    : 500;
    font-size      : 15px;
    padding        : 11px 4px;
    border-bottom  : 1px solid #f1f5f9;
    transition     : color 0.18s ease;
}
.indzu-mobile-link:hover { color: var(--indzu-purple); }

/* ── Mobile accordion (Resources) ────────── */
.indzu-mobile-accordion {
    border-bottom: 1px solid #f1f5f9;
}

.indzu-mobile-accordion-trigger {
    width          : 100%;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    background     : none;
    border         : none;
    padding        : 11px 4px;
    font-size      : 15px;
    font-weight    : 500;
    color          : var(--indzu-text-mid);
    cursor         : pointer;
    font-family    : inherit;
    text-align     : left;
    transition     : color 0.18s ease;
}
.indzu-mobile-accordion-trigger:hover { color: var(--indzu-purple); }

.indzu-acc-icon {
    width     : 16px;
    height    : 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.indzu-mobile-accordion-trigger[aria-expanded="true"] .indzu-acc-icon {
    transform: rotate(180deg);
}
.indzu-mobile-accordion-trigger[aria-expanded="true"] {
    color: var(--indzu-purple);
}

.indzu-mobile-accordion-body {
    display       : none;
    flex-direction: column;
    padding       : 4px 0 10px 16px;
    gap           : 2px;
    animation     : indzu-acc-open 0.22s ease-out forwards;
}
.indzu-mobile-accordion-body.indzu-open { display: flex; }

.indzu-mobile-sub-link {
    display        : block;
    text-decoration: none;
    color          : #4b5563;
    font-size      : 14px;
    font-weight    : 500;
    padding        : 8px 4px;
    border-bottom  : 1px solid #f8fafc;
    transition     : color 0.18s ease;
}
.indzu-mobile-sub-link:hover { color: var(--indzu-purple); }

/* ── Mobile CTA ─────────────────────────── */
.indzu-mobile-cta {
    display       : flex;
    flex-direction: column;
    gap           : 10px;
    margin-top    : 16px;
    padding-top   : 16px;
    border-top    : 1px solid #e5e7eb;
}
.indzu-w-full { width: 100%; }

/* ── Utility ────────────────────────────── */
.indzu-hidden { display: none !important; }

/* ── Body offset (content not hidden under navbar) ── */
body { padding-top: var(--indzu-h) !important; }



/*Logo css */

/* Logo text styles */
.indzu-logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4d36ff;
  line-height: 1.2;
}
.indzu-logo-subtext {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 300;
}