/* Industrial parks */
.indusrial_card {
  font-family: "Merriweather Sans", Sans-serif;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 1px 0px rgba(12, 26, 75, 0.24),
    0px 3px 8px -1px rgba(50, 50, 71, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.indusrial_card_img {
  height: 200px;
  overflow: hidden;
}
.indusrial_card_img img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.indusrial_btn p{
  color: #fff !important;
  margin: 0 !important;
  font-family: "Rajdhani", Sans-serif;
  font-weight: 600;
}
.industrial_btn p {
  color: #fff !important;
  margin: 0 !important;
  font-family: "Rajdhani", Sans-serif;
  font-weight: 600;
}

.indusrial_card_text {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.indusrial_card_text h1 {
  line-height: 1.2 !important;
  font-size: 24px !important;
  margin-bottom: 0.5rem !important;
}

.indusrial_btn {
  margin-top: auto;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px !important;
  cursor: pointer;
}
.industrial_btn {
  margin-top: auto;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px !important;
  cursor: pointer;
}

/* Equal height in the row */
.indusrial_container {
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  margin: auto !important;
}

.indusrial_container > [class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.industrial_card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.industrial_card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card_header {
  background-color: #4682b4;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-bottom: none;
}

.card_title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.industrial_card_body {
  padding: 10px;
}

.card_features {
  list-style: none;
  padding: 0;
}

.card_features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.card_features_list p:first-child {
  font-weight: 600 !important;
}

.card_features_list p:last-child {
  font-weight: 300;
}

.card_features li i {
  color: #28a745;
  margin-right: 10px;
}

.overview_img {
  border-radius: 8px !important;
}

.doc_list a {
  font-size: 14px;
  color: #6a7c9a !important;
  font-weight: 600 !important;
}
.doc_list i {
  color: #4682b4;
}

.text_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #4682b4;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
}

/* Facilities */
.facilities_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: auto;
}

/* Base card container */
.network-card {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px auto;
  cursor: pointer;
}

/* Card visual element */
.network-card__visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #4682b4, #5f9ea0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 1rem;
}

/* Hidden content that appears on hover */
.network-card__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  height: 100%;
}

/* Default visible text */
.network-card__title {
  transition: opacity 0.3s ease;
}

/* Heading styling with space */
.network-card__details h3 {
  color: #4682b4 !important;
  margin: 0 0 15px 0;
  font-size: 20px;
  transition: margin 0.3s ease;
}

/* Hidden description */
.network-card__description {
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff !important;
}

/* Hover effects */
.network-card:hover .network-card__details {
  transform: translateY(0);
}

.network-card:hover .network-card__title {
  opacity: 0;
}

.network-card:hover .network-card__details h3 {
  margin-bottom: 10px;
}

.network-card:hover .network-card__description {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}

/* Facility */
.facility_card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
  cursor: pointer;
}

.facility_card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 20px #d1d1d1, -8px -8px 20px #ffffff;
}

.facility_title {
  font-weight: 600;
  font-size: 24px;
}

.facility_text {
  color: #6a7c92;
  line-height: 1.2;
  font-size: 14px;
}

/* Solutions */
.solutions_ico {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 1rem;
}
.solutions_ico i {
  color: #4682b4;
  margin-top: 0.3rem;
}

.solution-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-5px);
}
.solution-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.solution-card-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
}

@media (max-width: 768px) {
  .navigation__tabs {
    gap: 5px;
  }
  .navigation__tabs li .nav-link {
    border-radius: 0.25rem !important;
  }
  .solution-card-wrapper {
    flex: 1 1 100%;
  }
}
/* Specifications */

.specifications_box {
  background: #4682b4 !important;
  &:hover {
    color: red;
    .line {
      background: #fff !important;
    }
    .circle {
      color: #4682b4 !important;
      background-color: #fff !important;
    }
  }
}

.specifications_box h3 {
  color: #fff !important;
}
.specifications_box p {
  color: #fff !important;
}

.connectivity_card {
  border-radius: 5px;
  margin: 20px 0;
}
.connectivity_header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.connectivity_sub_header {
  font-weight: bold;
  font-family: "Rajdhani", sans-serif;
}
.connectivity_item {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
}
.connectivity_tab {
  background: #4682b4;
  color: #fff !important;
  border-radius: 8px;
}
.connectivity_iframe {
  border-radius: 8px;
}

/* Client */
.client_gallery {
  padding: 20px 0;
  width: 90%;
  margin: auto;
}

.client_gallery .row {
  justify-content: flex-start !important;
}

#infra_div .row {
  justify-content: flex-start !important;
}

#industry_gallery_images .row {
  justify-content: flex-start !important;
}

