* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* ----------- SOCIAL NAVBAR (TOP) ------------ */
.navbar1 {
  background-color: white;
  padding: 10px 20px;
  height: 50px; /* fixed height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  flex-wrap: wrap;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.left-nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1rem;
}
.left-nav a i {
  margin-right: 5px;
}
.right-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1.2rem;
}

.right-nav a:hover,
.left-nav a:hover {
  color: #00c8b3;
}

/* ----------- MAIN NAVBAR ------------ */
header {
  background-color: #005751;
  padding: 10px 20px;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav_toggle {
  display: none;
}
.nav_icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  order: 3;
}

.nav_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 50px;
  width: 60px;
  border-radius: 10px;
}
.nav_c_name {
  font-size: 22px;
  color: white;
  font-weight: bold;
}
.nav_content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav_a_content {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
}
.nav_a_content:hover {
  text-decoration: underline #00c8b3 2px;
  text-underline-offset: 4px;
}

.social_mobile {
  display: none;
  gap: 15px;
}

.social_mobile a {
  color: white;
  font-size: 1.2rem;
}

/* ----------- RESPONSIVE CSS ------------ */
@media (max-width: 768px) {
  .navbar1 {
    display: none;
  }

  header {
    top: 0;
  }

  .nav_icon {
    display: block;
    order: 3;
  }

  .nav_content {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    order: 4;
  }

  .nav_toggle:checked ~ .nav_content {
    display: flex;
  }

  .nav_a_content {
    padding: 10px 0;
  }

  .social_mobile {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .navbar2 {
    flex-direction: row;
  }
}

.services1 {
      background-color: #f1f8f7; 
      padding: 20px 0; 
      text-align: center;
      border-radius: 0; 
      box-shadow: none;
      width: 100%;
    }
    .services1 h1 {
      font-size: 28px;
      color: #005751;
      font-weight: bold;
      margin: 0;
      line-height: 1.4;
    }
    @media (max-width: 768px) {
      .services1 h1 {
        font-size: 22px;
      }
    }
    @media (max-width: 480px) {
      .services1 h1 {
        font-size: 18px;
      }
    }
.servicess {
      background-color: white;
      padding:0px 0;
    }
    .services_content {
      overflow: auto;
      background-color: #f0f5f5;
      margin: 20px 70px 70px;
      border-radius: 10px;
      padding: 20px;
    }
    .Introduction {
      background-color: #005751;
      padding: 10px 15px;
      margin: 0 0 20px;
      border-radius: 10px;
      box-shadow: 1px 2px 4px 0px #ccc;
      color: white;
    }

    .Introduction h1 {
      font-size: 24px;
    }

    /* Paragraph List */
    .services_para ul {
      padding-left: 20px;
      list-style: disc;
    }

    .services_para li {
      margin-bottom: 10px;
    }

    .paragraph {
      font-size: 18px;
      line-height: 1.2;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .services_content {
        margin: 20px 40px;
        padding: 15px;
      }
    }

    @media (max-width: 768px) {
      .services_content {
        margin: 15px 20px;
        padding: 15px;
      }
      .Introduction h1 {
        font-size: 20px;
      }
      .paragraph {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .services_content {
        margin: 10px;
        padding: 10px;
      }
      .Introduction h1 {
        font-size: 18px;
      }
      .paragraph {
        font-size: 14px;
        line-height: 1.5;
      }
    }
.Documents_and_Procedure{
  background-color:#005751;
  padding: 10px;
  margin:20px 20px  20px;
  border-radius: 10px;;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white
}
.document-list {
  display: flex;
  flex-wrap: wrap; /* multiple rows ke liye */
  justify-content: space-evenly;
  gap: 10px; /* item ke beech spacing */
  padding: 10px;
}

.document-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
  padding: 10px;
}

.document-iteam {
  flex: 1 1 45%;
  margin: 10px 0;
  box-sizing: border-box;
  text-align: center;
}

/* Anchor button style */
.document-iteam .button {
  display: inline-block;
  text-decoration: none;
  background-color:#f0f5f5;
  color:black;
  padding: 4px 12px; /* padding kam kiya */
  border-radius: 5px;
  border: 1px solid #005751;
  box-shadow: 1px 1px 1px 0px #ccc;
  transition: 0.3s;
  margin :3px;
  width: auto; /* button ka size content ke hisaab se */
}

.document-iteam .button:hover {
  background-color:#005751;
  color:white;
  border: 1px solid white;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .document-iteam {
    flex: 1 1 90%;
    margin-left: 0;
    margin-right: 0;
  }
}
.Cost_and_Timeline{
  background-color:#005751;
  padding: 10px;
  margin:20px 20px  20px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white;
}
.Mandatory_products{
  background-color:#005751;
  padding: 10px;
  margin:20px 20px  20px;
  border-radius: 10px;;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white;
}
.Mandatory-list {
  padding:2px;
  margin:10px;
  text-align: center; /* button center karne ke liye */
}

/* Button styling */
.Mandatory-btn {
  display: inline-block; /* content ke hisaab se size */
  text-decoration: none;
  background-color:#f0f5f5;
  border-radius: 5px;
  border: 1px solid #005751;
  color:black;
  padding: 5px 10px;
  box-shadow: 1px 1px 1px 0px #ccc;
  transition: 0.3s;
}

.Mandatory-btn:hover {
  background-color:#005751;
  color: white;
  border: 1px solid #005751;
}

/* Responsive design */
@media (max-width: 768px) {
  .Mandatory-list {
    margin: 10px;
    padding: 8px;
  }
  .Mandatory-btn h1 {
    font-size: 18px; /* chhote screen ke liye font adjust */
  }
}
.Scope_of_work{
  background-color:#005751;
  padding: 10px;
  margin:50px 20px  20px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white

}
.Post_compliance{
  background-color:#005751;
  padding: 10px;
  margin:50px 20px  20px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white;
}
.Conclusion{
  background-color:#005751;
  padding: 10px;
  margin:50px 20px  20px;
  border-radius: 10px;
  box-shadow: 1px 2px 4px 0px #ccc;
  font-family: sans-serif;
  color: white

}
.services_para{
  margin-left:20px;
  font-size:18px;
}
.paragraph{
  padding:5px;
  font-weight:lighter;
  line-height: 24px;
}
.social {
    background-color: #f1f8f7;
    padding: 30px 0;
}
.social_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.social_item {
    width: 19%;
    border-top: 1px solid #005751;
    padding-top: 5px; /* Reduced for better vertical alignment */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.social_item h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0 8px 0; /* Tighter spacing above */
}
.bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #005751;
    margin-right: 8px;
}
.social_item p {
    font-size: 15px;
    margin: 3px 0;
    line-height: 1.4;
}
.social_icons {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-top: 3px; 
}
.social_icons a {
    color: #005751; 
    transition: color 0.3s, transform 0.3s;
}
.social_icons a:hover {
    color: #009688;
    transform: scale(1.2); 
}
/* Tablet view */
@media (max-width: 992px) {
    .social_item {
        width: 45%;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .social_item {
        width: 100%;
    }
    .social_icons {
        justify-content: center;
    }
    .social_item h3 {
        justify-content: center;
    }
}
.foot {
    padding: 20px 10px;
    background-color: #005751;
}
.p_footer {
    text-align: center;
    font-size: 18px;
    color: white;
    margin: 0;
}
@media (max-width: 992px) {
    .p_footer {
        font-size: 16px;
        padding: 0 15px;
    }
}
@media (max-width: 576px) {
    .p_footer {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.4;
    }
}
