.award-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    overflow: hidden;
  }
  
  .awards-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .award-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px !important;
    color: var(--accent-color);
    font-family: var(--font-playfair-display) !important;
  }
  
  .awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .award-item {
    text-align: center;
    max-width: 220px;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-family: var(--font-playfair-display);
    position: relative;
    padding: 0 15px;
  }
  
  /* Vertical separator */
  .award-separator {
    width: 2px;
    height: 80px;
    background-color: var(--primary-color);
    display: block;
  }
  
  /* Award images */
  .award-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
    max-width: 100px;
  }
  
  /* Adjust larger images */
  .award-item img[alt="ET Awards 2024"],
  .award-item img[alt="Times Business Awards 2021"] {
    min-width: 200px;
  }
  
  /* Tablet View (Fixed Layout Issues) */
  @media (max-width: 1024px) and (min-width: 769px) {
    .awards-container {
      flex-wrap: nowrap; /* Prevents wrapping issues */
      justify-content: space-evenly;
      gap: 20px;
    }
  
    .award-item {
      max-width: 180px; /* Adjusted for better spacing */
      padding: 0 10px;
    }
  
    .award-item img {
      max-width: 170px; /* Slightly larger images for tablets */
    }
  
    .award-separator {
      height: 60px; /* Adjusted separator height */
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .awards-container {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .award-item img {
      max-width: 120px;
    }
    
    .award-separator {
      display: none; /* Hide separators for better mobile stacking */
    }
  }
  
  @media (max-width: 480px) {
    .award-title {
      font-size: 1.5rem; /* Smaller title for mobile */
    }
  
    .award-item img {
      max-width: 100px;
    }
  }
  