*{
    display: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
header{
  position: absolute;
  top: 0; left: 0; right: 0;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0,.1);
  padding:0px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
header .logo{
  font-weight: bolder;
  font-size: 25px;
  color:#333;
}
header .navbar ul li{
    position: relative;
    float: left;
}
header .navbar ul li a{
font-size: 20px;
padding: 20px;
color: #333;
display: block;
}
header .navbar ul li a:hover{
  background: #333;
  color: #fff;
}
header .navbar ul li ul{
  position: absolute;
  left: 0;
  width: 200px;
  background: #fff;
  display: none;
}
header .navbar ul li ul li{
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0,.1);
}
header .navbar ul li:hover > ul{
  display: initial;
}
#menu-bar{
  display: none;
}
header label{
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}


@media (max-width:991px) {
  header{
    padding: 20px;
  }
  header label{
    display: initial;
  }
  header .navbar{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0,.1);
    display: none;
  }
  header .navbar ul li{
     width: 100%;
  }
  header .navbar ul li ul{
    position: relative;
    width: 100%;
  }
  header .navbar ul li ul li{
    background: #eee;
  }
  #menu-bar:checked ~ .navbar{
    display: initial;
  }
}
/* slide to top */
#scrollToTopBtn {
  height: 2.3rem;
  width: 2.18rem;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  line-height: 10px;
}
@media (max-width:800px){
  #scrollToTopBtn{
    display: none;
  }
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
  }
  .section {
    margin-bottom: 3rem;
  }
 section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0d4b70;
  }
section  h3 {
    font-size: 1.6rem;
    color: #0d4b70;
  }
  p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  li {
    margin-bottom: 0.5rem;
  }
  .uniform-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fff;
  }
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  .benefits-list ul {
    list-style: none;
    padding-left: 0;
  }
  .benefits-list li::before {
    content: '✔';
    color: #27ae60;
    margin-right: 0.5rem;
  }
  .fabric-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .fabric-card {
    padding: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fafafa;
  }