/* General Reset */
body, h1, h2, p, ul, li, table {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #fff; /* white background for content */
    color: #111; /* dark text for readability */
    line-height: 1.6;
  }
  
  /* Hero Section */
  .split-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #0a1a2f; /* dark navy blue */
    color: #ffd700; /* gold text */
  }
  
  .hero-image img {
    max-height: 400px;
    border-radius: 10px;
    margin-right: 40px;
    border: 4px solid #ffd700; /* gold border around photo */
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  @media (max-width: 768px) {
    .split-hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image img {
      margin: 0 0 20px 0;
      max-height: 300px;
    }
  }
  
  /* Standard Hero */
  .hero {
    background: #0a1a2f; /* dark blue */
    color: #ffd700; /* gold */
    text-align: center;
    padding: 120px 20px;
  }
  
  .hero.small-hero {
    padding: 80px 20px;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.6); /* semi-transparent black overlay */
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ffd700; /* gold outline for emphasis */
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffd700;
  }
  
  .hero h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .lang-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .lang-btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px var(--gold);
  }
      
  
  /* Buttons */
  .btn {
    display: inline-block;
    background: #ffd700; /* gold */
    color: #0a1a2f; /* dark blue text */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #e6c200; /* darker gold */
    color: #0a1a2f;
  }
  
  /* Content Section */
  .content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    color: #111;
  }
  
  .alt-bg {
    background-color: #f4f4f4; /* light grey for contrast */
  }
  
  .content-section h2 {
    color: #0a1a2f; /* dark blue headings */
    margin-bottom: 20px;
  }
  
  p, li {
    margin-bottom: 10px;

  }
  
  ul {
    list-style: disc inside;
  }
  
  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  th, td {
    border: 1px solid #0a1a2f; /* dark blue borders */
    padding: 10px;
    text-align: left;
  }
  
  th {
    background: #0a1a2f; /* dark blue header */
    color: #ffd700; /* gold text */
  }
  
  blockquote {
    border-left: 4px solid #ffd700; /* gold */
    padding-left: 15px;
    color: #555;
    font-style: italic;
    margin-top: 20px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 30px;
    background: #0a1a2f; /* dark blue footer */
    color: #ffd700;
  }
  
  footer .btn {
    background: #ffd700;
    color: #0a1a2f;
    margin-top: 10px;
  }
  
  footer .btn:hover {
    background: #e6c200;
    color: #0a1a2f;
  }
  
  /* Video Section */
  .video-section {
    text-align: center;
  }

  .video-section.content-section {
    max-width: 1200px;
  }

  /* Full-width strip: one large video centered while scrolling */
  .video-scroll {
    --video-card-w: min(94vw, 920px);
    margin-top: 1.75rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding-bottom: 0.75rem;
    scrollbar-gutter: stable;
  }

  .video-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: clamp(1rem, 3vw, 2rem);
    width: max-content;
    margin: 0 auto;
    padding: 0 max(12px, calc(50vw - var(--video-card-w) / 2));
    text-align: left;
  }

  .video-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .video-scroll::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 4px;
  }

  .video-scroll::-webkit-scrollbar-thumb {
    background: #0a1a2f;
    border-radius: 4px;
  }

  .video-scroll::-webkit-scrollbar-thumb:hover {
    background: #142a45;
  }

  .video-card {
    flex: 0 0 auto;
    width: var(--video-card-w);
    scroll-snap-align: center;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #0a1a2f;
    box-shadow: 0 8px 24px rgba(10, 26, 47, 0.12);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 26, 47, 0.18);
  }

  .video-frame {
    aspect-ratio: 16 / 9;
    background: #0a1a2f;
    border-bottom: 3px solid #ffd700;
  }

  .video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
  }
  
  .video-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: 3px solid #ffd700; /* gold border for emphasis */
  }
  