.client_item {
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
.client_item:hover {
  transform: scale(1.05);
}
.client_img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 10px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Land */

.land_btns {
  gap: 1rem;
}
.land_card-header {
  background-color: #f8f9fa;
  font-weight: bold;
  padding: 1rem;
}
.land_info-item {
  margin-bottom: 0.5rem;
}
.land_info-label {
  font-weight: bold;
}
.land_table th,
.land_table td {
  padding: 0.5rem;
}

/* Gallery */

.gallery_image {
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 10px;
}

.gallery_image img {
  width: 100%;
  height: 20vw;
  max-height: 250px;
  object-fit: cover;

  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  &:hover {
    transform: scale(1.08);
  }
}

/* company container */
.company_container .project-office-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
  border: 1px solid #5f9ea0;
  border-radius: 10px;
  padding: 25px;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(5, 20, 65, 0.1);
}

.company_container .project-office-header {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  color: #051441;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4682b4;
}

.company_container .contact-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.company_container .contact-table thead {
  background: linear-gradient(to right, #4682b4, #5f9ea0);
  color: white;
}

.company_container .contact-table th {
  text-align: left;
  padding: 12px 15px;
  font-weight: 600;
}

.company_container .contact-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  background-color: white;
}

.company_container .contact-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

.company_container .contact-table tr:hover td {
  background-color: #f0f7ff;
}

.company_container .carousel-indicators .active {
  background-color: #051441;
}

.company_container .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.land_bank {
  width: 90%;
  margin: auto;
}

.land_bank .park-card {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  /* margin-top: auto; */
}

.land_bank .park-card:hover {
  transform: translateY(-3px);
}

.land_bank .park-header {
  padding: 12px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.land_bank .park-body {
  padding: 15px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.land_bank .park-status {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.land_bank .status-completed {
  background-color: #e6f7ee;
  border: 2px solid #4fc08d;
}

.land_bank .park-title {
  font-size: 24px;
  color: #4682b4 !important;
  overflow-wrap: anywhere;
  font-family: "Rajdhani", sans-serif;
}

.land_bank .park-location {
  color: #051441;
  font-size: 14px;
}

.land_bank .park-area {
  font-weight: 600;
  color: #051441;
  font-size: 14px;
}

.park-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* land */
.landbank-card {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid #4682b4 !important;
}
.landbank-card:hover {
  transform: translateY(-5px);
}
.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4682b4 !important;
  word-wrap: normal;
}
.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #4682b4 !important;
}
.tourism_land button {
  padding: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  border-radius: 4px;
}

.tourism_land .land_btns {
  margin: auto;
  padding: 0;
  width: 100%;
}

.facility__icon {
  width: 30%;
  margin: auto;
  text-align: center;
  justify-content: center;
  display: flex;
  margin-bottom: 6px !important;
}

#projects-tab {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

#projects-tab li a {
  text-align: center;
}

/* Sector specific parks */

.vertical-tabs-container {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.vertical-tabs {
  width: 250px;
  min-width: 250px;
}

.vertical-tabs .nav-tabs {
  display: flex;
  flex-direction: column;
  border-bottom: 0;
  height: 100%;
}

.vertical-tabs .nav-item {
  margin-bottom: 6px;
}

.vertical-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 15px;
  color: #fff;
  background-color: #4682b4;
  white-space: normal;
  word-break: break-word;
  &:active {
    color: #fff !important;
  }
}

.vertical-tabs .nav-link:hover {
  background-color: #5f9ea0;
  color: white;
}

.vertical-tabs .nav-link.active {
  color: white !important;
  background-color: #5f9ea0;
  border-color: transparent;
}

.tab-content-container {
  flex: 1;
  padding-left: 20px;
}

.tab-content-container .tab-content {
  color: #6a7c92;
}

.tab-content-container .tab-content h3 {
  color: #4682b4;
  margin-bottom: 20px;
}

.sector_specific_grid {
  grid-template-columns: 1fr !important;
}

.allotment_thead th {
  font-size: 14px !important;
}

.allotment_tbody td {
  font-size: 14px !important;
}

.special_park_item .nav-link {
  font-size: 14px;
  line-height: 1.2;
}

/* Forms */

