     /* Hero Section */
      .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #2563eb, #7c3aed);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      }
      .hero h1 {
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      }
      .hero p {
      font-size: clamp(1.25rem, 3vw, 2rem);
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 48rem;
      }
      .hero button {
      background: white;
      color: #2563eb;
      padding: 1rem 2rem;
      border: none;
      border-radius: 0.5rem;
      font-size: 1.125rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      }
      .hero button:hover {
      background: #f3f4f6;
      }
      /* Conference Videos Section */
      .videos-section {
      padding: 4rem 0;
      }
      .section-header {
      text-align: center;
      margin-bottom: 3rem;
      }
      .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 1rem;
      }
      .section-header p {
      font-size: 1.25rem;
      color: #6b7280;
      max-width: 48rem;
      margin: 0 auto 2rem;
      }
      /* View Mode Toggle */
      .view-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      }
      .toggle-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid #e5e7eb;
      background: white;
      color: #6b7280;
      }
      .toggle-btn.active {
      background: #2563eb;
      color: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
      .toggle-btn:hover:not(.active) {
      background: #f9fafb;
      }
      /* Grid View */
      .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
      }
      /* Horizontal Scroll View */
      .scroll-container {
      position: relative;
      }
      .scroll-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border: 1px solid #e5e7eb;
      border-radius: 50%;
      padding: 0.75rem;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
      .scroll-nav:hover {
      background: #f9fafb;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }
      .scroll-nav.left {
      left: 0;
      }
      .scroll-nav.right {
      right: 0;
      }
      .horizontal-scroll {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      /*padding: 0 3rem 1rem;*/
      scrollbar-width: none;
      -ms-overflow-style: none;
      }
      .horizontal-scroll::-webkit-scrollbar {
      display: none;
      }
      .horizontal-scroll .video-card {
      flex-shrink: 0;
      width: 320px;
      }
      /* Video Cards */
      .video-card {
      background: white;
      border-radius: 0.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .video-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }
      .video-container {
      position: relative;
      aspect-ratio: 16/9;
      background: #f3f4f6;
      }
      .video-thumbnail-btn {
      width: 100%;
      height: 100%;
      position: relative;
      border: none;
      cursor: pointer;
      overflow: hidden;
      border-radius: 0.5rem 0.5rem 0 0;
      background: none;
      padding: 0;
      }
      .video-thumbnail-btn:focus-visible {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
      }
      .video-thumbnail {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
      }
      .video-thumbnail-btn:hover .video-thumbnail {
      transform: scale(1.05);
      }
      .play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.2);
      transition: all 0.3s;
      }
      .video-thumbnail-btn:hover .play-overlay {
      background: rgba(0, 0, 0, 0.3);
      }
      .newplay-button {
      background: #dc2626;
      border-radius: 50%;
      padding: 1rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      width: 48px;
      height: 48px;
      }
      .video-thumbnail-btn:hover .newplay-button {
      background: #b91c1c;
      transform: scale(1.1);
      }
      .play-icon {
      /* width: 2rem;
      height: 2rem;*/
      color: white;
      /*margin-left: 0.25rem;*/
      }
      .duration-badge {
      position: absolute;
      bottom: 0.5rem;
      right: 0.5rem;
      background: rgba(0, 0, 0, 0.75);
      color: white;
      font-size: 0.75rem;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      }
      .video-info {
      padding: 1rem;
      }
      .video-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: #111827;
      margin-bottom: 0.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      }
      .video-date {
      font-size: 0.75rem;
      color: #6b7280;
      }
      /* Scroll Indicators */
      .scroll-indicators {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
      gap: 0.5rem;
      padding-bottom: 15px;
      }
      .indicator {
      /*width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: #d1d5db;
      transition: all 0.2s;*/
      position: relative;
      display: block;
      float: left;
      margin: 0 4px;
      width: 10px;
      height: 10px;
      cursor: pointer;
      border-radius: 50%;
      overflow: hidden;
      background-color: transparent;
      box-shadow: inset 0 0 0 2px #cccccc;
      transition: background 0.3s ease;
      }
      .indicator.active {
      /* background: #2563eb;*/
      background-color: #cccccc;
      box-shadow: 0 0 1px #cccccc;
      }
      /* Footer */
      .footer {
      padding: 4rem 0;
      background: #111827;
      color: white;
      text-align: center;
      }
      .footer h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      }
      .footer p {
      font-size: 1.25rem;
      color: #d1d5db;
      margin-bottom: 2rem;
      }
      .footer button {
      background: #2563eb;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 0.5rem;
      font-size: 1.125rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      }
      .footer button:hover {
      background: #1d4ed8;
      }
      /* Screen Reader Only */
      .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
      }
      /* Hidden by default */
      .hidden {
      display: none;
      }
      /* Responsive Design */
      @media (max-width: 640px) {
      .video-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      }
      .horizontal-scroll {
      padding: 0 1rem 1rem;
      }
      .horizontal-scroll .video-card {
      width: 280px;
      }
      }
      @media (min-width: 641px) and (max-width: 991px) {
      .video-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      }
      }
      @media (min-width: 992px) {
      .video-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      }
      }
      /* Reduced Motion */
      @media (prefers-reduced-motion: reduce) {
      .video-card,
      .video-thumbnail-btn,
      .video-thumbnail,
      .horizontal-scroll {
      transition: none;
      scroll-behavior: auto;
      }
      .video-card:hover {
      transform: none;
      }
      .video-thumbnail-btn:hover .video-thumbnail {
      transform: none;
      }
      }
      /* High Contrast */
      @media (prefers-contrast: high) {
      .video-card {
      border: 2px solid #000;
      }
      .video-thumbnail-btn:focus-visible {
      outline: 3px solid #000;
      outline-offset: 2px;
      }
      }
      /* Touch Devices */
      @media (hover: none) and (pointer: coarse) {
      .video-card:hover {
      transform: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }
      .video-thumbnail-btn:hover .video-thumbnail {
      transform: none;
      }
      }
      p.video-date {
      margin-bottom: 0.857143em;
      }
      .btn-outline-theme{
      padding: 10px 16px !important;
      }
   </style>
   <style > 
      .header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 2rem 0;
      }
      .header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1a1a1a;
      }
      @media (min-width: 768px) {
      .header h1 {
      font-size: 3rem;
      }
      }
      .header .highlight {
      color: #ff6b00;
      }
      .header p {
      font-size: 1.125rem;
      color: #6c757d;
      max-width: 32rem;
      margin: 0 auto;
      line-height: 1.75;
      }
      .gallery-container {
      position: relative;
      margin-bottom: 4rem;
      }
      .gallery-scroll {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 0.5rem 0 1rem 0;
      scrollbar-width: thin;
      scrollbar-color: #BC9F60 #f1f1f1;
      }
      .gallery-scroll::-webkit-scrollbar {
      height: 8px;
      }
      .gallery-scroll::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
      }
      .gallery-scroll::-webkit-scrollbar-thumb {
      background: #ff6b00;
      border-radius: 4px;
      }
      .gallery-scroll::-webkit-scrollbar-thumb:hover {
      background: #ea580c;
      }
      .album-card {
      display: block;
      position: relative;
      min-width: 320px;
      width: 320px;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
      transform: scale(1);
      flex-shrink: 0;
      }
      @media (min-width: 768px) {
      .album-card {
      min-width: 380px;
      width: 380px;
      }
      }
      /*@media (min-width: 1024px) {
      .album-card {
      min-width: 400px;
      width: 400px;
      }
      }*/
      .album-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      transform: scale(1.05) translateY(-4px);
      }
      .album-card:focus {
      outline: 2px solid #ff6b00;
      outline-offset: 2px;
      }
      .album-image-container {
      position: relative;
      aspect-ratio: 16 / 9;
      width: 100%;
      }
      .album-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
      }
      .album-year {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: white;
      color: #1a1a1a;
      padding: 0.375rem 0.875rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.875rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      }
      .album-info {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      color: white;
      }
      .album-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      transition: color 0.2s ease;
      line-height: 1.3;
      }
      .album-card:hover .album-title {
      color: #fed7aa;
      }
      .album-location {
      font-size: 0.875rem;
      color: #ffffff;
      margin-bottom: 0.5rem;
      }
      .album-stats {
      font-size: 0.75rem;
      color: #ced4da;
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(4px);
      padding: 0.25rem 0.5rem;
      border-radius: 0.375rem;
      display: inline-block;
      }
      .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(8px);
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
      .nav-arrow:hover {
      background: white;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }
      .nav-arrow:focus {
      outline: 2px solid #ff6b00;
      outline-offset: 2px;
      }
      .nav-arrow.prev {
      left: -24px;
      }
      .nav-arrow.next {
      right: -24px;
      }
      .nav-arrow svg {
      color: #1a1a1a;
      }
      .nav-arrow:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: translateY(-50%) scale(1);
      }
      /* Hide arrows on mobile */
      @media (max-width: 768px) {
      .nav-arrow {
      display: none;
      }
      }
      .stats {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid #e9ecef;
      }
      .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      }
      @media (min-width: 768px) {
      .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      }
      }
      .stat-number {
      font-size: 1.875rem;
      font-weight: 700;
      color: #ff6b00;
      margin-bottom: 0.5rem;
      }
      .stat-label {
      color: #6c757d;
      }
      .loading-placeholder {
      background: #f8f9fa;
      border-radius: 0.75rem;
      animation: pulse 2s infinite;
      }
      @keyframes pulse {
      0%,
      100% {
      opacity: 1;
      }
      50% {
      opacity: 0.5;
      }
      }
      @keyframes fadeIn {
      from {
      opacity: 0;
      transform: translateY(20px);
      }
      to {
      opacity: 1;
      transform: translateY(0);
      }
      }
      .fade-in {
      animation: fadeIn 0.6s ease-out;
      }
      .scroll-indicator {
      text-align: center;
      margin-top: 1rem;
      color: #6c757d;
      font-size: 0.875rem;
      }
      .scroll-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 20px;
      margin-top: 20px;
      }
      .scroll-dot {
      /*width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ced4da;
      transition: background 0.2s ease;
      cursor: pointer;*/
      position: relative;
      display: block;
      float: left;
      margin: 0 4px;
      width: 10px;
      height: 10px;
      cursor: pointer;
      border-radius: 50%;
      overflow: hidden;
      background-color: transparent;
      box-shadow: inset 0 0 0 2px #cccccc;
      transition: background 0.3s ease;
      }
      .scroll-dot.active {
      /*background: #ff6b00;*/
      background-color: #cccccc;
      box-shadow: 0 0 1px #cccccc;
      }
      .scroll-dot:hover {
      background: #cccccc;
      opacity: 0.7;
      }
      h3:not(:last-child),
      .h3:not(:last-child) {
      margin-bottom: 0.04em !important;
      }
      h3.album-title {
      color: #ffffff;
      }
      .album-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
      }
      .container div:empty {
      display: block !important;
      }
      .fa-play {
      position: absolute;
      top: 35%;
      left: 42%;
      color: #FFF;
      background-color: #e00;
      border-radius: 50%;
      padding: 3px 20px;
      height: 50px;
      font-size: 16px;
      width: 50px;
      opacity: 0.8;
      line-height: 46px;
      transition: all 0.3s ease 0s;
      }
      .video-box a:hover .fa-play{
      font-size: 18px;
      height: 53px;
      width: 53px; 
      opacity: 0.7;
      }
      @media (min-width: 992px) and (max-width: 1199px) {
      .newTeammembers .team-member {
      width: 17%;
      float: left;
      margin: 10px;
      }
      }
      @media (min-width: 768px) and (max-width: 991px) {
      .newTeammembers .team-member {
      width: 17% !important;
      }
      }
      @media (min-width: 400px) and (max-width: 767px) {
      .newTeammembers .team-member {
      width: 45% !important;
      float: left;
      margin: 2px 10px;
      }
      }
      @media (min-width: 200px) and (max-width: 399px) {
      .newTeammembers .team-member {
      width: 100% !important;
      float: left;
      margin: 2px 10px;
      }
      }
      @media (max-width: 768px) {
      .mob-close-icon {
      display: block !important;
      background: #bf972b;
      margin-right: 0px !important;
      padding: 0px 6px;
      border-radius: 4px;
      font-size: 12px;
      cursor: pointer;
      }
      }
      @media (min-width: 768px) and (max-width: 991px) {
      .tabs-navigation li, .tabs-vertical .tabs-navigation li, .justified .tabs-navigation li, .justified .tabs-navigation li, .tabs-right .tabs-navigation li, .tabs-right .tabs-navigation li {
      width: auto;
      float: none;
      display: inline-flex;
      text-align: left;
      }
      }
      #mainMenu nav > ul > li > a > i {
      margin-left: 2px;
      margin-right: 0px !important;
      min-width: 14px;
      font-size: 14px;
      }
      #mainMenu nav > ul > li > a {
      padding: 11px 6px;
      }
      #mainMenu nav {
      float: none;
      margin-top: 30px;
      }
      @media (min-width: 992px) and (max-width: 1024px) {
      .highlights-box {
      padding: 0px !important;
      display: flex !important;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
      align-items: center;
      }
      .highlights-box .icon {
      float: left;
      margin-right: 20px;
      border-radius: 50%;
      max-width: 60px;
      height: 60px;
      background: #9f7d23;
      padding: 7px;
      width: 100% !important;
      margin-bottom: 0px;
      }
      }
      .btn.past-btn-dark:hover{
      border-color: #ffffff !important;
      color: #ffffff !important;
      }
 