@font-face {
    font-family: 'Montserrat Armenian';
    src: url('../fonts/web_font/Montserratarm-Regular.woff2') format('woff2'),
        url('../fonts/web_font/Montserrat-Armenian-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat Armenian bold';
    src: url('../fonts/web_font/Montserratarm-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat Armenian semiBold';
    src: url('../fonts/web_font/Montserratarm-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Montserrat Armenian light';
    src: url('../fonts/web_font/Montserratarm-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
  }
  
  .product-section {
    background-color: #16202A;
    padding: 4rem 7rem;
    font-family: 'Montserrat Armenian', sans-serif;
  }
  
  .product-section h2 {
    color: #D9EAF2;
    font-size: 36px;
    font-weight: 700;
    margin-left: 50px;
    text-align: left;
    margin-bottom: 10px;
  }
  
  .decor-line{
        height: 2px;
        width: calc(100% - 8%);
        margin-left: -25%;
        margin-bottom: 40px;
        border: none;
        background: linear-gradient(to right, #609AC4 0%, #294f75 60%, rgba(22, 32, 42, 0) 70%);
        position: relative;
    }
  

      
      .product-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
      }
      
      .product-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 378px;
        height: 681px;
      }
      
  
  .product-card {
    width: 378px;
    height: 681px;
    background-color: #15364D;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
  }
  
  .product-card .header {
    background-color: #15364D;
    height: 69px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-family: 'Montserrat Armenian semiBold';
    font-size: 18px;
    color: white;
    position: relative;
  }
  
  .product-card .header::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 16px;
    height: 2px;
    width: 60%;
    background: linear-gradient(270deg, #609AC4 0%, #1c3752 100%);
  }
  
  .product-card img {
    width: 100%;
    height: 244px;
    object-fit: cover;
  }
  
  .product-card .content {
    background-color: #15364D;
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-card .content p {
    font-size: 14px;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    max-height: 180px;
    overflow-y: auto;
  }
  
  .product-card .content .pdf-button {
    display: inline-block;
    background-color: #E5EDF3;
    color: #1e3a8a;
    font-family: 'Montserrat Armenian semiBold';
    font-size: 14px;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .product-card .content .pdf-button:hover {
    background-color: white;
    transform: translateY(-1px);
  }
  .pdf-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  




  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #609AC4 transparent;
  }
  
  /* Chrome, Safari */
  .product-grid::-webkit-scrollbar {
    height: 8px;
  }
  .product-grid::-webkit-scrollbar-track {
    background: transparent;
  }
  .product-grid::-webkit-scrollbar-thumb {
    background-color: #609AC4;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  