 .social-icons a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 18px;
}

   .container { 
    margin: 0 auto;
            /* background: white; */
            padding: 10px 60px;
            /* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
            border-radius: 10px;
        }

.main-heading{
    border-bottom:1px solid orange;
    margin-bottom: 10px;
    font-size: 32px;
    color: orange;
}

    .subtitle {
      text-align: center;
      font-size: 20px;
      color: #555;
      font-weight: 500;
      margin: 0 0 20px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background-color: #fff;
    }

    th,
    td {
      padding: 12px;
      border: 1px solid #ddd;
      text-align: left;
    }

    th {
      background-color: #2980b9;
      color: white;
    }

    tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    .feature-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .feature-card {
      background: whitesmoke;
      border-radius: 8px;
      border: 1px solid orange;
      padding: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      flex: 1;
      min-width: 220px;
    }

    .image-wrapper,
    .small-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 40px 0;
    }

    .image-wrapper img,
    .small-image-wrapper img {
      width: 50%;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    ol {
      margin-left: 20px;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    }

    footer {
      background-color: #f5f5f5;
      padding: 40px 20px 20px;
      margin-top: 40px;
      border-top: 1px solid #ddd;
      text-align: center;
    }

    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .search-bar input[type="text"],
    .newsletter input[type="email"] {
      padding: 10px;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .search-bar button,
    .newsletter button {
      padding: 10px 15px;
      margin-left: 10px;
      background-color: blue;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .footer-links a {
      margin: 0 12px;
      color: #555;
      text-decoration: none;
      font-weight: 500;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .social-icons a {
      margin: 0 10px;
      font-size: 24px;
      color: #444;
    }

    .social-icons a:hover {
      color: #00a86b;
    }

    .copyright {
      margin-top: 20px;
      color: #777;
      font-size: 14px;
    }


  .company-section {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
  }

  .company-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
  }

  .company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .company-card {
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #e9b555; /* Stylish left border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    border-radius: 10px;
  }

  .company-card:hover {
    transform: translateY(-5px);
  }

  .company-card h3 {
    margin-top: 0;
    color: #4099e2;
    font-size: 18px;
  }

  .company-card p {
    margin: 10px 0 0;
    font-size: 15px;
    color: #444;
  }

  @media (max-width: 600px) {
    .company-section h2 {
      font-size: 20px;
    }

    .company-card {
      padding: 15px;
    }

    .company-card h3 {
      font-size: 16px;
    }

    .company-card p {
      font-size: 14px;
    }
  }

    @media screen and (max-width: 768px) {
      .feature-grid {
        flex-direction: column;
      }

      .image-wrapper img,
      .small-image-wrapper img {
        width: 100%;
      }

      th,
      td {
        font-size: 80%;
      }

      .search-bar input,
      .newsletter input {
        width: 100%;
        margin-bottom: 10px;
      }

      .search-bar form,
      .newsletter form {
        flex-direction: column;
        align-items: center;
      }

      .search-bar button,
      .newsletter button {
        margin-left: 0;
      }

    }
