/* ===============================
   About Us Page - Enhanced CSS
   =============================== */

/* General Layout Enhancements */

/* ===============================
   Global Styles for the Whole Page
   =============================== */

   body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #ffffff;
    padding: 1.5em 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }
  
  th {
    background-color: #00bfa5;
    font-weight: bold;
    color: #fff;
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  td {
    background-color: #fff;
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  tr:last-child td {
    border-bottom: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Navigation */
  nav ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #004d40;
    padding: 0.5em 1em;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    background-color: #00bfa5;
    color: #fff;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #00bfa5, #00796b);
    color: #fff;
    text-align: center;
    padding: 4em 2em;
  }
  
  /* Product Categories Section */
  .product-categories {
    background-color: #ffffff;
    padding: 4em 2em;
    text-align: center;
  }
  
  /* Company Intro Section */
  .company-intro {
    background-color: #f8f9fa;
    padding: 4em 2em;
    text-align: center;
  }
  
  /* Contact Quick Section */
  .contact-quick {
    background-color: #f1f1f1;
    padding: 4em 2em;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-top: 2em;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: #ccc;
    padding: 1.5em 0;
    text-align: center;
    font-size: 0.9em;
  }
  
  .about-info {
    padding: 4em 1em;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .about-info .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-details,
  .company-services {
    flex: 1 1 45%;
    min-width: 320px;
    box-sizing: border-box;
  }
  
  /* Section Headers */
  .about-details h2,
  .company-services h2 {
    font-size: 2.25em;
    margin-bottom: 1em;
    color: #004d40;
    text-align: center;
    position: relative;
  }
  
  .about-details h2::after,
  .company-services h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #00bfa5;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  /* Text Styling */
  .about-details p,
  .company-services p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 2em;
    padding: 0 1em;
  }
  
  /* Service Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }
  
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 1.25em;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .service-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background-color: #00bfa5;
    padding: 10px;
    border-radius: 50%;
    filter: grayscale(100%) brightness(0) invert(1);
  }
  
  .service-item h3 {
    margin-top: 1em;
    color: #004d40;
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .service-item p {
    color: #555;
    text-align: center;
    font-size: 16px;
  }
  
  /* Company Info Grid */
  .company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 1em;
    background-color: #ffffff;
    padding: 1.25em 1.5em;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .info-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    background-color: #00bfa5;
    padding: 10px;
    border-radius: 50%;
  }
  
  .info-item h3 {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .info-item p {
    font-size: 16px;
    color: #666;
  }
  
  /* About Us Description */
  .company-description {
    text-align: center;
    margin-top: 2em;
  }
  
  .company-description p {
    font-size: 1.1em;
    color: #555;
    padding: 0 1em;
  }
  
  /* Know More Button */
  .know-more-button {
    margin-top: 2em;
    text-align: center;
  }
  
  .know-more-button .button {
    background-color: #00bfa5;
    color: white;
    padding: 1em 2em;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .know-more-button .button:hover {
    background-color: #008e76;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 1023px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .company-info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .company-info-grid {
      grid-template-columns: 1fr;
    }
    .about-info .container {
      flex-direction: column;
      padding: 0 1em;
    }
    .about-details,
    .company-services {
      flex: 1 1 100%;
      margin-bottom: 2em;
    }
    .info-item {
      flex-direction: column;
      text-align: center;
    }
    .info-item img {
      margin-bottom: 0.5em;
    }
  }