  body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Remove any gap between header and content */
  .tcl-navigation {
    margin-bottom: 0 !important;
    border-bottom: none !important;
  }
  /* Professional Government Theme Styles */

  
  /* Print Button Styles */
  .tcl-print-section {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 1rem;
  }
  
  .tcl-print-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--tcl-primary);
    color: var(--tcl-white);
    border: 1px solid var(--tcl-primary);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .tcl-print-btn:hover,
  .tcl-print-btn:focus {
    background-color: var(--tcl-primary-dark);
    border-color: var(--tcl-primary-dark);
    color: var(--tcl-white);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  

  
  .tcl-print-btn i {
    font-size: 1rem;
  }
  
  .tcl-print-text {
    font-weight: 500;
  }
  
  /* Responsive print button */
  @media (max-width: 768px) {
    .tcl-print-section {
      margin-left: 0;
      padding-left: 0;
      margin-top: 0.5rem;
    }
    
    .tcl-print-btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Reset & Base */
  .tcl-gov-header * {
    box-sizing: border-box;
  }
  
  .tcl-gov-header {
    font-family: var(--tcl-font-sans);
    position: sticky;
    top: 0;
    z-index: 997; /* Lower than main header but higher than content */
    background: var(--tcl-white);
    box-shadow: var(--tcl-shadow-md);
    margin-top: -25px; /* tch India InvestmentReset margin to prevent content hiding */
  }
  
  /* Fix any potential white space before header */
  body {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  html {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .tcl-container {
    max-width: 1320px; /* Ma Grid container width */
    margin: 0 auto; /* Center container with proper side margins */
    padding: 0 1rem; /* Responsive padding like India Investment Grid */
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Responsive container padding like India Investment Grid */
  @media (min-width: 768px) {
    .tcl-container {
      padding: 0 2rem;
    }
  }
  
  @media (min-width: 992px) {
    .tcl-container {
      padding: 0 3rem;
    }
  }
  
  @media (min-width: 1200px) {
    .tcl-container {
      padding: 0 4rem;
    }
  }
  
  
  /* Top Bar - Exact match to India Investment Grid reference */
  .tcl-top-bar {
    background: #415464; /* Exact background color from reference website */
    color: #ffffff; /* Exact white text color from reference */
    padding: 8px 0; /* Increased for breathing room */
    border-bottom: none; /* No border like reference */
    box-shadow: none; /* No shadow like reference */
    min-height: 56px; /* Increased to fit 48px emblem comfortably */
  }
  
  .tcl-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem; /* Tight gap like reference */
    min-height: 40px; /* Increased for larger emblem and readability */
  }
  
  /* Government Badge - Exact match to reference website */
  .tcl-gov-badge {
    display: flex;
    align-items: center; /* Center align for horizontal text */
    gap: 12px; /* Exact gap like reference */
    font-size: 11px; /* Exact font size like reference */
    font-weight: 400; /* Normal weight, not bold like reference */
    color: #ffffff; /* Exact white color like reference */
    text-shadow: none; /* No shadow like reference */
    line-height: 1.4; /* Exact line height like reference */
  }
  
  .tcl-ashok-emblem-main {
    flex-shrink: 0; /* Don't shrink emblem */
  }
  
  .tcl-emblem {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4)) brightness(1.05);
    display: block;
  }
  
  .tcl-ex-link-main {
    flex: 1; /* Take remaining space */
  }
  
  .tcl-ex-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row; /* Horizontal layout like reference */
    align-items: center;
    gap: 0; /* No gap, separators will handle spacing */
  }
  
  .tcl-ex-link {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  .tcl-ex-link a {
    color: #ffffff; /* White text like reference */
    text-decoration: none;
    font-family: 'Roboto', sans-serif; /* Exact font family like reference */
    font-size: 11px; /* Exact font size like reference */
    font-weight: 400; /* Normal weight, not bold like reference */
    line-height: 1.4; /* Exact line height like reference */
    letter-spacing: 0.1px; /* Exact letter spacing like reference */
    transition: all 0.2s ease;
  }
  
  .tcl-ex-link a:hover {
    color: #000000; /* Light hover color like reference */
    text-decoration: underline; /* Underline on hover like reference */
  }
  
  /* Add separator between links */
  .tcl-ex-link:not(:last-child)::after {
    content: ' | ';
    color: #ffffff;
    margin: 0 8px;
    font-weight: 400;
  }
  
  /* Top Actions - Exact layout like reference */
  .tcl-top-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* Very tight gap like reference */
    position: relative; /* Required for absolute positioning of dropdowns */
    z-index: 999999999; /* High z-index to ensure visibility */
  }
  
  /* Accessibility Tools - Proper proportions like reference */
  .tcl-accessibility {
    display: flex;
    align-items: center;
    gap: 8px; /* Proper gap for good proportions */
  }
  
  .tcl-access-btn {
    background: rgba(255, 255, 255, 0.2); /* Light background for good visibility */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Light border for definition */
    border-radius: 4px; /* Slightly rounded for better proportions */
    padding: 6px 10px; /* Better padding for good proportions */
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease; /* Smooth transition */
    font-size: 11px; /* Better font size for readability */
    font-weight: 500; /* Medium weight for better visibility */
    backdrop-filter: none; /* No backdrop filter */
    min-width: 32px; /* Better size for good proportions */
    height: 32px; /* Better height for good proportions */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tcl-access-btn:hover {
    background: rgba(255, 255, 255, 0.2); /* Better hover for good proportions */
    border-color: rgba(255, 255, 255, 0.3); /* Better hover border */
    transform: none; /* No transform */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  .tcl-access-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6); /* Better focus outline */
    outline-offset: 1px;
    background: rgba(255, 255, 255, 0.2); /* Better focus background */
  }
  
  /* Contrast and Keyboard Icons for better proportions */
  .tcl-contrast-icon,
  .tcl-keyboard-icon {
    font-size: 14px; /* Better size for icons */
    font-weight: 500; /* Medium weight for better visibility */
    line-height: 1; /* Proper line height */
  }
  
  /* Contrast and Keyboard Icons for better proportions */
  .tcl-contrast-icon,
  .tcl-keyboard-icon {
    font-size: 14px; /* Better size for icons */
    font-weight: 500; /* Medium weight for better visibility */
    line-height: 1; /* Proper line height */
  }
  
  /* Font Control - Exact style like reference website */
  .tcl-font-control {
    display: inline-block;
    vertical-align: top;
    /* Ensure it's above language selector */
    z-index: 999999999;
  }
  
  /* Font resizer - exact reference website style */
  .font-click.font-resizer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
  
  .font-resizer li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .font-resizer a {
    display: inline-block;
    padding: 4px 8px;
    color: #ffffff !important;
    color: var(--tcl-white) !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    min-width: 24px;
    text-align: center;
    line-height: 1.2;
  }
  
  .font-resizer a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    color: var(--tcl-white) !important;
  }
  
  .font-resizer a:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 1px;
  }
  
  /* Specific button styles */
  .font-resizer .dec {
    border-radius: 3px 0 0 3px;
    border-right: none;
  }
  
  .font-resizer .orig {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .font-resizer .inc {
    border-radius: 0 3px 3px 0;
    border-left: none;
  }
  
  /* Focus visible for better accessibility */
  .font-resizer a:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 1px;
  }
  
  /* High contrast mode support */
  .tcl-high-contrast .font-resizer a:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }
  

  
  
  /* Responsive positioning adjustments */
  @media (max-width: 768px) {
    .tcl-font-menu {
      /* On mobile, ensure menu doesn't go off-screen */
      right: auto;
      left: 0;
      min-width: 100px;
    }
  }
  
  /* Ensure menu is visible when shown */
  .tcl-font-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Social Icons - Exact like reference website */
  .tcl-social-icons {
    display: flex;
    align-items: center;
    gap: 0.15rem; /* Exact spacing like reference */
  }
  
  .tcl-social-link {
    background: rgba(255, 255, 255, 0.08); /* Very light background like reference */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Light border like reference */
    border-radius: 3px; /* Exact radius like reference */
    padding: 2px; /* Exact padding like reference */
    color: #fff;
    transition: all 0.15s ease; /* Fast transition like reference */
    backdrop-filter: none; /* No backdrop filter like reference */
    width: 20px; /* Exact size like reference */
    height: 20px; /* Exact size like reference */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tcl-social-link:hover {
    background: rgba(255, 255, 255, 0.15); /* Light hover like reference */
    border-color: rgba(255, 255, 255, 0.25); /* Light hover border like reference */
    transform: none; /* No transform like reference */
    box-shadow: none; /* No shadow like reference */
  }
  
  .tcl-social-link:focus {
    outline: 1px solid rgba(255, 255, 255, 0.6); /* Light outline like reference */
    outline-offset: 1px;
    background: rgba(255, 255, 255, 0.15); /* Light focus background like reference */
  }
  
  /* Responsive improvements - Exact like reference */
  @media (max-width: 768px) {
    .tcl-top-content {
      flex-direction: column;
      gap: 0.4rem; /* Exact gap like reference */
      text-align: center;
    }
    
    .tcl-top-actions {
      gap: 0.4rem; /* Exact gap like reference */
    }
    
    .tcl-accessibility {
      gap: 5px; /* Exact gap like reference */
    }
    
    .tcl-access-btn,
    .tcl-font-btn,
    .tcl-social-link {
      min-width: 28px; /* Better size for tablet */
      height: 28px;
      font-size: 10px; /* Better font size for tablet */
    }
    
    .tcl-font-icon {
      font-size: 11px; /* Better size for tablet */
    }
    
    .tcl-contrast-icon,
    .tcl-keyboard-icon {
      font-size: 12px; /* Better size for tablet */
    }
    
    .tcl-emblem {
      width: 42px;
      height: 42px;
    }
    
    .tcl-ex-link a {
      font-size: 10px; /* Smaller font on tablet like reference */
    }
  }
  
  @media (max-width: 480px) {
    .tcl-emblem {
      width: 36px;
      height: 36px;
    }
    
    .tcl-ex-link a {
      font-size: 9px; /* Smaller font on mobile like reference */
    }
    
    .tcl-gov-badge {
      gap: 8px; /* Smaller gap on mobile like reference */
    }
  }
  
  .tcl-font-control {
    position: relative;
    z-index: auto; /* Let the menu handle its own z-index */
  }
  
  .tcl-font-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    padding: 0.3rem 0.4rem; /* Smaller padding */
    border-radius: 0.25rem; /* Smaller radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--tcl-transition);
    position: relative;
    z-index: 1001; /* Lower z-index than menu */
    min-height: 24px; /* Fixed height */
  }
  
  .tcl-font-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
  }
  
  /* Font icon styling */
  .tcl-font-icon {
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
  }
  
  .tcl-font-menu {
    position: fixed !important; /* Changed to fixed positioning */
    top: auto !important;
    left: auto !important;
    background: var(--tcl-white);
    border: 1px solid var(--tcl-gray-200);
    border-radius: 0.375rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 4rem;
    display: none;
    z-index: 999999; /* High z-index but lower than language dropdown */
  }
  
  .tcl-font-menu.show {
    display: block;
  }
  
  .tcl-font-menu li {
    margin: 0;
  }
  
  .tcl-font-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--tcl-gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--tcl-transition);
  }
  
  .tcl-font-menu a:hover {
    background: var(--tcl-gray-50);
    color: var(--tcl-primary);
  }
  
  .tcl-access-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    width: 24px; /* Much smaller like STQC */
    height: 24px;
    border-radius: 0.25rem; /* Smaller radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tcl-transition);
    font-size: 0.8rem; /* Smaller font */
  }
  
  .tcl-access-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
  }
  
  /* Make help button icon more visible */
  .tcl-keyboard-icon {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    display: inline-block !important;
    font-family: Arial, sans-serif !important;
    line-height: 1 !important;
  }
  
  /* Social Icons - STQC Style Compact */
  .tcl-social-icons {
    display: flex;
    gap: 0.25rem; /* Tighter spacing */
  }
  
  .tcl-social-link {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    width: 24px; /* Much smaller like STQC */
    height: 24px;
    border-radius: 0.25rem; /* Smaller radius */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--tcl-transition);
  }
  
  .tcl-social-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--tcl-white);
    transform: translateY(-1px);
  }
  
  .tcl-social-link:visited {
    background: rgba(255,255,255,0.1);
    color: var(--tcl-white) !important;
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  /* Language Switcher */
  .tcl-lang-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tcl-white);
    padding: 0.3rem 0.5rem; /* Smaller padding */
    border-radius: 0.25rem; /* Smaller radius */
    font-size: 0.75rem; /* Smaller font */
    font-weight: 600;
    cursor: pointer;
    transition: var(--tcl-transition);
    min-height: 24px; /* Fixed height */
  }
  
  .tcl-lang-select:hover {
    background: var(--tcl-white);
    color: var(--tcl-primary) !important;
  }
  
  .tcl-lang-select:focus {
    outline: 2px solid var(--tcl-white);
    outline-offset: 2px;
    background: var(--tcl-white);
    color: var(--tcl-primary) !important;
  }
  
  /* Fix dropdown option colors for accessibility */
  .tcl-lang-select option {
    background: var(--tcl-white);
    color: var(--tcl-primary);
    padding: 0.5rem;
  }
  
  .tcl-lang-select option:hover,
  .tcl-lang-select option:focus {
    background: var(--tcl-primary) !important;
    color: var(--tcl-white) !important;
  }
  

  
  /* Main Header - Compact like reference website */
  .tcl-main-header {
    background: #fff; /* Exact white color like reference */
    padding: 0.2rem 0; /* Even more compact padding */
    border-bottom: 1px solid #e9ecef; /* Lighter border like reference */
    min-height: 35px; /* More compact height */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 998; /* Lower than navigation but higher than content */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow like reference */
  }
  
  .tcl-header-content {
    display: flex;
    justify-content: flex-start; /* Start from left side */
    align-items: center;
    gap: 1rem; /* More compact gap */
    width: 100%;
    min-height: 28px; /* More compact content height */
  }
  
  /* STQC Style Brand Link */
  .tcl-brand-link.logo-align {
    display: flex;
    align-items: center; /* Center align with logo */
    gap: 0.75rem; /* More compact spacing */
    text-decoration: none;
    color: inherit;
    transition: var(--tcl-transition);
    padding: 0.3rem 0; /* More compact vertical padding */
    min-height: 60px; /* More compact height */
  }
  

  
  /* 
   * Government Logo Guidelines:
   * - Minimum size: 48px x 48px (for accessibility)
   * - Recommended desktop: 80px x 80px (5rem) - Compact for better fit
   * - Should maintain aspect ratio and clarity
   * - Must be visible against background
   */
  .tcl-logo {
    width: 4rem; /* More compact logo size */
    height: 4rem;
    object-fit: contain;
    filter: none; /* Remove filter for cleaner look like reference */
    transition: all 0.2s ease;
  }
  
  /* Responsive logo sizing - Maintain proportions */
  @media (max-width: 768px) {
    .tcl-logo {
      width: 3.5rem; /* More compact tablet size */
      height: 3.5rem;
    }
    
    .logo-align {
      gap: 0.6rem; /* More compact spacing */
    }
    
    .tcl-org-name {
      font-size: 1rem; /* More compact text */
    }
    
    .brand-text {
      min-height: 48px; /* More compact height for tablet */
    }
  }
  
  @media (max-width: 480px) {
    .tcl-logo {
      width: 3rem; /* More compact mobile size */
      height: 3rem;
      min-width: 48px; /* Maintain accessibility requirement */
      min-height: 48px;
    }
    
    .logo-align {
      gap: 0.5rem; /* More compact spacing */
    }
    
    .tcl-org-name {
      font-size: 0.9rem; /* More compact text */
    }
    
    .brand-text {
      min-height: 40px; /* More compact height for mobile */
    }
  }
  

  /* STQC Style Brand Text Container */
  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically with logo */
    align-items: flex-start;
    flex: 1;
    min-height: 60px; /* More compact height to match logo */
  }
  
  /* Center the organization name with the logo */
  .tcl-org-name {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    font-weight: 600;
    font-size: 1.1rem; /* Compact font size */
    color: var(--tcl-primary);
  }
  
  /* Ensure the brand container is properly sized */
  .tcl-brand.logo-sec {
    display: flex;
    align-items: center;
    min-height: 60px; /* More compact height */
  }
  
  /* Header Actions - Right Aligned */
  /* Styles moved to header-actions.css for better organization */
  
  /* Hamburger Menu - Basic structure only */
  .tcl-hamburger {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    width: 1.25rem;
  }
  
  .tcl-hamburger span {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: var(--tcl-transition);
  }
  
  /* Search Bar */
  .tcl-search-bar {
    background: var(--tcl-gray-50);
    border-bottom: 1px solid var(--tcl-gray-200);
    padding: 1rem 0;
    display: none;
  }
  
  .tcl-search-bar.show {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-search-form {
    display: flex;
    max-width: 32rem;
    margin: 0 auto;
    background: var(--tcl-white);
    border: 2px solid var(--tcl-primary);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--tcl-shadow-md);
  }
  
  .tcl-search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    background: transparent;
  }
  
  .tcl-search-input:focus {
    outline: none;
  }
  
  .tcl-search-submit,
  .tcl-search-close {
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: var(--tcl-transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tcl-search-submit {
    background: var(--tcl-primary); /* Fixed typo - was var(--l-primary) */
    color: var(--tcl-white);
  }
  
  .tcl-search-submit:hover {
    background: var(--tcl-primary-light);
  }
  
  .tcl-search-close {
    background: var(--tcl-danger);
    color: var(--tcl-white);
    font-size: 1.25rem;
  }
  
  .tcl-search-close:hover {
    background: #c53030;
  }
  
  /* Shop Menu */
  .tcl-shop-menu {
    background: var(--tcl-white);
    border-bottom: 1px solid var(--tcl-gray-200);
    padding: 1.5rem 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .tcl-shop-menu.show {
    display: block;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-menu-content {
    position: relative;
    text-align: center;
  }
  
  .tcl-shop-menu h3 {
    color: var(--tcl-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }
  
  .tcl-shop-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 40rem;
    margin: 0 auto;
  }
  
  .tcl-shop-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--tcl-gray-50);
    border: 2px solid var(--tcl-gray-200);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--tcl-gray-700);
    transition: var(--tcl-transition);
    min-width: 140px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .tcl-shop-link:hover,
  .tcl-shop-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    outline: none;
  }
  
  .tcl-shop-link.official-store:hover,
  .tcl-shop-link.official-store:focus {
    border-color: var(--tcl-primary);
    background: var(--tcl-primary);
    color: white;
  }
  
  .tcl-shop-link.flipkart:hover,
  .tcl-shop-link.flipkart:focus {
    border-color: #f16e00;
    background: #f16e00;
    color: white;
  }
  
  .tcl-shop-link.amazon:hover,
  .tcl-shop-link.amazon:focus {
    border-color: #ff9900;
    background: #ff9900;
    color: white;
  }
  
  .tcl-shop-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .tcl-shop-link span {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .tcl-shop-link small {
    font-size: 0.75rem;
    opacity: 0.8;
  }
  
  .tcl-shop-link:hover i,
  .tcl-shop-link:focus i {
    color: white !important;
  }
  
  .tcl-shop-close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--tcl-danger);
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1;
    transition: var(--tcl-transition);
  }
  
  .tcl-shop-close:hover {
    background: #c53030;
  }
  
  /* Navigation */
  .tcl-navigation {
    background: var(--tcl-gray-100);
    border-bottom: 1px solid var(--tcl-gray-200);
    display: none;
    position: relative;
    z-index: 999; /* Ensure menu is above other elements */
  }
  
  .tcl-navigation.show {
    display: block;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Mobile Menu Close Button */
  .tcl-mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid var(--tcl-gray-200);
    background: var(--tcl-white);
  }
  
  .tcl-mobile-close {
    background: var(--tcl-danger);
    color: var(--tcl-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tcl-mobile-close:hover,
  .tcl-mobile-close:focus {
    background: var(--tcl-danger-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .tcl-mobile-close:focus-visible {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
  }
  
  /* Hide mobile close button on desktop */
  @media (min-width: 901px) {
    .tcl-mobile-menu-header {
      display: none;
    }
  }
  
  /* Enhanced focus styles for better keyboard navigation */
  .tcl-nav-button:focus-visible,
  .tcl-nav-link:focus-visible {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
  }
  
  .tcl-nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .tcl-nav-item {
    position: relative;
    border-bottom: 1px solid var(--tcl-gray-200);
  }
  
  .tcl-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem; /* Reduced from 1rem for compact height */
    color: var(--tcl-gray-700);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem; /* Slightly smaller font */
    transition: var(--tcl-transition);
    border: 2px solid transparent;
    outline: none;
  }
  
  /* Direct navigation links (without submenus) - should NOT be bold */
  .tcl-nav-item:not(.tcl-has-submenu) > .tcl-nav-link {
    font-weight: 400 !important;
    font-size: var(--text-base);
    padding: var(--spacing-md) var(--spacing-lg);
    justify-content: center;
    align-items: center;
    border: none;
    background: var(--tcl-white);
    color: var(--tcl-gray-700);
    transition: var(--tcl-transition);
    min-height: 55px;
    height: 100%;
    display: flex;
    border-right: 1px solid var(--tcl-gray-200);
    white-space: nowrap;
    width: 100%;
  }
  
  /* Direct navigation links hover effect */
  .tcl-nav-item:not(.tcl-has-submenu) > .tcl-nav-link:hover {
    background: var(--tcl-primary);
    color: var(--tcl-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
  }
  
  /* Direct navigation links focus effect */
  .tcl-nav-item:not(.tcl-has-submenu) > .tcl-nav-link:focus {
    outline: 2px solid var(--tcl-accent);
    outline-offset: -2px;
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-nav-button {
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    outline: none; /* Remove default outline */
    transition: all 0.2s ease;
  }
  
  /* Ensure buttons are focusable */
  .tcl-nav-button:focus {
    outline: 2px solid var(--tcl-accent);
    outline-offset: 2px;
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
  }
  
  .tcl-nav-link-hidden {
    display: none;
  }
  
  .tcl-nav-link:hover,
  .tcl-nav-button:hover {
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-nav-link:focus,
  .tcl-nav-button:focus {
    outline: none;
    border-color: var(--tcl-accent);
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    box-shadow: inset 0 0 0 1px var(--tcl-accent);
  }
  
  /* Enhanced keyboard focus styles */
  .tcl-nav-link:focus-visible,
  .tcl-nav-button:focus-visible {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
  }
  
  .tcl-nav-button[aria-expanded="true"] {
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-submenu-arrow {
    font-size: 0.75rem;
    transition: var(--tcl-transition);
    margin-left: 0.5rem;
  }
  
  .tcl-nav-item.open .tcl-submenu-arrow {
    transform: rotate(180deg);
  }
  
  /* Submenu - Base styles */
  .tcl-submenu {
    background: #ffffff; /* Solid white background */
    border-left: 3px solid var(--tcl-accent);
    list-style: none;
    margin: 0;
    padding: 0;
    display: none !important; /* Hidden by default - use !important to override conflicts */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  
  /* Show when parent has .open class - use !important to ensure it works */
  .tcl-nav-item.open > .tcl-submenu {
    display: block !important;
  }
  
  .tcl-submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .tcl-submenu li:last-child {
    border-bottom: none;
  }
  
  .tcl-submenu a {
    display: block;
    padding: 0.75rem 1.5rem; /* Better padding like reference */
    color: #333333; /* Dark text for better visibility */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    outline: none;
    background: #ffffff; /* Solid white background */
  }
  
  .tcl-submenu a:hover {
    background: var(--tcl-primary);
    color: #000000; /* Black text on hover */
    padding-left: 2rem; /* Smooth left padding animation */
    transform: translateX(5px); /* Subtle slide effect */
  }
  
  .tcl-submenu a:focus {
    outline: none;
    background: var(--tcl-primary);
    color: #000000; /* Black text on focus */
    padding-left: 2rem;
    box-shadow: inset 0 0 0 2px var(--tcl-accent);
  }
  
  /* Ensure submenu links have proper contrast */
  .tcl-submenu a {
    background: #ffffff !important; /* Force white background */
  }
  
  .tcl-submenu a:hover,
  .tcl-submenu a:focus {
    background: var(--tcl-primary) !important; /* Use theme primary color */
    color: #000000 !important; /* Force black text */
  }
  
  /* Desktop Styles */
  @media (min-width: 901px) {
    .tcl-menu-btn {
      display: none;
    }
    
    .tcl-navigation {
      display: block !important;
    }
    
    .tcl-nav-list {
      flex-direction: row;
      justify-content: center; /* Center the navigation like reference */
      gap: 0;
    }
    
    .tcl-nav-item {
      border-bottom: none;
      border-right: 1px solid var(--tcl-gray-200);
    }
    
    .tcl-nav-item:last-child {
      border-right: none;
    }
    
    .tcl-nav-link {
      white-space: nowrap;
      padding: 1.2rem 2rem; /* Increased padding like India Investment Grid */
      font-weight: 600; /* Bolder text like reference */
      transition: all 0.3s ease;
    }
    
    .tcl-nav-link:hover {
      background: var(--tcl-primary);
      color: #000000; /* Black text on hover */
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    
    .tcl-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 14rem; /* Slightly wider like reference */
      border: 1px solid var(--tcl-gray-200);
      border-top: 3px solid var(--tcl-primary); /* Top border like reference */
      border-radius: 0 0 0.5rem 0.5rem; /* Rounded corners like reference */
      box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Enhanced shadow like reference */
      z-index: 1001; /* Higher than navigation */
      background: #ffffff !important; /* Solid white background */
      padding: 0.5rem 0;
    }
    
      /* Desktop submenu behavior - controlled by JavaScript .open class */
  .tcl-nav-item.open > .tcl-submenu {
    display: block !important;
  }
    
    /* Ensure submenu has solid background */
    .tcl-nav-item .tcl-submenu {
      background: #ffffff !important;
      border: 1px solid var(--tcl-gray-200);
      border-top: 3px solid var(--tcl-primary);
    }
    
    /* Desktop submenu link styles */
    .tcl-nav-item .tcl-submenu a {
      background: #ffffff !important;
      color: #333333 !important;
    }
    
      .tcl-nav-item .tcl-submenu a:hover,
  .tcl-nav-item .tcl-submenu a:focus {
    background: var(--tcl-primary) !important; /* Use theme primary color */
    color: #000000 !important; /* Black text on hover/focus */
  }
  
  /* Enhanced submenu focus styles for keyboard navigation */
  .tcl-nav-item .tcl-submenu a:focus-visible {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    background: var(--tcl-primary) !important;
    color: #000000 !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
  }
    
    /* Desktop STQC Style Adjustments - Bigger and More Visible */
    .tcl-org-name {
      font-size: 2rem; /* Much bigger on desktop for visibility */
    }
    body.tcl-high-contrast .tcl-org-name:hover {
      color: #ffffff !important;

    }
    body.tcl-high-contrast .tcl-brand-logo:hover {
      color: #ffffff !important;

    }
    body.tcl-high-contrast .tcl-logo:hover {
      color: #ffffff !important;

    }
    body.tcl-high-contrast .tcl-logo:hover img {
      filter: brightness(0) invert(1) !important;
      color: #ffffff !important;
    }
    .tcl-org-tagline {
      font-size: 1rem; /* Bigger tagline on desktop */
      color: #ffffff !important;
    }
    body.tcl-high-contrast .tcl-org-tagline {
      font-size: 1.5rem; /* Bigger tagline on desktop */
      color: #fffdfd !important;
    }
    
    .logo-align {
      gap: 1rem; /* Slightly more space on desktop */
    }
    
    /* Compact header specific adjustments - STQC Style */
    .tcl-main-header {
      min-height: 65px; /* Compact like STQC */
    }
    
    .tcl-header-content {
      min-height: 50px; /* Compact content height */
    }
  }
  
  /* Mobile and High Zoom Layout */
  @media (max-width: 767px), (min-width: 768px) and (max-width: 900px) {
    /* Common styles for mobile and high zoom */
    .tcl-header-content {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem; /* Reduced from 1rem */
      min-height: auto; /* Allow flexible height on mobile */
    }
    
    .tcl-brand {
      text-align: center;
    }
    
    .tcl-main-header {
      padding: 0.75rem 0; /* Reduced mobile padding */
      min-height: auto; /* Allow flexible height on mobile */
    }
    
    .tcl-org-name {
      font-size: 1.3rem; /* Compact mobile size */
    }
    
    .tcl-org-tagline {
      font-size: 0.75rem; /* Compact mobile size */
    }
    
    .tcl-header-actions {
      flex-direction: row;
      gap: 0.25rem; /* Much smaller gap to save space */
      margin-left: auto;
      margin-top: 0;
    }
    
    .tcl-search-btn,
    .tcl-shop-btn,
    .tcl-menu-btn {
      width: auto;
      justify-content: center;
      padding: 0.25rem 0.5rem; /* Much more compact padding */
      font-size: 0.75rem; /* Smaller font size */
      min-height: 28px; /* Smaller height */
    }
    
    /* Hide text on mobile to save space, show only icons */
    .tcl-search-btn span,
    .tcl-shop-btn span,
    .tcl-menu-btn span {
      display: none;
    }
    
    /* Make icons smaller */
    .tcl-search-btn svg,
    .tcl-shop-btn svg,
    .tcl-menu-btn svg {
      width: 14px;
      height: 14px;
    }
    
    .tcl-nav-list {
      flex-direction: column;
      width: 100%;
    }
    
    .tcl-nav-item {
      border-right: none;
      border-bottom: 1px solid var(--tcl-gray-200);
    }
    
    .tcl-nav-item:last-child {
      border-bottom: none;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
      display: block;
      width: 100%;
      text-align: left;
    }
    

    
    /* Mobile shopping menu styles */
    .tcl-shop-links {
      flex-direction: column;
      gap: 0.75rem;
      max-width: 100%;
    }
    
    .tcl-shop-link {
      min-width: auto;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      padding: 0.75rem;
    }
    
    .tcl-shop-link i {
      font-size: 1.25rem;
    }
    
    .tcl-shop-menu-content {
      padding: 0 1rem;
    }
  }
  
  /* Enhanced smooth transitions for all interactive elements */
  * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Smooth entrance animations */
  .tcl-search-bar.show {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-menu.show {
    display: block;
    animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-navigation.show {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-font-menu.show {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Enhanced button animations */
  .tcl-search-btn,
  .tcl-shop-btn,
  .tcl-menu-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-search-btn::before,
  .tcl-shop-btn::before,
  .tcl-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .tcl-search-btn:hover::before,
  .tcl-shop-btn:hover::before,
  .tcl-menu-btn:hover::before {
    left: 100%;
  }
  
  .tcl-search-btn:hover,
  .tcl-shop-btn:hover,
  .tcl-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .tcl-search-btn:active,
  .tcl-shop-btn:active,
  .tcl-menu-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
  }
  
  /* Enhanced shopping links animations */
  .tcl-shop-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .tcl-shop-link:hover::before,
  .tcl-shop-link:focus::before {
    transform: translateX(100%);
  }
  
  .tcl-shop-link i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-shop-link:hover i,
  .tcl-shop-link:focus i {
    transform: scale(1.1) rotate(5deg);
  }
  
  .tcl-shop-link span,
  .tcl-shop-link small {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Staggered animation for shopping links */
  .tcl-shop-links .tcl-shop-link:nth-child(1) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  }
  
  .tcl-shop-links .tcl-shop-link:nth-child(2) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  
  .tcl-shop-links .tcl-shop-link:nth-child(3) {
    animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  }
  
  /* Enhanced navigation animations */
  .tcl-nav-link,
  .tcl-nav-button {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-nav-link::before,
  .tcl-nav-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--tcl-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
  }
  
  .tcl-nav-link:hover::before,
  .tcl-nav-button:hover::before,
  .tcl-nav-link:focus::before,
  .tcl-nav-button:focus::before {
    width: 80%;
  }
  

  
  /* Logo and brand animations */
  .tcl-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  

  
  .tcl-org-name {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  

  
  /* Social icons animation */
  .tcl-social-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-social-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--tcl-primary), var(--tcl-accent));
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  
  .tcl-social-link:hover::after {
    opacity: 1;
  }
  
  .tcl-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
  }
  
  /* Accessibility controls animations */
  .tcl-access-btn,
  .tcl-font-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-access-btn:hover,
  .tcl-font-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255,255,255,0.3);
  }
  
  /* Language selector smooth transition */
  .tcl-lang-select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tcl-lang-select:hover,
  .tcl-lang-select:focus {
    transform: scale(1.02);
  }
  
  /* Mobile hamburger animation */
  .tcl-hamburger span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  
  .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Enhanced Focus Indicators for Keyboard Navigation */
.tcl-nav-link:focus,
.tcl-nav-button:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  border-color: var(--tcl-accent);
  background: var(--tcl-primary-light);
  color: var(--tcl-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), inset 0 0 0 1px var(--tcl-accent);
  position: relative;
  z-index: 10;
}

/* Enhanced focus indicator for submenu items */
.tcl-submenu a:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  border-color: var(--tcl-accent);
  background: var(--tcl-white);
  color: var(--tcl-primary);
  padding-left: 2.25rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), inset 0 0 0 1px var(--tcl-accent);
  position: relative;
  z-index: 10;
}

/* Focus indicator for menu buttons */
.tcl-menu-btn:focus,
.tcl-search-btn:focus,
.tcl-shop-btn:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
}

/* Focus indicator for accessibility buttons */
.tcl-access-btn:focus,
.tcl-font-btn:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
}

/* Focus indicator for language selector */
.tcl-lang-select:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  border-color: var(--tcl-accent);
}

/* Focus indicator for search input */
.tcl-search-input:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  border-color: var(--tcl-accent);
}


