body {
  overflow-x: hidden;
  width: 100%;
  background: rgb(241, 241, 241);
}

html {
  overflow-x: hidden;
}

.topbox {
  position: relative;
  width: 100%;
  height: 40vh;
  background: url("https://res.cloudinary.com/dcxwex73e/image/upload/c_crop,g_north_west,h_692,w_3482,y_104/c_crop,g_north_west,h_790,w_3482,y_6/IMG_20260612_174922732_wvfzor.webp");
  background-position: center;
  background-size: cover;
  margin-bottom: 40px;
}

.topbox .filter {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.topbox_content {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 100%;
}

.topbox_title {
  color: white;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 18px;
  color: rgb(235, 235, 235);
  font-weight: 600;
  letter-spacing: 1px;
}

.active_breadcrumb {
  display: inline-block;
  color: var(--alpha);
  background: rgba(0, 0, 0, 0.723);
  padding: 10px 20px;
  border-radius: 6px;
}

.mw {
  max-width: 72%;
  margin: 0 auto;
  padding: 20px;
}

.colored {
  color: var(--alpha);
  font-weight: bold;
}

.introduction {
  text-align: justify;
  padding: 50px 0;
  font-size: 18px;
  line-height: 30px;
  margin: 0px 20px;
}

.about_title {
  font-size: 26px;
  color: rgb(20, 18, 18);
  /* text-transform: uppercase; */
  padding: 10px 0px;
  padding-right: 40px;
  font-weight: 600;
  text-align: justify;


}

.hover_image {
  width: 100%;
  padding: 100px 20px;
  margin: 0 auto;
  animation: float 6s infinite;
}

@keyframes float {
  50% {
    transform: translateY(50px);
  }
}

.counter {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  color: black;
  -webkit-text-fill-color: white;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  font-size: 72px;
  font-weight: 900;
}

.count {
  display: flex;
  width: 200px;
  text-align: center;
  padding: 20px 20px;
  border-bottom: 1px solid rgb(174, 174, 174);
}

.about_desc {
  font-size: 18px;
  padding-right: 40px;
  text-align: justify;
}

#infra_img img {
  width: 100%;
  /* height: 550px; */
  border-radius: 4px;

}

.row_no_margin {
  display: flex;
  flex-direction: row;
  justify-content: left;
  height: fit-content;
  margin: 30px auto;
}

.extra_padding {
  padding: 0px 20px;
}

.infra_table {
  width: 100%;
  max-width: 72%;
  box-sizing: border-box;
  margin: 10px auto 20px;
}

.infra_cards_heading {
  position: relative;
  margin: 0 0 14px;
  color: rgb(20, 18, 18);
  font-size: 26px;
  font-weight: 700;
}

.infra_cards_heading::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 10px;
  background: var(--grad);
  content: "";
}

.infra_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.infra_card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding-bottom: 8px;
  border: 1px solid rgba(225, 225, 225, 0.9);
  border-radius: 4px;
  background: #fff;
  cursor: default;
  box-shadow: 0 8px 18px rgba(38, 38, 38, 0.08);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-radius 0.4s ease-in-out;
}

.infra_card:hover {
  border-radius: 100px 0 0 0;
  box-shadow: 0 16px 28px rgba(45, 45, 45, 0.16);
  transform: translateY(-6px);
}

.infra_card img {
  display: block;
  width: 100%;
  height: 145px;
  border-bottom: 3px solid var(--alpha);
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.4s ease-in-out, border-radius 0.4s ease-in-out;
}

.infra_card:hover img {
  border-radius: 100px 0 0 100px;
  transform: scale(1.04);
}

.infra_card_content {
  padding: 14px 16px 14px;
}

.infra_card h3 {
  min-height: 40px;
  margin: 0 0 6px;
  color: #323232;
  font-size: 17px;
  line-height: 1.25;
  text-transform: capitalize;
}

.infra_card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0;
}

.infra_detail {
  min-width: 0;
  padding: 5px 8px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 3px;
  background: rgb(250, 250, 250);
}

.infra_card dt {
  color: #797979;
  font-size: 11px;
  font-weight: 700;
}

.infra_card dt.orange_text {
  color: var(--alpha);
}

.infra_card dd {
  margin: 1px 0 0;
  color: #5e5e5e;
  font-size: 16px;
  font-weight: 600;
}

.infra_card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--grad);
  content: "";
  transition: 0.4s ease-in-out;
}

.infra_card:hover::after {
  width: 100%;
}

.infra_table_heading {
  margin: 34px 0 12px;
  color: rgb(20, 18, 18);
  font-size: 22px;
}

.infra_equipment_table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 8px 18px rgba(38, 38, 38, 0.08);
}

.infra_table_scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.infra_equipment_table th,
.infra_equipment_table td {
  padding: 10px 12px;
  border: 1px solid rgb(224, 224, 224);
  text-align: left;
}

.infra_equipment_table th {
  background: var(--grad);
  color: white;
  font-size: 14px;
}

.infra_equipment_table td {
  color: #5e5e5e;
  font-size: 14px;
}

.infra_equipment_table tbody tr:nth-child(even) {
  background: rgb(250, 250, 250);
}

.border_right {
  border-right: 1px solid rgb(208, 208, 208);
}

.padding_left {
  margin-right: 300px;
}

.col-50 {
  padding: 10px;
  padding-right: 30px;
  margin: 0;
}

.divider {
  height: 100%;
  width: 5px;
  background: gray;
}

.btn_primary {
  background: var(--grad);
  padding: 16px 48px;
  text-align: center;
  border: none;
  border-radius: 2px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: 0.6s ease-in;

  &:hover {
    background: var(--gradInverted);
  }
}

.slide2 {
  width: 100%;
  min-height: 700px;
  background: linear-gradient(90deg, #1f1f1f, #1f1f1f, #121212, #000000);
  margin-top: 100px;
  margin-bottom: 1000px;

}

.con_box {
  padding: 30px 20px;

}

.card {
  background: red;
}

@media screen and (max-width:767px) {
  .btn_primary{
    width: 100%;
    margin-bottom: 20px;
      }
  .topbox_content {
    left: 20px;
  }

  .topbox_title {
    font-size: 36px;
  }

  .breadcrumb {
    font-size: 16px;
  }

  .slide1 {
    width: 90%;
    margin: 0 auto;
  }

  .extra_padding {
    padding: 0;
  }

  .infra_cards {
    grid-template-columns: 1fr;
  }

  .infra_table {
    max-width: 90%;
  }

  .col-50 {
    padding: 0px;
  }

  .about_title {
    padding-right: 0;
    font-size: 22px;
  }

  .about_desc {
    padding: 0;
  }
}

@media screen and (min-width:1200px) {
  .infra_cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/*  */
.accordion-tabs{
  position: relative;
  width: 100%;
}
.titleBox{
  width: 100%;
  padding: 20px 0px;
  /* background:var(--alpha); */
  margin: 10px 0;
  border-radius: 8px;
  /* color:var(--alpha); */
  border: none;
  font-weight: bold;
  font-size: 22px;
  text-align: left;
  outline: none;
}

.breadcrumb a{
  text-decoration: none;
  color: white;
}
