@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body,
html {
  /* overflow: hidden; */
}
* {
  padding: 0;
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
}
header {
  background-color: #4472c4;
  display: block;
  padding: 15px 0 15px;
}

.header-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-mobile {
  display: none;
}
.header-logo {
  width: auto;
}
.header-logo a {
  color: #92d050;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
}

.header-menus {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contact-no,
.contact-email {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.home-data-cont {
  padding: 25px 0 45px;
}
.home-data-cont h3 {
  color: #002060;
  text-align: center;
  font-size: 25px;
  padding: 20px 0;
}

.home-data-cont h4 {
  color: #002060;
  text-align: center;
  font-size: 24px;
  padding: 2px 0 0;
  margin-bottom: 0;
}

.areas-container {
  /* max-width: 1000px; */
  margin: auto;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
}
.header-banner-des h6 {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  padding: 0 42px;
  margin-bottom: 0;
}

.header-banner-des {
  background: #002060; /* Dark blue matching image_a3b90e.png */
  color: white;
  padding: 18px 15px;
  display: flex;
  width: 100%;
  border-radius: 10px 10px 0 0;
  border: 1px solid #b7d1ff;
  border-bottom: 0;
}
.responsive-action-table tbody tr td {
  border-bottom: none;
}
.responsive-action-table tbody tr:last-child td {
  border: 1px solid #b7d1ff;
}

.responsive-action-table tbody tr:last-child > td:first-child {
  border-radius: 0 0 0px 10px;
}

.responsive-action-table tbody tr:last-child > td:last-child {
  border-radius: 0 0 10px 0px;
}
.responsive-action-table tbody tr > td:last-child {
  border-left: none;
}

.header-banner {
  text-align: center;
  padding: 10px;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns for desktop */
}

.item-box {
  border: 0.5px solid #eee;
  padding: 15px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s;
}

.item-box:hover {
  background: #f9f9f9;
}

.item-title {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

/* Hidden data styling */
.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s;
  background: #fff;
}

/* The .show class revealed by JS */
.item-box.show .hidden-content {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.hidden-content ul {
  list-style-type: none;
  padding-left: 10px;
}

.hidden-content li::before {
  content: "• ";
  color: #333;
}

/* Responsive adjustment for Mobile */
@media (max-width: 600px) {
  .custom-grid {
    grid-template-columns: 1fr; /* 1 column for mobile screens */
  }
}

.responsive-action-table {
  width: 100%;
  /* border-collapse: collapse; */
  border-collapse: separate;
  border-spacing: 0;
  /* font-family: Arial, sans-serif; */
  background-color: #f8fbff;
  max-width: 100%;
  display: table;
  table-layout: fixed;
  /* border: 1px solid #B7D1FF; */
  /* border-radius: 10px;
    overflow: hidden; */
}

.table-banner p {
  color: #000;
  font-size: 14px;
  margin-bottom: 6px;
}
.table-banner h3 {
  color: #4472c4;
  padding: 0;
  margin-bottom: 0;
}

.table-banner {
  background: #ffffff;
  color: white;
  padding: 15px;
  text-align: center;
  border: 1px solid #b7d1ff;
  border-bottom: 0;
}
.responsive-action-table > thead {
  border-radius: 5px 5px 0 0;
}

.responsive-action-table td {
  width: 50%;
  padding: 15px;
  border: 1px solid #b7d1ff;
  /* cursor: pointer; */
  vertical-align: top;
  transition: background 0.3s ease;
  position: relative;
}

.cell-title {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  font-family: "Inter", sans-serif;
}

.cell-title a{
  font-weight: 500;
  font-size: 16px;
  color: #000;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

/* Hidden Data logic */
.hidden-data {
  display: none; /* Hidden by default */
  margin-top: 0px;
  padding-top: 10px;
  border: 1px solid #e0e9fb;
  background: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 1;
}

/* The 'show' class reveals the data */
td.show {
  background: #f0f4f8;
}

td.show .hidden-data {
  /* display: block; */
  display: none;
}

.hidden-data ul {
  /* list-style: none; */
  /* padding: 0; */
  margin: 0;
  padding-bottom: 10px;
  padding-top: 2px;
}

.hidden-data li {
  font-size: 13px;
  color: #363636;
  padding: 1px 0px;
  font-family: "Inter", sans-serif;
  cursor: default;
}
.responsive-action-table tbody {
  background-color: #f1f7fa;
}

/* Mobile Responsiveness */
@media screen and (max-width: 767px) {
  .responsive-action-table td {
    /* display: table; */
    width: 60%;
  }
}

.home-tab-btn-div {
  width: 100%;
  display: flex;
  margin-top: 25px;
}

.home-tab-btn {
  border: 1px solid #92d050;
  background-color: #92d050;
  color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  padding: 10px 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
.home-tab-btn:hover {
  background-color: #4472c4;
  border-color: #4472c4;
}

/* service page css ........ */

.service-data-cont {
  padding: 25px 0 45px;
}

.common-back-btn {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
}
.common-back-btn a {
  border: 1px solid #adc5f1;
  padding: 8px 20px 8px 20px;
  border-radius: 5px;
  background-color: #f1f7fa;
  font-family: "Inter";
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #000000;
}
.common-back-btn a > span {
  position: relative;
  display: inline-block;
  /* transition: all 0.3s ease-in-out; */
}
.common-back-btn a img {
  width: 12px;
}
.common-back-btn a span > img:last-child {
  opacity: 0;
  position: absolute;
  left: 0;
}

.common-back-btn a:hover span > img:last-child {
  opacity: 1;
  top: 0;
  bottom: 0;
  margin-block: auto;
}

.common-back-btn a:hover span > img:first-child {
  opacity: 0;
}

.common-back-btn a:hover {
  color: #fff;
  background-color: #002060;
}

.service-data-cont h2 {
  font-size: 28px;
  color: #002060;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-data-cont h3 {
  font-size: 26px;
  color: #002060;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-data-cont h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}
.service-data-cont h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.service-data-cont h6 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 12px;
}


.common-back-btn a span {
  display: flex;
  align-items: center;
}

/* responsive.............................. */

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 991px) {
  .header-logo a {
    font-size: 24px;
  }

  .contact-no,
  .contact-email {
    font-size: 17px;
  }

  .home-data-cont h3 {
    font-size: 24px;
  }
  .header-banner-des h6 {
    font-size: 18px;
    padding: 0 25px;
  }
  .cell-title {
    font-size: 15px;
  }
.cell-title a{
   font-size: 15px;
}

  .home-tab-btn {
    font-size: 16px;
  }

  .service-data-cont p {
    font-size: 15px;
  }

  .common-back-btn a {
    font-size: 15px;
  }

  .common-back-btn a img {
    width: 11px;
  }
}

@media screen and (max-width: 767px) {
  .table-cont {
    display: block;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-cont .responsive-action-table {
    min-width: 650px;
    margin-bottom: 10px;
  }

  .table-cont::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 50px;
  }
  .table-cont::-webkit-scrollbar-thumb {
    background-color: #4c6ec2;
    border-radius: 50px;
  }
  .cell-title a{
    font-size: 14px;
  }


  .service-data-cont h2 {
    font-size: 25px;
    margin-bottom: 17px;
  }

  .service-data-cont h4 {
    font-size: 23px;
    margin-bottom: 30px;
  }
.common-back-btn{
  margin-bottom: 25px;
}
.common-back-btn a{
      padding: 6px 17px 6px 17px;
}
    .service-data-cont h2 {
        font-size: 23px;
    }

    .service-data-cont h4 {
        font-size: 20px;
    }

.header-banner-des h6{
  padding-inline: 0 10px;
}
}

@media screen and (max-width: 575px) {

.container{
  width: 95%;
}

  .home-data-cont h3 {
    font-size: 22px;
  }
  .header-banner-des h6 {
    font-size: 17px;
  }
  .home-data-cont h4 {
    font-size: 20px;
  }
  .table-banner p {
    margin-bottom: 3px;
  }
  .header-logo {
    width: 100%;
  }
  .header-logo a {
    font-size: 19px;
    display: flex;
    justify-content: center;
            text-align: center;
  }

  .header-menus {
    width: 100%;
    align-items: center;
    margin-top: 8px;
  }
  .header-logo {
    width: 100%;
  }

  .header-banner-des h6{
  padding-inline: 0 0px;
}
}

@media screen and (max-width: 480px) {

.service-data-cont h2 {
        font-size: 20px;
    }

.header-banner-des h6 {
        font-size: 16px;
    }
    .home-data-cont h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 420px) {
}
