/*
Theme Name: SBS Knowledge Services
Theme URI: https://sbsknowledge.in/
Author: Educal
Description: Custom WordPress theme converted from Educal Next.js template for SBS Knowledge Services.
Version: 1.0.0
Text Domain: sbs-wp-theme
*/



/* Custom Courses Dropdown Button */
.cat-menu-custom {
    background-color: #1c4475 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
}

.cat-menu-custom:hover {
    background-color: #2c66a8 !important;
    box-shadow: 0px 4px 15px rgba(28, 68, 117, 0.25) !important;
    color: #ffffff !important;
}

/* Custom chevron rotation */
.cat-menu-custom .chevron-icon {
    transition: transform 0.3s ease;
}

.header__category ul li:hover .cat-menu-custom .chevron-icon {
    transform: rotate(180deg);
}

/*/* Improved Dropdown Menu & Animation Delay */
.cat-submenu-custom {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 320px !important;
    padding: 8px 0 !important;
    background: #ffffff;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    list-style: none;
}

/* Invisible hover bridge to eliminate gap */
.cat-submenu-custom::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
    display: block;
}

.header__category ul li:hover .cat-submenu-custom {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.cat-submenu-custom li {
    margin: 0 !important;
    padding: 0 !important;
}

.cat-submenu-custom li a {
    display: block !important;
    padding: 12px 22px !important;
    color: #0f172a !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.cat-submenu-custom li a:hover {
    background-color: #f8fafc !important;
    color: #0cae74 !important;
    padding-left: 28px !important;
}

/* Desktop Navigation Bar Courses Dropdown */
.nav-item-has-dropdown {
    position: relative;
}
.desktop-courses-nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -15px;
    min-width: 290px;
    background: #ffffff;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.desktop-courses-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
    display: block;
}
.nav-item-has-dropdown:hover .desktop-courses-nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.desktop-courses-nav-dropdown li {
    margin: 0;
    padding: 0;
}
.desktop-courses-nav-dropdown li a {
    display: block;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.desktop-courses-nav-dropdown li a:hover {
    background-color: #f8fafc;
    color: #0cae74;
    padding-left: 24px;
}
.desktop-courses-nav-dropdown li:last-child a {
    border-bottom: none;
}


.hero-custom-large-heading,
h1.hero-custom-large-heading {
  font-size: 48px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -1.2px !important;
  color: #0b1c30 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.hero-custom-large-heading .hero-gradient-text,
.hero-custom-large-heading span:not(.hero-live-mode) {
  background: linear-gradient(135deg, #1c4475 0%, #0cae74 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  vertical-align: middle !important;
  display: inline-block !important;
  font-weight: 900 !important;
  letter-spacing: -1.2px !important;
}

.hero-custom-large-heading .hero-live-mode,
.hero-custom-large-heading span.hero-live-mode {
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.5px !important;
  color: #0cae74 !important;
  display: inline-block !important;
  margin-top: 8px !important;
  white-space: normal !important;
}

/* Tablet & Mobile Screens (<= 991px) */
@media (max-width: 991px) {
  .hero-custom-large-heading,
  h1.hero-custom-large-heading {
    font-size: clamp(28px, 7.5vw, 36px) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  .hero-custom-large-heading span,
  .hero-custom-large-heading .hero-gradient-text,
  .hero-custom-large-heading span:not(.hero-live-mode) {
    font-size: clamp(28px, 7.5vw, 36px) !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    display: inline !important;
    letter-spacing: -0.5px !important;
  }
  .hero-custom-large-heading .hero-live-mode,
  .hero-custom-large-heading span.hero-live-mode {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    white-space: normal !important;
    display: inline-block !important;
    margin-top: 6px !important;
  }
  .hero-subheading-lead,
  .hero-left-content .subheading-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
  }
}


/* --- COURSE VISUALIZATIONS CSS --- */

        .premium-course-grid-section {
          overflow: hidden;
        }
        .course-grid-wrapper {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 28px;
        }

        .premium-course-card {
          position: relative;
          border-radius: 24px;
          padding: 32px 32px 28px 32px;
          min-height: 480px;
          display: flex;
          flex-direction: column;
          border: 1px solid rgba(15, 23, 42, 0.05);
          box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
          transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
          overflow: hidden;
        }

        .premium-course-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
          border-color: rgba(15, 23, 42, 0.12);
        }

        .premium-course-card:hover .v-card-inner {
          transform: translateY(-2px);
          box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
        }

        .premium-course-card:hover .v-floating-pill {
          transform: translateY(-3px);
        }

        .premium-course-card:hover .card-cta .arrow {
          transform: translateX(4px);
        }

        .card-grid-overlay {
          position: absolute;
          top: 0; left: 0; right: 0; bottom: 0;
          background-image: 
            linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
          background-size: 24px 24px;
          pointer-events: none;
          z-index: 1;
        }

        .card-content {
          position: relative;
          z-index: 2;
          display: flex;
          flex-direction: column;
          height: 100%;
        }

        .card-badge {
          display: inline-block;
          padding: 5px 12px;
          border-radius: 6px;
          font-size: 11px;
          font-weight: 750;
          letter-spacing: 0.08em;
          align-self: flex-start;
          font-family: 'Inter', sans-serif;
        }

        .card-title {
          font-family: 'Plus Jakarta Sans', sans-serif;
          font-size: 26px;
          font-weight: 800;
          line-height: 1.2;
          color: #0F172A;
        }

        .card-description {
          font-family: 'Inter', sans-serif;
          font-size: 14.5px;
          line-height: 1.55;
          color: #64748B;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          min-height: 44px;
        }

        .card-bottom {
          border-top: 1px solid rgba(15, 23, 42, 0.07);
        }

        .card-meta {
          font-family: 'Inter', sans-serif;
          font-size: 13px;
          color: #64748B;
          font-weight: 600;
        }

        .card-cta {
          font-family: 'Inter', sans-serif;
          font-size: 14.5px;
          font-weight: 700;
          text-decoration: none;
          transition: all 0.2s ease;
        }

        .card-cta .arrow {
          display: inline-block;
          transition: transform 0.2s ease;
        }

        /* -------------------------------------------------------------
           MICRO-SIMULATION VISUAL REGIONS
        -------------------------------------------------------------- */
        .course-visual-container {
          margin: 14px 0 20px 0;
          height: 175px;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .v-card-inner {
          width: 100%;
          height: 100%;
          background: rgba(255, 255, 255, 0.88);
          border: 1px solid rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(12px);
          border-radius: 16px;
          padding: 14px 16px;
          box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Floating UI Pill */
        .v-floating-pill {
          position: absolute;
          bottom: -10px;
          right: 14px;
          background: #0F172A;
          color: #FFFFFF;
          font-family: 'Inter', sans-serif;
          font-size: 11px;
          padding: 4px 10px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          gap: 6px;
          box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
          z-index: 5;
          transition: transform 0.25s ease;
          animation: floatPulse 6s infinite ease-in-out;
        }

        .v-pill-dot {
          width: 6px;
          height: 6px;
          border-radius: 50%;
          display: inline-block;
        }

        /* 1. DATA ANALYTICS + AI VISUAL */
        .v-label {
          font-size: 10px;
          font-weight: 800;
          letter-spacing: 0.08em;
          color: #64748B;
          font-family: 'Inter', sans-serif;
        }
        .v-metric-tag {
          font-size: 11px;
          font-weight: 700;
          font-family: 'Inter', sans-serif;
          background: #F1F5F9;
          padding: 2px 6px;
          border-radius: 4px;
        }
        .v-chart-body {
          flex: 1;
          display: flex;
          align-items: flex-end;
          position: relative;
          padding-top: 4px;
        }
        .v-svg-graph {
          position: absolute;
          top: 0; left: 0; width: 100%; height: 100%;
          z-index: 1;
          pointer-events: none;
        }
        .v-line-path {
          stroke-dasharray: 260;
          stroke-dashoffset: 0;
          animation: drawLine 6s ease-in-out infinite;
        }
        .v-bars-wrapper {
          position: relative;
          z-index: 2;
          width: 100%;
          height: 100%;
          display: flex;
          align-items: flex-end;
          justify-content: space-between;
          gap: 6px;
          padding: 0 4px;
        }
        .v-bar-col {
          flex: 1;
          height: 100%;
          display: flex;
          align-items: flex-end;
        }
        .v-bar-fill {
          width: 100%;
          background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
          border-radius: 3px 3px 0 0;
          transform-origin: bottom;
          animation: growBars 6s ease-in-out infinite;
        }
        .v-bar-1 { animation-delay: 0.1s; }
        .v-bar-2 { animation-delay: 0.2s; }
        .v-bar-3 { animation-delay: 0.3s; }
        .v-bar-4 { animation-delay: 0.4s; }
        .v-bar-5 { animation-delay: 0.5s; }
        .v-bar-6 { animation-delay: 0.6s; }
        .v-bar-7 { animation-delay: 0.7s; }

        /* 2. EXCEL VISUAL */
        .v-formula-bar {
          background: #F8FAFC;
          border: 1px solid #E2E8F0;
          border-radius: 6px;
          font-family: 'Inter', monospace;
          font-size: 11px;
        }
        .v-fx-badge {
          font-weight: 800;
          font-style: italic;
          color: #0F9F7F;
          font-size: 11px;
        }
        .v-formula-code {
          color: #0F172A;
          font-weight: 600;
        }
        .v-sheet-grid {
          display: flex;
          flex-direction: column;
          gap: 2px;
          flex: 1;
        }
        .v-sheet-row {
          display: grid;
          grid-template-columns: 24px repeat(4, 1fr);
          gap: 2px;
        }
        .v-cell {
          background: #FFFFFF;
          border: 1px solid #E2E8F0;
          border-radius: 3px;
          font-size: 10px;
          font-weight: 600;
          text-align: center;
          padding: 2px 0;
          color: #475569;
          font-family: 'Inter', sans-serif;
        }
        .v-cell-idx {
          background: #F1F5F9;
          font-weight: 700;
          color: #64748B;
        }
        .v-sheet-head .v-cell {
          background: #F8FAFC;
          font-weight: 700;
          color: #0F9F7F;
          font-size: 9px;
        }
        .v-cell-active {
          border-color: #0F9F7F;
          background: rgba(15, 159, 127, 0.08);
          color: #0F9F7F;
        }
        .v-cell-highlight {
          animation: cellPulse 4s infinite ease-in-out;
        }

        /* 3. SQL RELATIONAL SCHEMA VISUAL */
        .v-schema-nodes {
          position: relative;
          gap: 8px;
        }
        .v-db-node {
          flex: 1;
          background: #FFFFFF;
          border: 1px solid rgba(124, 58, 237, 0.2);
          border-radius: 8px;
          padding: 6px 8px;
          box-shadow: 0 2px 8px rgba(124, 58, 237, 0.06);
        }
        .v-node-title {
          font-size: 9.5px;
          font-weight: 800;
          color: #7C3AED;
          border-bottom: 1px solid #F1F5F9;
          padding-bottom: 2px;
          margin-bottom: 2px;
          font-family: 'Inter', sans-serif;
        }
        .v-node-field {
          font-size: 9px;
          color: #64748B;
          font-family: monospace;
          line-height: 1.3;
        }
        .v-schema-lines {
          width: 50px;
          height: 35px;
        }
        .v-conn-flow {
          animation: dashFlow 4s linear infinite;
        }
        .v-sql-console {
          background: #1E293B;
          border-radius: 6px;
          color: #F8FAFC;
          font-size: 10px;
          font-family: monospace;
        }
        .v-sql-code {
          color: #C4B5FD;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          max-width: 80%;
        }
        .v-sql-badge {
          background: #10B981;
          color: #FFFFFF;
          font-size: 8px;
          font-weight: 700;
          padding: 1px 4px;
          border-radius: 3px;
        }

        /* 4. PYTHON FOR DATA ANALYSIS VISUAL */
        .v-ide-header {
          border-bottom: 1px solid #E2E8F0;
        }
        .v-ide-dot {
          width: 6px;
          height: 6px;
          border-radius: 50%;
        }
        .v-ide-filename {
          font-size: 9.5px;
          font-weight: 700;
          color: #64748B;
          font-family: monospace;
        }
        .v-ide-status {
          font-size: 9px;
          font-weight: 700;
          color: #0284C7;
          background: #E0F2FE;
          padding: 1px 6px;
          border-radius: 4px;
        }
        .v-python-code {
          background: #0F172A;
          color: #94A3B8;
          border-radius: 6px;
          padding: 6px 8px;
          font-size: 9.5px;
          font-family: monospace;
          line-height: 1.4;
        }
        .text-purple { color: #C084FC; font-weight: 600; }
        .text-emerald { color: #34D399; }
        .v-df-preview {
          background: #F8FAFC;
          border: 1px solid #E2E8F0;
          border-radius: 6px;
          font-size: 9.5px;
          font-family: 'Inter', sans-serif;
          font-weight: 600;
          color: #334155;
        }

        /* KEYFRAME ANIMATIONS */
        @keyframes growBars {
          0%, 100% { transform: scaleY(1); }
          50% { transform: scaleY(0.75); }
        }
        @keyframes drawLine {
          0% { stroke-dashoffset: 260; }
          40%, 100% { stroke-dashoffset: 0; }
        }
        @keyframes cellPulse {
          0%, 100% { background: #FFFFFF; }
          50% { background: rgba(15, 159, 127, 0.15); border-color: #0F9F7F; }
        }
        @keyframes dashFlow {
          to { stroke-dashoffset: -20; }
        }
        @keyframes floatPulse {
          0%, 100% { transform: translateY(0); }
          50% { transform: translateY(-3px); }
        }

        /* ACCESSIBILITY: REDUCED MOTION */
        @media (prefers-reduced-motion: reduce) {
          .v-bar-fill, .v-line-path, .v-cell-highlight, .v-conn-flow, .v-floating-pill {
            animation: none !important;
            stroke-dashoffset: 0 !important;
          }
        }

        /* RESPONSIVE MOBILE SWIPER */
        @media (max-width: 991px) {
          .course-grid-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 16px;
            padding-bottom: 24px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
          }
          .course-grid-wrapper::-webkit-scrollbar {
            display: none;
          }
          .premium-course-card {
            flex: 0 0 86vw;
            scroll-snap-align: center;
            min-height: 480px;
            padding: 24px;
            border-radius: 22px;
          }
          .premium-course-card:first-child {
            margin-left: 7vw;
          }
          .premium-course-card:last-child {
            margin-right: 7vw;
          }
          .card-title {
            font-size: 22px;
          }
        }
      
/* --- FOOTER VISUALIZATIONS CSS --- */

        .footer-analytics-wrapper {
          background: linear-gradient(135deg, #071A2E 0%, #0B2238 55%, #0A2A38 100%);
          padding-top: 60px;
          color: #FFFFFF;
        }

        .footer-grid-overlay {
          position: absolute;
          top: 0; left: 0; right: 0; bottom: 0;
          background-image: 
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
          background-size: 32px 32px;
          pointer-events: none;
          z-index: 1;
        }

        .footer-bg-chart {
          position: absolute;
          right: -50px;
          bottom: 40px;
          width: 550px;
          height: 220px;
          pointer-events: none;
          opacity: 0.65;
          z-index: 1;
        }

        .v-pulse-node {
          animation: nodeGlow 4s infinite alternate ease-in-out;
        }

        @keyframes nodeGlow {
          0% { r: 3; opacity: 0.6; }
          100% { r: 6; opacity: 1; filter: drop-shadow(0 0 6px #14B8A6); }
        }

        /* Top CTA Strip */
        .footer-cta-eyebrow {
          font-family: 'Inter', sans-serif;
          font-size: 11px;
          font-weight: 750;
          letter-spacing: 0.12em;
          color: #14B8A6;
        }

        .footer-cta-heading {
          font-family: 'Plus Jakarta Sans', sans-serif;
          font-size: 20px;
          font-weight: 700;
          line-height: 1.4;
        }

        .footer-cta-btn {
          height: 48px;
          padding: 0 24px;
          background: #14B8A6;
          color: #FFFFFF;
          font-family: 'Inter', sans-serif;
          font-size: 14px;
          font-weight: 700;
          border-radius: 10px;
          text-decoration: none;
          white-space: nowrap;
          transition: all 0.25s ease;
          box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
        }

        .footer-cta-btn:hover {
          background: #0D9488;
          color: #FFFFFF;
          transform: translateY(-2px);
          box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
        }

        .footer-cta-btn .arrow {
          transition: transform 0.2s ease;
        }

        .footer-cta-btn:hover .arrow {
          transform: translateX(4px);
        }

        /* Brand Widget */
        .footer-tagline-badge {
          display: inline-block;
          font-family: 'Inter', sans-serif;
          font-size: 10.5px;
          font-weight: 750;
          letter-spacing: 0.14em;
          color: #38BDF8;
          background: rgba(56, 189, 248, 0.08);
          border: 1px solid rgba(56, 189, 248, 0.2);
          padding: 3px 8px;
          border-radius: 4px;
        }

        .footer-brand-desc {
          font-family: 'Inter', sans-serif;
          font-size: 14px;
          line-height: 1.6;
          color: rgba(255, 255, 255, 0.65);
          max-width: 320px;
        }

        /* Mini KPIs */
        .footer-mini-kpi .kpi-num {
          font-family: 'Plus Jakarta Sans', sans-serif;
          font-size: 14px;
          font-weight: 800;
          color: #FFFFFF;
          line-height: 1.1;
        }

        .footer-mini-kpi .kpi-lbl {
          font-family: 'Inter', sans-serif;
          font-size: 10px;
          color: rgba(255, 255, 255, 0.5);
          text-transform: uppercase;
          letter-spacing: 0.05em;
        }

        .kpi-divider {
          width: 1px;
          height: 24px;
          background: rgba(255, 255, 255, 0.1);
        }

        /* Minimal Social Buttons */
        .footer-social-minimal a {
          width: 36px;
          height: 36px;
          border: 1px solid rgba(255, 255, 255, 0.15);
          border-radius: 50%;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          font-size: 13px;
          transition: all 0.2s ease;
        }

        .footer-social-minimal a:hover {
          background: #14B8A6;
          border-color: #14B8A6;
          color: #FFFFFF;
          transform: translateY(-2px);
        }

        /* Navigation Links */
        .footer-analytics-wrapper h5,
        .footer-analytics-wrapper h6,
        .footer-widget-heading {
          font-family: 'Plus Jakarta Sans', sans-serif !important;
          font-size: 14.5px !important;
          font-weight: 750 !important;
          color: #FFFFFF !important;
          letter-spacing: 0.05em !important;
          text-transform: uppercase !important;
        }

        .footer-widget-subheading {
          font-family: 'Inter', sans-serif !important;
          font-size: 12px !important;
          font-weight: 750 !important;
          color: rgba(255, 255, 255, 0.9) !important;
          letter-spacing: 0.06em !important;
          text-transform: uppercase !important;
        }

        .footer-nav-list li {
          margin-bottom: 10px;
        }

        .footer-nav-list li a {
          font-family: 'Inter', sans-serif;
          font-size: 13.5px;
          color: rgba(255, 255, 255, 0.72) !important;
          text-decoration: none;
          transition: all 0.2s ease;
          display: inline-block;
          line-height: 1.4;
        }

        .footer-nav-list li a:hover {
          color: #14B8A6 !important;
          transform: translateX(4px);
        }

        .footer-contact-info {
          font-family: 'Inter', sans-serif;
          font-size: 13.5px;
          line-height: 1.5;
        }

        /* Tech label badge */
        .tech-badge {
          font-family: monospace;
          font-size: 11px;
          color: rgba(255, 255, 255, 0.35);
          letter-spacing: 0.15em;
          background: rgba(255, 255, 255, 0.02);
          padding: 4px 12px;
          border-radius: 20px;
          border: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* Bottom Bar */
        .footer-copyright-text {
          font-family: 'Inter', sans-serif;
          font-size: 13px;
        }

        .footer-legal-links a {
          font-family: 'Inter', sans-serif;
          font-size: 13px;
          text-decoration: none;
          transition: color 0.2s;
        }

        .footer-legal-links a:hover {
          color: #FFFFFF !important;
        }

        @media (max-width: 767px) {
          .footer-brand-widget {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
          }

          .footer-brand-header {
            justify-content: center !important;
            gap: 16px !important;
            margin-bottom: 16px !important;
          }

          .footer-brand-desc {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
          }

          .footer-mini-kpi-wrap {
            margin-left: auto !important;
            margin-right: auto !important;
            justify-content: center;
          }

          .footer-social-minimal {
            justify-content: center;
          }

          .footer-contact-info {
            align-items: center;
            text-align: center;
          }

          .footer-contact-item {
            justify-content: center;
          }
        }
      

/* --- WP ADMIN BAR STICKY FIX --- */
body.admin-bar #header-sticky.sticky {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar #header-sticky.sticky {
        top: 46px !important;
    }
}
/* Ensure the sticky header has high enough z-index to stay over content but under admin bar (z-index 99999) */
#header-sticky.sticky {
    z-index: 999;
}


/* Fix mobile horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}


/* Responsive Tweaks for Homepage Sections */
@media (max-width: 767px) {
    .why-sbs-heading, 
    .why-sbs-heading span {
        font-size: 32px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
    }
    
    .course-grid-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .hero__height {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }
    
    .hero-main-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}


/* Global Mobile Typography Overrides for Scraped HTML */
@media (max-width: 767px) {
    h1, h2 {
        font-size: clamp(28px, 8vw, 34px) !important;
        line-height: 1.25 !important;
    }
    
    .about-hero-section {
        padding-top: 130px !important;
        padding-bottom: 50px !important;
    }
    
    .about-belief-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .value-flow-card {
        padding: 15px !important;
    }
}

/* Blog Detail Page Styles */
.editorial-article-page {
    color: #334155;
}
.hub-article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}
.hub-article-body h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hub-article-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
}
.hub-article-body p {
    margin-bottom: 24px;
}
.hub-article-body ul, .hub-article-body ol {
    margin-bottom: 24px;
    padding-left: 20px;
}
.hub-article-body li {
    margin-bottom: 12px;
}
.article-takeaway {
    background: #f8fafc;
    border-left: 4px solid #0ea5e9;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
    font-size: 17px;
    font-weight: 500;
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.article-takeaway strong {
    color: #0ea5e9;
}
.hub-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

/* View All Articles Hover State */
.sbs-view-all-btn:hover {
    background-color: #1c4475 !important;
    color: #ffffff !important;
    border-color: #1c4475 !important;
    box-shadow: 0 4px 14px rgba(28, 68, 117, 0.25);
    transform: translateY(-1px);
}

/* Footer Links Exact HTML Match */
.footer-nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none !important;
    font-size: 13.5px;
    line-height: 1.6;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.footer-nav-link:hover {
    color: #38bdf8 !important;
    transform: translateX(2px);
}

/* ==========================================================================
   BLOG EDITORIAL ARTICLE ENHANCED STYLES (MATCH NEXT.JS SOURCE 1:1)
   ========================================================================== */

/* Article Table */
.article-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
    margin: 32px 0 !important;
    overflow: hidden !important;
    font-size: 14px !important;
}

.article-table th {
    background-color: #f8fafc !important;
    color: #0b1f33 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.article-table td {
    color: #334155 !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    vertical-align: top !important;
    line-height: 1.6 !important;
}

.article-table tr:last-child td {
    border-bottom: none !important;
}

.article-table td strong {
    color: #0b1f33 !important;
    font-weight: 700 !important;
}

/* Article Code Block Container */
.article-code {
    background: #0a1020 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    margin: 28px 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: block !important;
}

/* Code Header Bar */
.code-header-bar {
    background: #060a14 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 10px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.code-lang-label {
    color: #38bdf8 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    text-transform: uppercase !important;
}

.code-copy-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    color: #cbd5e1 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 3px 10px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.2s ease !important;
}

.code-copy-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Code Inside Pre */
.article-code code {
    display: block !important;
    background: transparent !important;
    color: #e2e8f0 !important;
    font-size: 13.5px !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    line-height: 1.65 !important;
    padding: 18px 20px !important;
    border: none !important;
    overflow-x: auto !important;
    white-space: pre !important;
}

/* ==========================================================================
   COURSE DETAIL PAGES 1:1 PIXEL PERFECT STYLES (MATCH NEXT.JS)
   ========================================================================== */

/* Step Card Styles */
.step-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 35px -8px rgba(11, 28, 48, 0.07) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.step-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 45px -10px rgba(11, 28, 48, 0.12) !important;
}

/* Step Image Wrapper */
.step-image-wrapper {
    height: 300px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid #edf2f7 !important;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.15) !important;
}

.step-image-wrapper img {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    inset: 0 !important;
    object-fit: cover !important;
}

/* Step Pill Badge */
.step-image-wrapper .position-absolute.top-0.start-0 {
    background-color: rgba(11, 28, 48, 0.8) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    border: 1px solid #38bdf8 !important;
    border-radius: 50rem !important;
    padding: 4px 12px !important;
    margin: 16px !important;
    z-index: 5 !important;
}

/* Download Curriculum Button */
button.sbs-open-brochure-modal,
.course-hero-section button,
.course-hero-section .btn-outline-light {
    height: 48px !important;
    padding: 0 22px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

button.sbs-open-brochure-modal:hover,
.course-hero-section button:hover,
.course-hero-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

/* Hero Sim Dashboard */
.hero-sim-dashboard {
    background-color: #071321 !important;
    border: 1px solid rgba(56, 189, 248, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 99, 235, 0.15) !important;
}

/* Footer Brand Description High Contrast Visibility */
.footer-brand-desc,
footer p.footer-brand-desc,
.footer-analytics-wrapper .footer-brand-desc,
.footer-brand-widget p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

/* Hero Section Top Spacing to match Image 2 */
.course-hero-section {
    padding-top: 175px !important;
    padding-bottom: 75px !important;
}

/* ==========================================================================
   CURRICULUM STEP CARDS TYPOGRAPHY & HIGHLIGHTING (1:1 NEXT.JS MATCH)
   ========================================================================== */

/* Step Card Title */
.step-card h3,
.step-card .step-card-title,
.data-analysis-role-breakdown .step-card h3 {
    font-size: 26px !important;
    font-weight: 850 !important;
    color: #0b1c30 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 16px !important;
}

/* Step Card Description Paragraph */
.step-card p,
.step-card .step-description,
.data-analysis-role-breakdown .step-card p {
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: #334155 !important;
    font-weight: 400 !important;
}

/* Emphasized / Highlighted Text inside Step Description */
.step-card em,
.step-card .step-description em,
.data-analysis-role-breakdown .step-card em {
    color: #0b1c30 !important;
    font-weight: 600 !important;
    font-style: italic !important;
}


/* ==========================================================================
   COURSES CATALOG & COURSE GRID (1:1 NEXT.JS MATCH)
   ========================================================================== */
.catalog-header {
    background-color: #0b1c30 !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
    padding-top: 155px !important;
    padding-bottom: 30px !important;
}

.catalog-header h1,
.catalog-header .h1,
section.catalog-header h1 {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.catalog-header p,
.catalog-header-desc,
section.catalog-header .catalog-header-desc {
    color: #e2e8f0 !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    max-width: 680px !important;
    font-weight: 400 !important;
}

.badge-meta {
    border: 1px solid rgba(52, 211, 153, 0.25) !important;
    border-radius: 6px !important;
    margin-bottom: 5px !important;
    margin-left: 5px !important;
    padding: 5px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    color: #34d399 !important;
    background: rgba(12, 174, 116, 0.15) !important;
}

/* Course Grid Cards Exact Next.js Styling */
.catalog-body-area {
    background-color: #f8fafc !important;
    padding: 50px 0 80px !important;
}

.course-grid-card {
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
}

.course-grid-card:hover {
    border-color: #cbd5e1 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px -10px rgba(11, 31, 51, 0.1) !important;
}

.course-grid-card__visual {
    color: #ffffff !important;
    background-color: #090e1a !important;
    height: 140px !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    display: block !important;
    border-bottom: none !important;
}

.visual-wrapper {
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    padding: 20px !important;
    display: flex !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.lbl-mini {
    letter-spacing: 0.5px !important;
    color: #64748b !important;
    font-size: 8px !important;
    font-weight: 800 !important;
}

.formula-text {
    color: #34d399 !important;
    background: rgba(52, 211, 153, 0.06) !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    font-family: monospace !important;
    font-size: 9.5px !important;
    margin-top: 0 !important;
}

.cell-sq {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 2px !important;
    width: 12px !important;
    height: 12px !important;
}

.cell-sq.active {
    background: rgba(52, 211, 153, 0.2) !important;
    border-color: #34d399 !important;
}

.tbl-mini {
    color: #2dd4bf !important;
    background: rgba(13, 148, 136, 0.12) !important;
    border: 1px solid #0d9488 !important;
    border-radius: 4px !important;
    padding: 3px 8px !important;
    font-family: monospace !important;
    font-size: 9px !important;
}

.tbl-line {
    color: #0d9488 !important;
    font-size: 9px !important;
}

.py-node {
    color: #ffedd5 !important;
    background: rgba(250, 121, 25, 0.1) !important;
    border: 1px solid #fa7919 !important;
    border-radius: 4px !important;
    padding: 2px 6px !important;
    font-family: monospace !important;
    font-size: 8.5px !important;
}

.py-arr {
    color: #fa7919 !important;
    font-size: 8px !important;
}

.course-grid-card__body {
    flex-grow: 1 !important;
    padding: 20px !important;
}

.card-category-lbl {
    letter-spacing: 0.5px !important;
    color: #fa7919 !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
}

.card-level-lbl {
    color: #64748b !important;
    background: #f1f5f9 !important;
    border-radius: 4px !important;
    padding: 2px 8px !important;
    font-size: 9.5px !important;
    font-weight: 700 !important;
    border: none !important;
}

.card-course-title {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
}

.card-course-title a {
    color: #0b1c30 !important;
    text-decoration: none !important;
}

.card-course-title a:hover {
    color: #0cae74 !important;
}

.card-course-desc {
    color: #64748b !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
}

.tech-badge-sbs-compact {
    color: #475569 !important;
    background: #f1f5f9 !important;
    border-radius: 4px !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
}

.card-action-link {
    background: transparent !important;
    border: none !important;
    color: #0b1c30 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    padding: 0 !important;
    transition: color 0.2s !important;
}

.course-grid-card:hover .card-action-link {
    color: #0cae74 !important;
}


/* --- Blog Hub Card Styles --- */
.hub-card{background:#fff;border:1px solid #edf2f7;border-radius:14px;flex-direction:column;transition:all .25s;display:flex;overflow:hidden;box-shadow:0 4px 6px -1px #00000008,0 2px 4px -1px #00000005}.hub-card:hover{border-color:#cbd5e1;transform:translateY(-4px);box-shadow:0 12px 20px -8px #00000014}.hub-card__visual{background-color:#f8fafc;border-bottom:1px solid #edf2f7;width:100%;height:190px;display:block;overflow:hidden}.hub-card__visual svg{transition:transform .3s}.hub-card:hover .hub-card__visual svg{transform:scale(1.03)}.hub-card__body{flex-direction:column;flex-grow:1;padding:24px;display:flex}.hub-card__meta{align-items:center;gap:8px;margin-bottom:12px;display:flex}.hub-card__tag{letter-spacing:.5px;color:#0b1c30;text-transform:uppercase;font-size:11px;font-weight:700}.hub-card__dot{color:#94a3b8;font-size:11px}.hub-card__time{color:#64748b;font-size:12px}.hub-card__title{-webkit-line-clamp:3;-webkit-box-orient:vertical;min-height:72px;margin-bottom:10px;font-size:17px;font-weight:800;line-height:1.4;display:-webkit-box;overflow:hidden}.hub-card__title a{color:#0b1c30;text-decoration:none;transition:color .2s}.hub-card__title a:hover{color:#0cae74}.hub-card__desc{color:#64748b;-webkit-line-clamp:3;-webkit-box-orient:vertical;height:60px;margin-bottom:20px;font-size:13.5px;line-height:1.5;display:-webkit-box;overflow:hidden}.hub-card__footer{border-top:1px solid #edf2f7;justify-content:space-between;align-items:center;margin-top:auto;padding-top:14px;display:flex}.hub-card__date{color:#94a3b8;font-size:12px}.hub-card__link{color:#0b1c30;align-items:center;gap:4px;font-size:13.5px;font-weight:700;transition:all .2s;display:inline-flex}.hub-card__link i{transition:transform .2s}.hub-card:hover .hub-card__link{color:#0cae74}.hub-card:hover .hub-card__link i{transform:translate(3px)}.hub-hero__title{color:#fff!important}.hub-hero__desc{color:#cbd5e1!important}@media (width<=767px){.hub-card__title{-webkit-line-clamp:none;height:auto;min-height:0}.hub-card__desc{-webkit-line-clamp:none;height:auto}}


/* Forced Hub Card exact typography & sizing */
.hub-card .hub-card__title,
h3.hub-card__title {
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    min-height: 72px !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.hub-card .hub-card__desc,
p.hub-card__desc {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    height: 60px !important;
    margin-bottom: 20px !important;
    color: #64748b !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.hub-card .hub-card__body {
    padding: 24px !important;
}
.hub-card__visual {
    height: 190px !important;
    padding: 0 !important;
}

/* ==========================================================================
   SBS Mobile Responsive Enhancements
   ========================================================================== */

/* 1. Mobile Menu & Sidebar */
.sbs-hamburger-line {
    background-color: #0b1c30 !important;
    width: 26px !important;
    height: 3px !important;
    border-radius: 3px !important;
    display: block !important;
}
.sidebar__area.open {
    visibility: visible !important;
    opacity: 1 !important;
    right: 0 !important;
    z-index: 999999 !important;
}
#sbs-sidebar-overlay {
    z-index: 999998 !important;
}

/* 1.1 Hero Mobile Center Alignment */
@media (max-width: 991px) {
    .hero-left-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .hero-custom-large-heading,
    h1.hero-custom-large-heading {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-custom-large-heading span,
    .hero-custom-large-heading .hero-gradient-text,
    .hero-custom-large-heading span:not(.hero-live-mode),
    .hero-custom-large-heading .hero-live-mode {
        text-align: center !important;
    }
    .hero-subheading-lead,
    p.hero-subheading-lead {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-left-content .d-flex {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* 2. Course Cards Mobile Carousel */
.course-carousel-controls {
    display: none !important;
}

@media (max-width: 991px) {
    .course-grid-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 4px 4px 12px 4px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .course-grid-wrapper::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    .premium-course-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        box-sizing: border-box !important;
        padding: 24px 18px !important;
        min-height: auto !important;
        border-radius: 18px !important;
    }
    .premium-course-card .card-title {
        font-size: 22px !important;
    }
    .course-visual-container {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .v-card-inner {
        max-width: 100% !important;
        overflow-x: auto !important;
    }
    .course-carousel-controls {
        display: flex !important;
    }
    .btn-carousel-arrow {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 1.5px solid #e2e8f0 !important;
        color: #0b1c30 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08) !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
    }
    .btn-carousel-arrow:active {
        background: #f1f5f9 !important;
        transform: scale(0.92) !important;
    }
    .course-carousel-dots {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .course-carousel-dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: #cbd5e1 !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    .course-carousel-dot.active {
        width: 28px !important;
        border-radius: 6px !important;
        background: #0cae74 !important;
        box-shadow: 0 2px 8px rgba(12, 174, 116, 0.4) !important;
    }
}
@media (max-width: 480px) {
    .premium-course-card {
        padding: 20px 14px !important;
    }
    .premium-course-card .card-title {
        font-size: 19px !important;
    }
    .v-floating-pill {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
}

/* 3. About Us Hero Workspace Simulator Mobile Fix */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 120px 0 60px !important;
    }
    .workspace-simulator {
        padding: 16px 12px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    .workspace-simulator .row.g-2 > .col-3,
    .workspace-simulator .row.g-2 > div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 6px !important;
    }
    .workspace-kpi {
        padding: 8px 4px !important;
    }
    .workspace-kpi div:last-child {
        font-size: 14px !important;
    }
    .analytics-journey-motif {
        padding: 12px 8px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: 100% !important;
    }
    .analytics-journey-motif .journey-node {
        font-size: 8.5px !important;
        padding: 2.5px 5px !important;
        white-space: nowrap !important;
    }
    .analytics-journey-motif span {
        font-size: 8px !important;
    }
    .code-query-panel {
        padding: 12px 10px !important;
        font-size: 10.5px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
        max-width: 100% !important;
    }
}

/* 4. Floating Action Buttons Responsive Docking */
@media (max-width: 767px) {
    .blog-float {
        display: none !important;
    }
    .whatsapp-float {
        bottom: 20px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 26px !important;
        z-index: 9999 !important;
    }
    .progress-wrap,
    #scrollUpBtn {
        bottom: 76px !important;
        right: 18px !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 9998 !important;
    }
    .sbs-express-interest-bubble {
        bottom: 20px !important;
        left: 16px !important;
        padding: 9px 15px !important;
        z-index: 9999 !important;
    }
    .sbs-express-interest-bubble span:last-child {
        font-size: 12.5px !important;
    }
}