/* Skip link focus styles */
.tcl-skip-link:focus {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: var(--tcl-primary);
  color: var(--tcl-white);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
}

/* Focus visible styles for better keyboard navigation */
.tcl-nav-link:focus-visible,
.tcl-nav-button:focus-visible,
.tcl-submenu a:focus-visible,
.tcl-menu-btn:focus-visible,
.tcl-search-btn:focus-visible,
.tcl-shop-btn:focus-visible,
.tcl-access-btn:focus-visible,
.tcl-font-btn:focus-visible,
.tcl-lang-select:focus-visible,
.tcl-search-input:focus-visible {
  outline: 3px solid var(--tcl-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
}

/* Remove outline for mouse users but keep for keyboard */
.tcl-nav-link:focus:not(:focus-visible),
.tcl-nav-button:focus:not(:focus-visible),
.tcl-submenu a:focus:not(:focus-visible),
.tcl-menu-btn:focus:not(:focus-visible),
.tcl-search-btn:focus:not(:focus-visible),
.tcl-shop-btn:focus:not(:focus-visible),
.tcl-access-btn:focus:not(:focus-visible),
.tcl-font-btn:focus:not(:focus-visible),
.tcl-lang-select:focus:not(:focus-visible),
.tcl-search-input:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
  
  /* Loading shimmer effect for buttons */
  .tcl-search-btn:active,
  .tcl-shop-btn:active,
  .tcl-menu-btn:active {
    background: linear-gradient(90deg, var(--tcl-primary) 25%, var(--tcl-primary-light) 50%, var(--tcl-primary) 75%);
    background-size: 200% 100%;
    animation: shimmer 0.6s ease-in-out;
  }
  
  /* Top bar elements animation */
  .tcl-gov-badge {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  }
  
  .tcl-top-actions {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  }
  
  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .tcl-shop-link:hover i,
    .tcl-shop-link:focus i {
      transform: none;
    }
    
    .tcl-brand-link:hover .tcl-logo {
      transform: none;
    }
  }
  
  /* High Contrast Mode - Full Page */
  .tcl-high-contrast {
    --tcl-primary: #000080;
    --tcl-white: #ffffff;
    --tcl-gray-700: #000000;
    --tcl-gray-600: #000000;
  }
  
  .tcl-high-contrast .tcl-nav-link:hover {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* Full page high contrast styles */
  body.tcl-high-contrast {
    /* background: #ffffff !important; */
    color: #000000 !important;
  }
  
  body.tcl-high-contrast * {
    border-color: #000000 !important;
  }
  
  body.tcl-high-contrast a {
    color: #101010 !important;
  }
  
  /* Override for footer links in high contrast mode */
  body.tcl-high-contrast .site-footer a,
  body.tcl-high-contrast .gigw-mandatory-links a,
  body.tcl-high-contrast .footer-section a {
    color: #000000 !important;
  }
  
  body.tcl-high-contrast a:hover,
  body.tcl-high-contrast a:focus {
    color: #ffffff !important;
    background: #000080 !important;
  }
  
  /* Override for footer links hover states in high contrast mode */
  body.tcl-high-contrast .site-footer a:hover,
  body.tcl-high-contrast .site-footer a:focus,
  body.tcl-high-contrast .gigw-mandatory-links a:hover,
  body.tcl-high-contrast .gigw-mandatory-links a:focus,
  body.tcl-high-contrast .footer-section a:hover,
  body.tcl-high-contrast .footer-section a:focus {
    color: #ffffff !important;
    background: #000000 !important;
  }
  
  body.tcl-high-contrast button {
   /* background: #ffffff !important; */
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast button:hover,
  body.tcl-high-contrast button:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }

 
  
  /* High contrast skip button */
  body.tcl-high-contrast .tcl-skip-link {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  body.tcl-high-contrast .tcl-skip-link:hover,
  body.tcl-high-contrast .tcl-skip-link:focus {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    outline: 3px solid #000080 !important;
    outline-offset: 2px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8) !important;
    z-index: 10000 !important;
  }
  
  /* High contrast accessibility buttons */
  body.tcl-high-contrast .tcl-access-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-access-btn:hover,
  body.tcl-high-contrast .tcl-access-btn:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast font button */
  body.tcl-high-contrast .tcl-font-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-font-btn:hover,
  body.tcl-high-contrast .tcl-font-btn:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast font icon */
  body.tcl-high-contrast .tcl-font-icon {
    color: #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-font-btn:hover .tcl-font-icon,
  body.tcl-high-contrast .tcl-font-btn:focus .tcl-font-icon {
    color: #ffffff !important;
  }
  
  /* High contrast font menu */
  body.tcl-high-contrast .tcl-font-menu {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
  }
  
  body.tcl-high-contrast .tcl-font-menu a {
    color: #000000 !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-font-menu a:hover,
  body.tcl-high-contrast .tcl-font-menu a:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast social links */
  body.tcl-high-contrast .tcl-social-link {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-social-link:hover,
  body.tcl-high-contrast .tcl-social-link:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  /* High contrast language selector */
  body.tcl-high-contrast .tcl-lang-select {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select:hover,
  body.tcl-high-contrast .tcl-lang-select:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select option {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  body.tcl-high-contrast .tcl-lang-select option:hover,
  body.tcl-high-contrast .tcl-lang-select option:focus,

  
  /* High contrast text input and form elements */
  body.tcl-high-contrast input,
  body.tcl-high-contrast textarea,
  body.tcl-high-contrast select {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast input:focus,
  body.tcl-high-contrast textarea:focus,
  body.tcl-high-contrast select:focus {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000080 !important;
    outline: 3px solid #000080 !important;
  }
  
  /* High contrast navigation elements */
  body.tcl-high-contrast .tcl-nav-link {
    color: #000000 !important;
    background: transparent !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-nav-link:hover,
  body.tcl-high-contrast .tcl-nav-link:focus {
    background: #000080 !important;
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
  }
  
  /* High contrast submenu */
  body.tcl-high-contrast .tcl-submenu {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5) !important;
  }
  
  body.tcl-high-contrast .tcl-submenu a {
    color: #000000 !important;
    border-bottom: 1px solid #cccccc !important;
  }
  
  body.tcl-high-contrast .tcl-submenu a:hover,
  body.tcl-high-contrast .tcl-submenu a:focus {
    background: #000080 !important;
    color: #ffffff !important;
  }
  
  /* High contrast main content areas */
  body.tcl-high-contrast main,
  body.tcl-high-contrast article,
  body.tcl-high-contrast section {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  /* High contrast headings */
  body.tcl-high-contrast h1,
  body.tcl-high-contrast h2,
  body.tcl-high-contrast h3,
  body.tcl-high-contrast h4,
  body.tcl-high-contrast h5,
  body.tcl-high-contrast h6 {
    color: #000000 !important;
  }
  
  /* Override for footer elements in high contrast mode */
  body.tcl-high-contrast .site-footer,
  body.tcl-high-contrast .site-footer *,
  body.tcl-high-contrast .site-footer p,
  body.tcl-high-contrast .site-footer span,
  body.tcl-high-contrast .site-footer li,
  body.tcl-high-contrast .site-footer div {
    color: #000000 !important;
    background-color: #ffffff !important;
  }
  
  body.tcl-high-contrast .gigw-mandatory-links,
  body.tcl-high-contrast .gigw-mandatory-links * {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: #000000 !important;
  }
  
  body.tcl-high-contrast .footer-section {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
  }
  
  /* Override for contact information in high contrast mode */
  body.tcl-high-contrast .footer-section:first-child,
  body.tcl-high-contrast .footer-section:first-child *,
  body.tcl-high-contrast .footer-section:first-child h2,
  body.tcl-high-contrast .footer-section:first-child ul,
  body.tcl-high-contrast .footer-section:first-child li,
  body.tcl-high-contrast .footer-section:first-child p,
  body.tcl-high-contrast .footer-section:first-child span {
    color: #000000 !important;
    background-color: #ffffff !important;
  }
  
  /* Specific override for contact email */
  body.tcl-high-contrast .contact-email,
  body.tcl-high-contrast .contact-email *,
  body.tcl-high-contrast .contact-email a {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
  }
  
  body.tcl-high-contrast .contact-email a:hover {
    color: #ffffff !important;
    background-color: #000000 !important;
  }
  
  /* Comprehensive footer text override for high contrast mode */
  body.tcl-high-contrast .site-footer,
  body.tcl-high-contrast .site-footer *,
  body.tcl-high-contrast .site-footer p,
  body.tcl-high-contrast .site-footer span,
  body.tcl-high-contrast .site-footer li,
  body.tcl-high-contrast .site-footer div,
  body.tcl-high-contrast .site-footer h1,
  body.tcl-high-contrast .site-footer h2,
  body.tcl-high-contrast .site-footer h3,
  body.tcl-high-contrast .site-footer h4,
  body.tcl-high-contrast .site-footer h5,
  body.tcl-high-contrast .site-footer h6,
  body.tcl-high-contrast .site-footer strong,
  body.tcl-high-contrast .site-footer b,
  body.tcl-high-contrast .site-footer em,
  body.tcl-high-contrast .site-footer i {
    color: #000000 !important;
  }
  
  /* Ensure footer background is white */
  body.tcl-high-contrast .site-footer {
    background: #ffffff !important;
    border-top-color: #000000 !important;
  }
  
  /* Override any remaining white text */
  body.tcl-high-contrast .site-footer *:not(a) {
    color: #000000 !important;
  }
  
  /* High contrast tables */
  body.tcl-high-contrast table {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
  }
  
  body.tcl-high-contrast th,
  body.tcl-high-contrast td {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
  }
  
  body.tcl-high-contrast th {
    background: #cccccc !important;
    color: #000000 !important;
    font-weight: bold !important;
  }
  
  /* High contrast cards and panels */
  body.tcl-high-contrast .card,
  body.tcl-high-contrast .panel,
  body.tcl-high-contrast .widget {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  /* Font Size Scaling - Full Page (Instant) */
  body.tcl-font-large {
    font-size: 115% !important;
  }
  
  body.tcl-font-large * {
    font-size: inherit !important;
  }
  
  body.tcl-font-small {
    font-size: 85% !important;
  }
  
  body.tcl-font-small * {
    font-size: inherit !important;
  }
  
  /* Header specific font scaling (maintains existing behavior) */
  .tcl-gov-header.tcl-font-large {
    font-size: 115%;
  }
  
  .tcl-gov-header.tcl-font-small {
    font-size: 85%;
  }
  
  /* Print Styles */
  @media print {
    .tcl-top-bar,
    .tcl-search-bar,
    .tcl-shop-menu,
    .tcl-header-actions {
      display: none !important;
    }
  }
  
  /* Body margin adjustment for compact header */
  body {
    margin-top: 24px !important; /* Adjusted for smaller top bar height */
  }
  
  /* Medium Zoom (200%) */
  @media (min-width: 901px) and (max-width: 1200px) {
    .tcl-org-name {
      font-size: 1.5rem;
    }
    
    .tcl-org-tagline {
      font-size: 0.85rem;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
    
    .tcl-submenu {
      min-width: 10rem;
    }
    
    /* Ensure submenus are visible */
    .tcl-nav-item.open > .tcl-submenu {
      display: block !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 900px) {
    /* 400% zoom equivalent */
    .tcl-header-content {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    
    .tcl-brand {
      text-align: center;
    }
    
    .tcl-org-name {
      font-size: 1.25rem;
    }
    
    .tcl-org-tagline {
      font-size: 0.8rem;
    }
    
    .tcl-nav-list {
      flex-direction: column;
      width: 100%;
    }
    
    .tcl-nav-item {
      border-right: none;
      border-bottom: 1px solid var(--tcl-gray-200);
    }
    
    .tcl-nav-item:last-child {
      border-bottom: none;
    }
    
    .tcl-nav-link,
    .tcl-nav-button {
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
    }
    

  }
  


  /* Skip link styles - hidden by default, visible on focus */
  .tcl-skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    background: var(--tcl-primary);
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 100000;
    transition: top 0.2s ease;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  .tcl-skip-link:focus {
    top: 10px;
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  /* High contrast mode skip link */
  body.tcl-high-contrast .tcl-skip-link {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  body.tcl-high-contrast .tcl-skip-link:focus {
    outline: 4px solid #ffff00;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #000000;
  }

  /* Ensure main content is focusable for skip link */
  #main-content {
    outline: none;
  }

  #main-content:focus {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* High contrast mode main content focus */
  body.tcl-high-contrast #main-content:focus {
    outline: 4px solid #ffff00;
    outline-offset: 2px;
  }

  /* Screen reader only class for accessibility */
  .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  /* Enhanced language selector styles with proper z-index hierarchy */
  .tcl-language {
    position: relative;
    z-index: 999999999; /* Maximum z-index to ensure it's above everything */
  }

  .tcl-lang-select {
    background: var(--tcl-white);
    border: 2px solid var(--tcl-gray-300);
    border-radius: 6px; /* Slightly more rounded like government sites */
    padding: 8px 16px; /* More padding for better touch targets */
    font-size: 14px;
    color: var(--tcl-gray-700);
    cursor: pointer;
    min-width: 130px; /* Slightly wider for better readability */
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    font-weight: 600; /* Bolder text like government sites */
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }

  .tcl-lang-current {
    flex: 1;
    font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif; /* Government font style */
  }

  .tcl-lang-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    margin-left: 8px;
    color: var(--tcl-primary); /* Colored arrow like government sites */
  }

  .tcl-lang-select[aria-expanded="true"] .tcl-lang-arrow {
    transform: rotate(180deg);
  }

  .tcl-lang-select:hover {
    border-color: var(--tcl-primary);
    background-color: var(--tcl-gray-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .tcl-lang-select:focus {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    border-color: var(--tcl-accent);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }

  /* Custom dropdown styles with proper z-index */
  .tcl-lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tcl-white);
    border: 2px solid var(--tcl-primary);
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* Stronger shadow like government sites */
    z-index: 999999; /* Maximum z-index to appear above everything */
    display: none;
    margin-top: -2px;
    min-width: 130px;
    backdrop-filter: blur(10px); /* Modern glass effect */
  }

  .tcl-lang-dropdown.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out; /* Smooth animation */
  }

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

  /* Language option styles with government website aesthetic */
  

  .tcl-lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
  }

  .tcl-lang-option:hover {
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    padding-left: 22px; /* Slight indent on hover */
  }

  .tcl-lang-option:focus {
    outline: 3px solid var(--tcl-accent);
    outline-offset: -3px;
    background: var(--tcl-primary-light);
    color: var(--tcl-white);
    padding-left: 22px;
  }

  .tcl-lang-option[aria-selected="true"] {
    background: var(--tcl-primary);
    color: var(--tcl-white);
    font-weight: 600;
    position: relative;
  }

  .tcl-lang-option[aria-selected="true"]::before {
    content: '✓';
    position: absolute;
    right: 18px;
    color: var(--tcl-white);
    font-weight: bold;
  }

  /* Language selector positioning in top bar with maximum z-index */
  .tcl-top-actions .tcl-language {
    margin-left: 20px;
    position: relative;
    z-index: 999999999; /* Maximum z-index for top bar */
    display: block; /* Ensure it's visible */
  }

  .tcl-top-actions .tcl-lang-select {
    background: rgba(255,255,255,0.08); /* Very light background like reference */
    border: 1px solid rgba(255,255,255,0.15); /* Light border like reference */
    border-radius: 3px; /* Exact radius like reference */
    padding: 2px 5px; /* Exact padding like reference */
    font-size: 9px; /* Exact font size like reference */
    color: #fff; /* White text like reference */
    cursor: pointer;
    min-width: 65px; /* Exact width like reference */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.15s ease; /* Fast transition like reference */
    font-weight: 400; /* Light weight like reference */
    text-align: left;
    box-shadow: none; /* No shadow like reference */
  }

  .tcl-top-actions .tcl-lang-select:hover {
    background: rgba(255,255,255,0.15); /* Light hover like reference */
    border-color: rgba(255,255,255,0.25); /* Light hover border like reference */
    transform: none; /* No transform like reference */
    box-shadow: none; /* No shadow like reference */
  }

  .tcl-top-actions .tcl-lang-select:focus {
    outline: 1px solid rgba(255,255,255,0.6); /* Light outline like reference */
    outline-offset: 1px;
    border-color: rgba(255,255,255,0.25); /* Light focus border like reference */
    background: rgba(255,255,255,0.15); /* Light focus background like reference */
    box-shadow: none; /* No shadow like reference */
    transform: none; /* No transform like reference */
  }

  .tcl-top-actions .tcl-lang-dropdown {
    z-index: 9999999999; /* Maximum z-index for top bar dropdown */
    min-width: 110px;
    right: auto;
    left: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: absolute; /* Ensure absolute positioning */
    top: calc(100% + 4px); /* Position exactly below button with small gap */
    background: #ffffff; /* Solid white background */
    border: 1px solid var(--tcl-gray-200);
    border-radius: 4px;
    padding: 0.5rem 0;
    display: none; /* Hidden by default */
    /* Fix positioning issues */
    margin: 0;
    transform: none;
    transform-origin: top left;
  }
  
  /* Show dropdown when active */
  .tcl-top-actions .tcl-lang-dropdown.show {
    display: block;
  }
  
  /* Language options styling */
  .tcl-top-actions .tcl-lang-option {
    padding: 0.5rem 1rem;
    color: #333333;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: left;
    width: 100%;
    font-size: 12px;
  }
  
          .tcl-top-actions .tcl-lang-option:hover {
          background: var(--tcl-primary);
          color: #000000;
        }
        
        .tcl-top-actions .tcl-lang-option[aria-selected="true"] {
          background: var(--tcl-primary);
          color: #000000;
          font-weight: 600;
        }

  /* Header Language Selector - Moved to main header for proper z-index */
  .tcl-header-language {
    margin-left: 1rem;
    position: relative;
    z-index: 1001; /* Higher than header actions but lower than dropdowns */
  }

  .tcl-header-language .tcl-lang-select {
    background: var(--tcl-white);
    border: 2px solid var(--tcl-gray-300);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--tcl-gray-700);
    cursor: pointer;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    font-weight: 600;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .tcl-header-language .tcl-lang-select:hover {
    border-color: var(--tcl-primary);
    background-color: var(--tcl-gray-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .tcl-header-language .tcl-lang-select:focus {
    outline: 3px solid var(--tcl-accent);
    outline-offset: 2px;
    border-color: var(--tcl-accent);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }

  .tcl-header-language .tcl-lang-dropdown {
    z-index: 999999; /* High z-index for header dropdown */
    min-width: 110px;
    right: auto;
    left: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    /* Fix positioning issues */
    position: absolute;
    top: calc(100% + 4px);
    margin: 0;
    transform: none;
    transform-origin: top left;
    background: var(--tcl-white);
    border: 2px solid var(--tcl-primary);
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 0.5rem 0;
    display: none;
  }

  /* Responsive language selector */
  @media (max-width: 768px) {
    .tcl-top-actions .tcl-language {
      margin-left: 15px;
    }
    
    .tcl-top-actions .tcl-lang-select {
      min-width: 100px;
      font-size: 12px;
      padding: 5px 10px;
    }
    
    .tcl-top-actions .tcl-lang-dropdown {
      min-width: 100px;
    }

    .tcl-header-language {
      margin-left: 0.5rem;
    }
    
    .tcl-header-language .tcl-lang-select {
      min-width: 100px;
      font-size: 12px;
      padding: 5px 10px;
    }
    
    .tcl-header-language .tcl-lang-dropdown {
      min-width: 100px;
    }
  }

  /* High contrast mode for language selector */
  body.tcl-high-contrast .tcl-lang-select {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
  }

  body.tcl-high-contrast .tcl-lang-select:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }

  body.tcl-high-contrast .tcl-lang-select:focus {
    outline: 4px solid #ffff00;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #000000;
  }

  body.tcl-high-contrast .tcl-lang-dropdown {
    background: #000000;
    border-color: #ffffff;
  }

  body.tcl-high-contrast .tcl-lang-option {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
  }

  body.tcl-high-contrast .tcl-lang-option:hover,
  body.tcl-high-contrast .tcl-lang-option:focus,
  body.tcl-high-contrast .tcl-lang-option[aria-selected="true"] {
    background: #ffff00;
    color: #000000;
  }

  /* ===== PROFESSIONAL NAVIGATION STYLING ===== */
/* Enhanced navigation with theme colors and professional appearance */

.tcl-navigation {
  background: var(--tcl-white);
  border-bottom: 2px solid var(--tcl-primary);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
  position: relative;
}

.tcl-navigation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tcl-primary) 0%, var(--tcl-accent) 50%, var(--tcl-primary) 100%);
}

.tcl-nav-list {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  background: var(--tcl-white);
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
}

.tcl-nav-item {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--tcl-white);
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}

.tcl-nav-button {
  background: var(--tcl-white);
  border: none;
  color: var(--tcl-gray-700);
  font-family: var(--tcl-font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  transition: var(--tcl-transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  min-height: 55px;
  height: 100%;
  border-right: 1px solid var(--tcl-gray-200);
  white-space: nowrap;
  width: 100%;
}

.tcl-nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--tcl-primary) 0%, var(--tcl-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.tcl-nav-button:hover {
  color: var(--tcl-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
  border-right-color: var(--tcl-primary);
}

.tcl-nav-button:hover::before {
  opacity: 1;
}

.tcl-nav-button:focus {
  outline: 2px solid var(--tcl-accent);
  outline-offset: -2px;
  color: var(--tcl-white);
  transform: translateY(-1px);
}

.tcl-nav-button:focus::before {
  opacity: 1;
}

.tcl-nav-button[aria-expanded="true"] {
  background: var(--tcl-primary);
  color: var(--tcl-white);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  border-right-color: var(--tcl-primary);
}

.tcl-nav-button[aria-expanded="true"]::before {
  opacity: 1;
}

.tcl-submenu-arrow {
  font-size: var(--text-sm);
  transition: var(--tcl-transition);
  color: inherit;
  margin-left: var(--spacing-sm);
  opacity: 0.8;
}

.tcl-nav-button:hover .tcl-submenu-arrow,
.tcl-nav-button:focus .tcl-submenu-arrow {
  opacity: 1;
  transform: scale(1.1);
}

.tcl-nav-button[aria-expanded="true"] .tcl-submenu-arrow {
  transform: rotate(180deg) scale(1.1);
}

/* Enhanced Submenu Styling */
.tcl-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--tcl-white);
  border: 1px solid var(--tcl-gray-200);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(255, 107, 53, 0.1);
  z-index: 1000;
  padding: 0 !important;
  margin-top: 4px;
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--tcl-primary);
}

/* Desktop-specific submenu link styles - override mobile styles */
@media (min-width: 1025px) {
  .tcl-submenu .tcl-nav-link {
    padding: var(--spacing-xs) var(--spacing-md) !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
    border-left: 4px solid transparent !important;
    min-height: auto !important;
    line-height: 1.2 !important;
  }
}

.tcl-submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: var(--tcl-white);
  border: 1px solid var(--tcl-gray-200);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  z-index: -1;
}

.tcl-submenu .tcl-nav-item {
  margin: 0;
  padding: 0;
  background: transparent;
}

.tcl-submenu .tcl-nav-link {
  display: block !important;
  padding: var(--spacing-xs) var(--spacing-md) !important;
  color: var(--tcl-gray-700) !important;
  text-decoration: none;
  font-family: var(--tcl-font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  transition: var(--tcl-transition);
  border-left: 4px solid transparent;
  margin: 0 !important;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  text-align: left !important;
  min-height: auto !important;
  line-height: 1.2 !important;
}

.tcl-submenu .tcl-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--tcl-primary) 0%, var(--tcl-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.tcl-submenu .tcl-nav-link:hover {
  color: var(--tcl-white);
  border-left-color: var(--tcl-accent);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.tcl-submenu .tcl-nav-link:hover::before {
  opacity: 1;
}

.tcl-submenu .tcl-nav-link:focus {
  color: var(--tcl-white);
  outline: 2px solid var(--tcl-accent);
  outline-offset: -2px;
  border-left-color: var(--tcl-accent);
}

.tcl-submenu .tcl-nav-link:focus::before {
  opacity: 1;
}

/* Mobile Menu Header */
.tcl-mobile-menu-header {
  display: none;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--tcl-primary) 0%, var(--tcl-accent) 100%);
  border-bottom: 1px solid var(--tcl-primary-dark);
  position: relative;
}

.tcl-mobile-menu-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.tcl-mobile-close {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--tcl-white);
  color: var(--tcl-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--text-xl);
  font-weight: 600;
  transition: var(--tcl-transition);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.tcl-mobile-close:hover {
  background: var(--tcl-white);
  color: var(--tcl-primary);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.tcl-mobile-close:focus {
  outline: 2px solid var(--tcl-white);
  outline-offset: 2px;
  background: var(--tcl-white);
  color: var(--tcl-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tcl-mobile-menu-header {
    display: block;
  }
  
  .tcl-nav-list {
    flex-direction: column;
    gap: 0;
    background: var(--tcl-gray-50);
  }
  
  .tcl-nav-item {
    border-right: none;
    border-bottom: 1px solid var(--tcl-gray-200);
  }
  
  .tcl-nav-button {
    width: 100%;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-right: none;
    border-bottom: 1px solid var(--tcl-gray-200);
    min-height: 55px;
    background: var(--tcl-white);
    color: var(--tcl-gray-700);
  }
  
  .tcl-nav-button:hover {
    background: var(--tcl-primary);
    color: var(--tcl-white);
    transform: none;
  }
  
  .tcl-submenu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
    background: var(--tcl-gray-100);
    border-top: 1px solid var(--tcl-gray-200);
    backdrop-filter: none;
  }
  
  .tcl-submenu::before {
    display: none;
  }
  
  .tcl-submenu .tcl-nav-link {
    padding-left: calc(var(--spacing-xl) + var(--spacing-lg));
    border-left: none;
    border-bottom: 1px solid var(--tcl-gray-200);
    margin: 0;
    border-radius: 0;
  }
  
  .tcl-submenu .tcl-nav-link:hover {
    transform: none;
    border-left: none;
    border-bottom-color: var(--tcl-primary);
    background: var(--tcl-primary);
    color: var(--tcl-white);
  }
  
  .tcl-submenu .tcl-nav-link::before {
    display: none;
  }
}

/* High contrast mode support */
body.tcl-high-contrast .tcl-nav-button {
  border: 2px solid var(--tcl-gray-700);
}

body.tcl-high-contrast .tcl-nav-button:hover,
body.tcl-high-contrast .tcl-nav-button:focus {
  background: var(--tcl-gray-700);
  color: var(--tcl-white);
  outline: 3px solid var(--tcl-accent);
}

body.tcl-high-contrast .tcl-submenu {
  border: 3px solid var(--tcl-gray-700);
  box-shadow: 0 0 0 3px var(--tcl-accent);
}

body.tcl-high-contrast .tcl-submenu .tcl-nav-link {
  border: 1px solid var(--tcl-gray-700);
}

body.tcl-high-contrast .tcl-submenu .tcl-nav-link:hover,
body.tcl-high-contrast .tcl-submenu .tcl-nav-link:focus {
  background: var(--tcl-gray-700);
  color: var(--tcl-white);
  outline: 2px solid var(--tcl-accent);
}

/* ===== Compatibility fallbacks for validators/older browsers (do not edit core) ===== */
/* Provide defaults for environments that don't understand env(safe-area-*) in calc() */
.wp-lightbox-overlay .close-button {
  top: 16px;
  right: 16px;
}

/* Render emblem white on dark top bar for better contrast */
.tcl-gov-badge .tcl-emblem {
  filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0,0,0,0.4));
}

/* Print overrides: ensure top header and navigation are printed */
@media print {
  .tcl-gov-header,
  .tcl-top-bar,
  .tcl-main-header,
  .tcl-navigation {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    box-shadow: none !important;
  }

  /* Hide interactive-only UI in print */
  .tcl-mobile-menu-header,
  .tcl-menu-btn,
  .tcl-search-bar,
  .tcl-shop-menu {
    display: none !important;
  }
}

/* Stronger print rules for navigation rendering */
@media print {
  .tcl-navigation * {
    visibility: visible !important;
  }
  .tcl-nav-list,
  .tcl-nav-item,
  .tcl-nav-link,
  .tcl-nav-button {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    transform: none !important;
  }
  /* Avoid layout collapse from flex styles */
  .tcl-nav-list {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .tcl-submenu {
    display: none !important; /* print only top-level for clarity */
  }
}

/* Keep Skip to Content permanently visible in the top bar */
.tcl-top-actions .tcl-skip-link {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  text-decoration: none;
  z-index: 1002;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}

.tcl-top-actions .tcl-skip-link:hover,
.tcl-top-actions .tcl-skip-link:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

@media (max-width: 480px) {
  .tcl-top-actions .tcl-skip-link {
    font-size: 11px;
    padding: 5px 8px;
  }
}

/* ========================================
   FORCE HORIZONTAL HEADER ACTIONS - OVERRIDE ALL CONFLICTS
   ======================================== */

/* High specificity rule to override all conflicting styles */
@media (max-width: 768px) {
  .tcl-header-content .tcl-header-actions {
    flex-direction: row !important;
    gap: 0.25rem !important;
    margin-left: auto !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .tcl-header-content .tcl-header-actions .tcl-search-btn,
  .tcl-header-content .tcl-header-actions .tcl-shop-btn,
  .tcl-header-content .tcl-header-actions .tcl-menu-btn {
    width: auto !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Hide text on mobile to save space */
  .tcl-header-content .tcl-header-actions .tcl-search-btn span,
  .tcl-header-content .tcl-header-actions .tcl-shop-btn span,
  .tcl-header-content .tcl-header-actions .tcl-menu-btn span {
    display: none !important;
  }
  
  /* Make icons smaller */
  .tcl-header-content .tcl-header-actions .tcl-search-btn svg,
  .tcl-header-content .tcl-header-actions .tcl-shop-btn svg,
  .tcl-header-content .tcl-header-actions .tcl-menu-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  /* AGGRESSIVE HAMBURGER FIX - OVERRIDE EVERYTHING */
  .tcl-header-content .tcl-header-actions .tcl-menu-btn .tcl-hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 20px !important;
    height: 16px !important;
    gap: 0 !important;
  }
  
  .tcl-header-content .tcl-header-actions .tcl-menu-btn .tcl-hamburger span {
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    background-color: currentColor !important;
    border-radius: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* Force all hamburger states to show lines */
  .tcl-header-content .tcl-header-actions .tcl-menu-btn[aria-expanded="true"] .tcl-hamburger span,
  .tcl-header-content .tcl-header-actions .tcl-menu-btn[aria-expanded="false"] .tcl-hamburger span,
  .tcl-header-content .tcl-header-actions .tcl-menu-btn:hover .tcl-hamburger span {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
}

/* ========================================
   SIMPLE MOBILE MENU FIX - CLEAN AND ORGANIZED
   ======================================== */

/* Override all conflicting mobile menu styles with simple, clean layout */
@media (max-width: 768px) {
  /* Mobile Navigation Container */
  .tcl-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 9999 !important;
    display: none !important;
    overflow-y: auto !important;
  }
  
  .tcl-navigation.show {
    display: block !important;
  }
  
  /* Mobile Menu Header */
  .tcl-mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
  
  /* Close Button */
  .tcl-mobile-close {
    background: #dc2626 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
  }
  
  /* Navigation List - Simple Vertical Layout */
  .tcl-nav-list {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }
  
  /* Navigation Items */
  .tcl-nav-item {
    border-bottom: 1px solid #e5e7eb !important;
    background: #ffffff !important;
  }
  
  /* Navigation Links */
  .tcl-nav-link,
  .tcl-nav-button {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    transition: background-color 0.2s ease !important;
  }
  
  .tcl-nav-link:hover,
  .tcl-nav-button:hover {
    background: #f3f4f6 !important;
    color: #1f2937 !important;
  }
  
  /* Submenu - Simple Indented Layout */
  .tcl-submenu {
    position: static !important;
    display: none !important;
    background: #f9fafb !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .tcl-submenu.show {
    display: block !important;
  }
  
  .tcl-submenu .tcl-nav-link {
    padding-left: 3rem !important;
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    background: #f9fafb !important;
  }
  
  .tcl-submenu .tcl-nav-link:hover {
    background: #e5e7eb !important;
    color: #374151 !important;
  }
}


/* ========================================
   CLEAN SIMPLE TICKER - NO ANIMATIONS, NO CONFLICTS
   ======================================== */

/* Completely clean ticker implementation - removes all conflicts */
@media (max-width: 768px) {
  /* Remove all animations and complex styles */
  .tcl-critical-ticker,
  .tcl-ticker-container,
  .tcl-ticker-content,
  .tcl-ticker-wrapper,
  .tcl-ticker-list,
  .tcl-ticker-item,
  .tcl-ticker-link,
  .tcl-ticker-label,
  .tcl-ticker-date,
  .tcl-ticker-control,
  .tcl-ticker-viewall {
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
    -o-animation-play-state: paused !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
  }
  
  /* Simple ticker container */
  .tcl-critical-ticker {
    display: block !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
  
  /* Simple ticker container layout */
  .tcl-ticker-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
  
  /* Simple label */
  .tcl-ticker-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    background: #1B4332 !important;
    color: #FFD700 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px 8px 0 0 !important;
    border: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 36px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .tcl-ticker-label i {
    margin-right: 8px !important;
    font-size: 14px !important;
  }
  
  /* Simple content area */
  .tcl-ticker-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: 100% !important;
    position: relative !important;
    overflow: visible !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Simple wrapper */
  .tcl-ticker-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: 100% !important;
    position: relative !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Simple list - vertical stack */
  .tcl-ticker-list {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 0 !important;
    min-width: auto !important;
    max-width: none !important;
  }
  
  /* Simple items - each as a card */
  .tcl-ticker-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 12px 16px !important;
    margin: 0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    background: #ffffff !important;
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    position: relative !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .tcl-ticker-item:last-child {
    border-bottom: none !important;
  }
  
  /* Simple links - make text visible */
  .tcl-ticker-link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #1f2937 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    overflow: visible !important;
  }
  
  .tcl-ticker-link:hover {
    color: #1B4332 !important;
    text-decoration: underline !important;
  }
  
  /* Simple dates */
  .tcl-ticker-date {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: visible !important;
  }
  
  /* Hide control button on mobile */
  .tcl-ticker-control {
    display: none !important;
  }
  

  
  .tcl-ticker-viewall:hover {
    background: #f3f4f6 !important;
    color: #1B4332 !important;
  }
  
  .tcl-ticker-viewall i {
    margin-left: 8px !important;
    font-size: 12px !important;
  }
}

/* ========================================
   SIMPLE VERTICAL SCROLLING TICKER - BOTTOM TO TOP FADE
   ======================================== */

/* Simple vertical scrolling animation for mobile ticker */
@media (max-width: 768px) {
  /* Keyframes for vertical fade animation */
  @keyframes vertical-ticker-fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    10% {
      opacity: 1;
      transform: translateY(0);
    }
    90% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }
  
  /* Apply vertical scrolling to ticker list when there are more than 2 items */
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(2)) {
    animation: vertical-ticker-fade 8s infinite;
  }
  
  /* Alternative selector for browsers that don't support :has() */
  .tcl-ticker-list.multiple-items {
    animation: vertical-ticker-fade 8s infinite;
  }
  
  /* Show only one item at a time during animation */
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(2)) .tcl-ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: vertical-ticker-fade 8s infinite;
  }
  
  /* Alternative for browsers without :has() support */
  .tcl-ticker-list.multiple-items .tcl-ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: vertical-ticker-fade 8s infinite;
  }
  
  /* Stagger the animation for each item */
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(2)) .tcl-ticker-item:nth-child(1) {
    animation-delay: 0s;
  }
  
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(2)) .tcl-ticker-item:nth-child(2) {
    animation-delay: 4s;
  }
  
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(3)) .tcl-ticker-item:nth-child(3) {
    animation-delay: 8s;
  }
  
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(3)) .tcl-ticker-item:nth-child(4) {
    animation-delay: 12s;
  }
  
  .tcl-ticker-list:has(.tcl-ticker-item:nth-child(3)) .tcl-ticker-item:nth-child(5) {
    animation-delay: 16s;
  }
  
  /* Alternative for browsers without :has() support */
  .tcl-ticker-list.multiple-items .tcl-ticker-item:nth-child(1) {
    animation-delay: 0s;
  }
  
  .tcl-ticker-list.multiple-items .tcl-ticker-item:nth-child(2) {
    animation-delay: 4s;
  }
  
  .tcl-ticker-list.multiple-items .tcl-ticker-item:nth-child(3) {
    animation-delay: 8s;
  }
  
  .tcl-ticker-list.multiple-items .tcl-ticker-item:nth-child(4) {
    animation-delay: 12s;
  }
  
  .tcl-ticker-list.multiple-items .tcl-ticker-item:nth-child(5) {
    animation-delay: 16s;
  }
  
  /* Make ticker content have relative positioning for absolute children */
  .tcl-ticker-content {
    position: relative !important;
    min-height: 60px !important;
    overflow: hidden !important;
  }
  
  /* If only 1-2 items, show them normally without animation */
  .tcl-ticker-list:not(:has(.tcl-ticker-item:nth-child(3))) .tcl-ticker-item {
    position: relative !important;
    opacity: 1 !important;
    animation: none !important;
  }
  
  /* Alternative for browsers without :has() support */
  .tcl-ticker-list:not(.multiple-items) .tcl-ticker-item {
    position: relative !important;
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ========================================
   DESKTOP SPACING FIX - REMOVE EXTRA SPACE AFTER SLIDER
   ======================================== */

/* Fix desktop spacing issues after slider and before news section */
@media (min-width: 769px) {
  /* Remove extra spacing after hero slider */
  .stqc-hero-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .stqc-slider-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .stqc-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Remove extra spacing before news ticker */
  .critical-news-ticker-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  .tcl-critical-ticker {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Remove extra spacing from dynamic hero container */
  #dynamic-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  #hero-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Remove extra spacing from any section that comes after hero */
  .stqc-hero-section + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  
  
  /* Remove any conflicting spacing from spacing-fixes.css */
  .hero-section,
  .hero-slider,
  .hero-slide {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Fix any container spacing issues */
  .container,
  .container-fluid {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  

}

/* ========================================
   SIMPLE SECTION BADGE REDESIGN - CLEAN AND VISIBLE
   ======================================== */
   

/* Remove all complex animations and over-styling from section badges */
.section-badge {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    color: #2c5530 !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    animation: none !important;
    border: 2px solid #d4e6d4 !important;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.1) !important;
}

/* Remove animations from section header */
.section-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Remove animations from section title */
.section-title {
    color: #1f2937 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    position: relative !important;
    padding-bottom: 1rem !important;
    letter-spacing: -0.5px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Remove animations from about content */
.about-content {
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: visible !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    border: 1px solid #e5e7eb !important;
    padding: 2rem !important;
}

/* Simple hover effect for section badge */
.section-badge:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    color: #1e3a21 !important;
    border-color: #b8d4ba !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.15) !important;
    transition: all 0.3s ease !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .section-badge {
        padding: 6px 12px !important;
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .about-content {
        padding: 1.5rem !important;
    }
}

/* Override any conflicting animations */
.section-badge,
.section-header,
.section-title,
.about-content {
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
    -o-animation-play-state: paused !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

/* Force visibility */
.section-badge,
.section-header,
.section-title,
.about-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

