* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 3px solid #5a5756;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
  }
  
  .logo span strong {
    color: #333;
  }
  
  .navbar {
    display: flex;
    gap: 20px;
  }
  .dropdown {
    position: relative;
  }
  
  /* Dropdown link */
  .dropdown-toggle {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid white;
    transition: all 0.4s ease;
  }
  
  /* Dropdown menu (hidden by default) */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e3d9d9;
    min-width: 160px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  /* Dropdown links */
  .dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect for dropdown links */
  .dropdown-menu a:hover {
    background-color: #444;
  }
  
  /* Display the dropdown menu when hovering over the Products link */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Optional: Change Products link appearance on hover */
  .dropdown-toggle:hover {
    background-color: #444;
  }
  
  
  .navbar a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .navbar a:hover,
  .navbar a.active {
    background-color: #5a5756;
    color: white;
  }

.service-container {
    display: flex;
    justify-content: space-around;
  }
  
  .service {
    background: #f9f9f9;
    padding: 20px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service:hover {
    transform: scale(1.05);
  }
  
  /* Service content styles */
  .content-section {
    padding: 60px;
    text-align: center;
  }
  
  /* Table styles */
  /* Table Section Styling */
  .content-section {
    padding: 60px;
    text-align: center;
    background-color: #f7f7f7;
  }
  
  h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
  }
  
  /* Table Container */
  .table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.377);
  }
  
  /* Styled Table */
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    text-align: center;
    font-size: 1rem;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .styled-table thead tr {
    background-color: #468bba;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
  }
  
  .styled-table th, .styled-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .styled-table tbody tr {
    transition: all 0.3s ease;
  }
  
  .styled-table tbody tr:nth-child(even) {
    background-color: #f3f3f3;
  }
  
  /* Hover Animation for Rows */
  .styled-table tbody tr:hover {
    background-color: #e0f7fa;
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Table Cell Animation */
  .styled-table td {
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  /* Hover Effect for Table Cells */
  .styled-table td:hover {
    background-color: #d1e7dd;
  }
  
  /* Responsive Table for Small Screens */
  @media (max-width: 768px) {
    .styled-table thead {
      display: none; /* Hide the header on small screens */
    }
  
    .styled-table, .styled-table tbody, .styled-table tr, .styled-table td {
      display: block;
      width: 100%;
    }
  
    .styled-table tr {
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
  
    .styled-table td {
      text-align: right;
      padding-left: 50%;
      position: relative;
    }
  
    .styled-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
    }
  }


footer {
    background-color: #0b1114;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column; /* Stack the contact info and social section */
    align-items: center; /* Center everything */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering the Contact Us section */
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column; /* Stack contact details vertically */
    align-items: center; /* Center align contact details */
}

.contact-details p {
    margin: 5px 0; /* Add margin for spacing */
    font-size: 1rem;
    text-align: center; /* Center text in contact details */
}

.contact-details a {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #555; /* Adds a subtle line above the Rights Reserved section */
  padding-top: 10px;
}

/* Footer Social Section */
.footer-social {
    margin-top: 20px; /* Add spacing above social section */
    text-align: center; /* Center the Follow Us section */
}

.footer-social h3 {
    margin-bottom: 10px; /* Add spacing below heading */
    font-size: 1.5rem;
}

.footer-social ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-social ul li img:hover {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        align-items: center;
        margin-top: 20px;
    }
}
