.video-container {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .video-container video {
    width: 100%;
    height: auto;
  }
  
  /* About Section Styles */
  .about-section {
    padding: 0px 20px;
    background-color: #ffffff;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .about-content {
    flex: 1;
  }
  
  .about-image {
    flex: 1;
    max-width: 500px;
  }
  
  .about-image img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .highlight {
    color: #F37440;
    font-weight: 600;
  }
  
  .welcome-section {
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .welcome-text {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .company-name {
    color: #006699;
    /* Optilab blue color */
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .company-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #F37440;
  }
  
  .about-text {
    margin-bottom: 30px;
  }
  
  .about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
    font-size: 1.1rem;
  }
  
  .more-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .more-btn:hover {
    background-color: #f4511e;
  }
  
  /* Add these styles to your index.css file */
  
  /* Products Section Styles */
  .products-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header .subtitle {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .section-header .title {
    color: #006699;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
  }
  
  .section-header .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b35;
  }
  
  /* Product Slider Styles */
  .product-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  .product-slider {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
  }
  
  .product-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
  }
  
  .product-image {
    position: relative;
    background-color: #e6f3f7;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-image:hover img {
    transform: scale(1.05);
  }
  
  .product-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #006699;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
  }
  
  /* Slider Navigation */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #006699;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1;
  }
  
  .slider-arrow:hover {
    background-color: #004d80;
  }
  
  .prev-arrow {
    left: 0;
  }
  
  .next-arrow {
    right: 0;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .about-container {
        padding: 0 20px;
    }
  
    .product-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
  }
  
  @media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
  
    .about-content,
    .about-image {
        width: 100%;
        max-width: 100%;
    }
  
    .welcome-text {
        font-size: 1rem;
    }
  
    .company-name {
        font-size: 2rem;
    }
  
    .about-section {
        padding: 50px 20px;
    }
  
    .about-text p {
        font-size: 1rem;
    }
  
    .product-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .product-slider-container {
        padding: 0 30px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }
  
    .more-btn {
        width: 100%;
        padding: 10px 20px;
    }
  }