:root {
      --primary-color: #cc0000;
      --secondary-color: #990000;
      --accent-color: #ff4d4d;
      --text-light: #ffffff;
      --text-dark: #333333;
      --overlay-white: rgba(255, 255, 255, 0.15);
      --transition-speed: 0.4s;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      overflow-x: hidden;
      font-family: 'Montserrat', sans-serif;
  }
  
  /* Advanced Header */
  .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 15px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
      backdrop-filter: blur(10px);
      transition: all var(--transition-speed) ease;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .header.scrolled {
      padding: 10px 5%;
      background: rgba(0, 0, 0, 0.9);
  }
  
  .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
  }
  
  .logo {
      color: var(--text-light);
      font-size: 28px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
  }
  
  .logo img {
      height: 50px;
      margin-right: 10px;
  }
  
  .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
  }
  
  .nav-links a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all var(--transition-speed) ease;
      position: relative;
      padding: 5px 0;
  }
  
  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: width var(--transition-speed) ease;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
      width: 100%;
  }
  
  .nav-links a:hover {
      color: var(--accent-color);
  }
  
  .cta-button {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--text-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all var(--transition-speed) ease;
      box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }
  
  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(204, 0, 0, 0.4);
  }
  
  .cta-button i {
      font-size: 14px;
  }
  
  .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
  }
  
  /* Video Container with White Overlay */
  .video-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
  }
  
  #heroVideo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
  }
  
  .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-white);
      z-index: 2;
  }
  
  /* Content Styles - Left Aligned and Stylish */
  .video-content {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      color: var(--text-light);
      text-align: left;
      z-index: 5;
      width: 45%;
      max-width: 700px;
      padding: 40px;
  }
  
  .video-content h1 {
      font-family: Arial, Helvetica, sans-serif, serif;
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      line-height: 1.3;
      font-weight: 700;
      animation: fadeInUp 1s ease;
      letter-spacing: 0.5px;
  }
  
  .video-content p {
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
      font-weight: 300;
      line-height: 1.7;
      letter-spacing: 0.3px;
  }
  
  .video-cta {
      display: inline-block;
      padding: 12px 28px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
      border: none;
      cursor: pointer;
      letter-spacing: 1px;
      font-size: 0.9rem;
  }
  
  .video-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  }
  
  /* Side Navigation Tabs */
  .side-nav-tabs {
      position: absolute;
      right: 0px; /* Changed from left to right */
      left: auto; /* Ensure left is not set */
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 10;
  }
  
  .side-nav-tab {
      padding: 15px 20px;
      color: var(--text-light);
      border: none;
      border-radius: 30px 0 0 30px;
      cursor: pointer;
      transition: all var(--transition-speed) ease;
      font-weight: 600;
      font-size: 14px;
      position: relative;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      text-align: right;
      width: 120px;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
  }
  
  .side-nav-tab::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      z-index: -1;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform var(--transition-speed) ease;
      border-radius: 30px 0 0 30px;
  }
  
  .side-nav-tab:hover::before,
  .side-nav-tab.active::before {
      transform: scaleX(1);
      transform-origin: left;
  }
  
  .side-nav-tab:hover {
      color: white;
      transform: translateX(5px);
  }
  
  .side-nav-tab.active {
      color: white;
      box-shadow: 5px 5px 20px rgba(204, 0, 0, 0.4);
      width: 140px;
  }
  
  .side-nav-tab i {
      font-size: 14px;
  }
  
  /* Center Controls */
  .center-controls {
      position: absolute;
      left: 50%;
      bottom: 80px;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      z-index: 10;
  }
  
  .control-btn {
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.15);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      backdrop-filter: blur(5px);
      transition: all var(--transition-speed) ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .control-btn:hover {
      background: rgba(255,255,255,0.3);
      transform: scale(1.1);
  }
  
  /* Footer */
  footer {
      background: #111;
      color: #ccc;
      padding: 70px 5% 30px;
  }
  
  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
  }
  
  .footer-column h3 {
      color: white;
      margin-bottom: 25px;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 10px;
  }
  
  .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--primary-color);
  }
  
  .footer-column ul {
      list-style: none;
  }
  
  .footer-column li {
      margin-bottom: 12px;
  }
  
  .footer-column a {
      color: #ccc;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      font-size: 0.9rem;
  }
  
  .footer-column a:hover {
      color: white;
      transform: translateX(5px);
  }
  
  .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }
  
  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: white;
      transition: all 0.3s ease;
      font-size: 0.9rem;
  }
  
  .social-links a:hover {
      background: var(--primary-color);
      transform: translateY(-3px);
  }
  
  .copyright {
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid #333;
      color: #777;
      text-align: center;
      font-size: 0.8rem;
  }
  
  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes speedUp {
      0% { filter: brightness(100%) saturate(100%); }
      50% { filter: brightness(120%) saturate(120%); }
      100% { filter: brightness(100%) saturate(100%); }
  }
  
  .speed-up {
      animation: speedUp 0.5s ease-in-out;
  }
  
  /* Smooth scroll behavior */
  html {
      scroll-behavior: smooth;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
      .video-content {
          width: 55%;
          left: 5%;
      }
  }
  
  @media (max-width: 992px) {
      .video-content h1 {
          font-size: 2.4rem;
      }
      
      .video-content p {
          font-size: 1rem;
      }
      
      .side-nav-tab {
          padding: 12px 15px;
          font-size: 13px;
          width: 100px;
      }
      
      .side-nav-tab.active {
          width: 120px;
      }
      
      .video-content {
          width: 65%;
          padding: 30px;
      }
  }
  
  @media (max-width: 768px) {
      .nav-links {
          display: none;
      }
      
      .mobile-menu-btn {
          display: block;
      }
      
      .video-content {
          width: 80%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          background: rgba(0, 0, 0, 0.3);
          border-radius: 10px;
          padding: 25px;
      }
      
      .video-content h1 {
          font-size: 2rem;
      }
      
      .video-content p {
          font-size: 0.95rem;
      }
      
      .side-nav-tabs {
          left: 10px;
          gap: 10px;
      }
      
      .side-nav-tab {
          padding: 10px 15px;
          font-size: 12px;
          width: 80px;
      }
      
      .side-nav-tab.active {
          width: 100px;
      }
      
      .control-btn {
          width: 50px;
          height: 50px;
          font-size: 20px;
      }
      
      .footer-content {
          grid-template-columns: 1fr 1fr;
      }
  }
  
  @media (max-width: 576px) {
      .footer-content {
          grid-template-columns: 1fr;
      }
      
      .side-nav-tabs {
          display: none;
      }
      
      .video-content {
          width: 90%;
          padding: 20px;
      }
      
      .video-content h1 {
          font-size: 1.8rem;
      }
      
      .video-cta {
          padding: 10px 20px;
          font-size: 0.8rem;
      }
      
      .center-controls {
          bottom: 40px;
      }
  }