:root {
    --primary: #0b5865;
    --primary-foreground: #f8fafc;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --accent: #0b5865;
    --accent-foreground: #f8fafc;
    --background: #ffffff;
    --foreground: #0b5865;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --popover: #ffffff;
    --popover-foreground: #0f172a;
    --muted: #f1f4f7;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #0b5865;
    --radius: 0.5rem;
    --font-family: "Inter", sans-serif;
  }

  .background-video {
    position: absolute;
    /* top: 0; */
    /* right: 0; */
    /* bottom: 0; */
    /* left: 0; */
    height: 550px;
    width:1300px;
    /* opacity: 0.65; */
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.background-video-content {
    position: relative;
    z-index: 1;
}

video {
    object-fit: cover;
    width: 100%;
    /* height: 100%; */
}
  
  body {
    font-family: var(--font-family);
    color: var(--foreground);
    background-color: var(--background);
  }
  
  h3, h2 {
    color: #0b5865;
  }
  .navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .nav-link {
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: var(--accent);
  }
  
  .hero {
    height: 100vh;
    background-color: #0b5865;
    /* background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') center/cover; */
    background: url('SPS03294.JPG') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    padding: 0.75rem 2rem;
    transition: all 0.3s;
  }
  
  .btn-primary:hover {
    background-color: var(--accent-foreground);
    transform: translateY(-2px);
  }
  
  .card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    height: 250px;
    object-fit: cover;
  }
  
  .contact-form .form-control {
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: var(--radius);
  }
  
  .footer {
    background-color: var(--muted);
    color: var(--foreground);
  }
  
  .footer a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: var(--accent);:root {
      --primary: #0f172a;
      --primary-foreground: #f8fafc;
      --secondary: #1e293b;
      --secondary-foreground: #f8fafc;
      --accent: #0b5865;
      --accent-foreground: #f8fafc;
      --background: #ffffff;
      --foreground: #0f172a;
      --card: #ffffff;
      --card-foreground: #0f172a;
      --popover: #ffffff;
      --popover-foreground: #0f172a;
      --muted: #f1f4f7;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --input: #e2e8f0;
      --ring: #0b5865;
      --radius: 0.5rem;
      --font-family: "Inter", sans-serif;
    }
    
    body {
      font-family: var(--font-family);
      color: var(--foreground);
      background-color: var(--background);
    }
    
    .navbar {
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .nav-link {
      color: var(--foreground);
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .nav-link:hover {
      color: var(--accent);
    }
    
    .hero {
      height: 100vh;
      background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') center/cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
    }
    
    .btn-primary {
      background-color: var(--accent);
      border-color: var(--accent);
      padding: 0.75rem 2rem;
      transition: all 0.3s;
    }
    
    .btn-primary:hover {
      background-color: var(--accent-foreground);
      transform: translateY(-2px);
    }
    
    .card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: transform 0.3s;
    }
    
    .card:hover {
      transform: translateY(-5px);
    }
    
    .product-card img {
      height: 250px;
      object-fit: cover;
    }
    
    .contact-form .form-control {
      border: 1px solid var(--border);
      padding: 1rem;
      border-radius: var(--radius);
    }
    
    .footer {
      background-color: var(--muted);
      color: var(--foreground);
    }
    
    .footer a {
      color: var(--foreground);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer a:hover {
      color: var(--accent);
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .product-card {
        margin-bottom: 2rem;
      }
    }
    
    .gallery-header {
      background-color: var(--muted);
      padding-top: 120px !important;
    }
    
    .gallery-filters .btn-outline-primary {
      border-color: var(--accent);
      color: var(--accent);
    }
    
    .gallery-filters .btn-outline-primary:hover,
    .gallery-filters .btn-outline-primary.active {
      background-color: var(--accent);
      color: var(--accent-foreground);
    }
    
    .gallery-item {
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }
    
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .gallery-item img {
      height: 250px;
      object-fit: cover;
    }
    
    .gallery-item .price {
      color: var(--accent);
      font-size: 1.25rem;
      font-weight: bold;
    }
    
    .modal-content {
      border-radius: var(--radius);
    }
    
    .modal-body img {
      border-radius: var(--radius);
    }
    
    .specs ul {
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .product-card {
      margin-bottom: 2rem;
    }
  }
  