.form__container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.form__header {
  color: #2c3e50;
  border-bottom: 2px solid #4682b4;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}
.form__section {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  color: #6a7c92;
}
.section-title {
  color: #4682b4;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: -0.2px;
}
.section__content {
  font-size: 15px;
  font-weight: 600;
}
.form__control {
  padding: 0.375rem 0.75rem;
  color: #6a7c92;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
input.form__control,
select.form__control {
  height: 38px;
}
.form__label {
  padding: 7px 15px 0 15px;
}
.custom__file__label {
  color: #6a7c92;
  margin-top: 10px;
}
.custom__file__label::after {
  content: "Browse";
}
.btn__submit {
  background-color: #4682b4;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  color: #fff;
}
.btn__submit:hover {
  background-color: #4682b4;
  color: #fff;
}
.captcha__box {
  background: linear-gradient(to right, #f5f5f5, #d3d3d3);
  border: 1px dashed #ccc;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 8px;
  text-align: center;
  border-radius: 5px;
  width: 190px;
}
.refresh__icon {
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.refresh__icon:active {
  transform: rotate(360deg);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(70, 130, 180, 0.4);
}

/* Logins */
.login__title {
  font-size: 32px;
  font-weight: 700;
}
.login__content {
  font-size: 16px;
}
.btn__title {
  font-size: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-weight: 700;
}
.btn__outline {
  background: #f5f6f7;
  padding: 20px;
}
.site__button {
  background: #4682b4;
  font-size: 15px;
  padding: 0;
  text-align: center;
  line-height: 33px;
  border-radius: 0px;
  margin: 10px 0;
  border-radius: 10px;
  cursor: pointer;
}
.site__button a {
  color: #fff;
}

/* contact */

.contact_box {
  box-shadow: 0 3px 15px rgba(12, 12, 12, 9%);
  padding: 30px;
  height: 90% !important;
}
.meta_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.item_icon {
  background: #d0e3f1;
  color: #4286b4;
  padding: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_meta h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
}
.item_meta p {
  font-size: 16px;
}
.contact_info p {
  font-size: 16px;
  font-weight: 500;
  color: #312f2f;
}

/* Base container styles */
.sipcot_form {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Project Office Card */
.sipcot_form .project-office-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Header Styles */
.sipcot_form .project-office-header {
  background-color: #4682b4;
  color: white;
  padding: 18px 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}

/* Table Styles */
.sipcot_form .contact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* Table Header */
.sipcot_form .contact-table thead tr {
  background-color: #5f9ea0;
  color: white;
}

.sipcot_form .contact-table th {
  padding: 15px 10px;
  text-align: left;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sipcot_form .contact-table th:last-child {
  border-right: none;
}

/* Table Body */
.sipcot_form .contact-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
}

/* Zebra Striping */
.sipcot_form .contact-table tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.sipcot_form .contact-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Hover Effect */
.sipcot_form .contact-table tbody tr:hover {
  background-color: #e9f7fe;
  transition: background-color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .land_btns {
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  #projects-tab {
    grid-template-columns: 1fr;
  }
  #projects-tab .special_park_item a {
    border-radius: 0.25rem !important;
  }
  .sipcot_form .project-office-header {
    font-size: 18px;
    padding: 15px 10px;
  }

  .sipcot_form .contact-table {
    font-size: 14px;
  }

  .sipcot_form .contact-table th,
  .sipcot_form .contact-table td {
    padding: 10px 8px;
  }
}

/* updated contact us */
.official-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden; /* Ensures border-radius works properly */
  transition: transform 0.3s ease;
  position: relative; /* Needed for the border */
  height: 90% !important;
}
.official-card .card-header h5 {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.official-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: #4682b4;
}
.official-card:hover {
  transform: translateY(-5px);
}
.official-card .card-header {
  background-color: #5f9ea0;
  color: white;
  border-radius: 0 !important;
  padding: 15px;
}
.official-card .card-header .designation {
  color: #4682b4;
  font-weight: 600;
}
.contact-info {
  background-color: #f8f9fa;
  padding: 15px;
}
.official-card .contact-icon {
  color: #5f9ea0;
  margin-right: 8px;
}
.card-header .card-body {
  padding: 20px;
}

.card-header .card-body h3 {
  color: #4682b4;
}

.epabx-container {
  margin: 20px auto;
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.epabx-section {
  margin-bottom: 15px;
}

.epabx-section-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #4682b4; /* Primary color */
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.epabx-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.epabx-number {
  background-color: #f0f8ff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #2c4e6b;
  border: 1px solid #d1e3f6;
  transition: all 0.2s ease;
}

.epabx-pilot {
  background-color: #4682b4; /* Primary color */
  color: white;
  padding: 5px 11px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(70, 130, 180, 0.3);
}

.epabx-fax {
  background-color: #5f9ea0; /* Secondary color */
  color: white;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(95, 158, 160, 0.3);
}

@media (max-width: 768px) {
  .epabx-container {
    padding: 20px;
    margin: 15px;
  }

  .epabx-numbers {
    gap: 10px;
  }

  .epabx-number {
    padding: 7px 15px;
    font-size: 0.9rem;
  }

  .epabx-pilot {
    padding: 9px 18px;
  }
}

@media (max-width: 576px) {
  .epabx-container {
    padding: 15px;
  }

  .epabx-section-title {
    font-size: 1rem;
  }

  .epabx-numbers {
    gap: 8px;
  }

  .epabx-number {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .epabx-pilot {
    padding: 8px 16px;
    font-size: 1rem;
  }
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
  .facilities_container {
    grid-template-columns: 1fr 1fr;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .park-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .land_bank .park-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start !important;
  }
  .vertical-tabs-container {
    flex-direction: column;
  }

  .vertical-tabs {
    width: 100%;
    min-width: 100%;
  }

  .vertical-tabs .nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
  }

  .vertical-tabs .nav-item {
    margin-bottom: 10px;
    margin-right: 6px;
    flex: 1 0 auto;
  }

  .vertical-tabs .nav-link {
    text-align: center;
  }

  .tab-content-container {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .gallery_image img {
    height: 35vh;
  }
}

@media screen and (max-width: 480px) {
  .facilities_container {
    grid-template-columns: 1fr;
    margin: auto;
  }
}
