body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  /* Start transparent */
  z-index: 1;
  pointer-events: none;
  /* Allow clicks to pass through */
  transition: background-color 0.3s ease;
}

body.darkened::before {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3) !important;
}

a {
  text-decoration: none !important;
  color: white;
}

li,
p,
a {
  font-weight: 400;
}

h3,
h4,
p {
  margin: 10px 0 5px 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  max-height: 680px;
  position: relative;
}

.content {
  background-color: #4E5CCA;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 220px;
  position: relative;
}

/* Dark overlay */
.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.submenu-div {
  display: none;
}

.parent-submenu {
  padding: 0;
  display: flex;
  flex-direction: row;
  padding-top: 0px !important;
}

.parent-submenu-items {
  cursor: pointer;
  list-style: none;
  margin-right: 20px;
  font-size: 14px;
  z-index: 2 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.parent-submenu-items:hover {
  cursor: pointer !important;
}

.parent-submenu-items:last-child {
  margin-right: 0;
}

.underline {
  display: none;
  content: "";
  position: absolute;
  width: 100%;
  top: 16px;
  height: 3px;
  background-color: #9f33a2;
  margin: 4px auto;
}

.parent-submenu-items.active .underline {
  display: block !important;
}

.parent-submenu-items:hover .underline {
  display: block !important;
}

/* Desktop HEADER */
.nav-list-div {
  /* background-color: red; */
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  padding: 0 !important;
  margin-top: 25px;
}

.nav-list {
  margin-top: 30px;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 0;
  gap: 20px !important;
}

.first-half:first-child {
  /* padding-left: 50px; */
  margin-left: 8%;
}

.first-half:last-child {
  padding-right: 70px;
}

.second-half:first-child {
  padding-left: 70px;
}

.second-half:last-child {
  /* padding-right: 50px; */
  margin-right: 8%;
}

.nav-list-items {
  display: inline-block;
  position: relative;
  cursor: pointer;
  z-index: 4;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  width: max-content;
}

.dropdown {
  text-align: center;
  position: absolute;
  top: 200%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2f3779;
  display: none;
  width: auto;
  padding: 15px 20px;
  z-index: 10;
  text-align: center;
  min-width: 180px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -25px;
  background-image: var(--hover-top-img);
  background-repeat: no-repeat;
  background-size: 100% 25px;
  height: 25px;
  width: 100%;
  left: 0;
  right: 0;
}

.nav-list-items:hover {
  transform: scale(1.05);
  transition: transform 0.1s ease-in-out;
}

.nav-list-items .dropdown ul {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

.dropdown-list-items {
  padding: 8px 7px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
}

.dropdown-list-items:last-child {
  padding-bottom: 20px;
}

.dropdown-list-items:hover {
  text-decoration: underline;
}

.nav-list-items:hover~.content::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.logo {
  cursor: pointer;
  margin-top: 20px;
}

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

.logo span {
  font-size: 42px;
}

.logo-small {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: xx-small !important;
  text-transform: uppercase;
}

.action-bar {
  background-color: #2f3779;
  color: white;
  text-align: center;
  padding: 20px;
  padding-top: 10px;
  font-size: 18px;
  height: 100px;
  z-index: 1;
  display: none;
}

.overlay {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translate(-50%, -20%);
  height: 100px;
  width: 90%;
  z-index: 1;
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  margin-top: 10px;
  padding-top: 30px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  pointer-events: none;
}

.overlay-top::before {
  content: '';
  width: calc(50% - 20px);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 1;
}

.overlay-top::after {
  content: '';
  width: calc(50% - 20px);
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  background: #FFF;
  z-index: 1;
}

.overlay-triangle {
  position: absolute;
  width: 50px;
  margin: auto;
  left: 50%;
  transform: translate(-50%, 0);
  top: 92px;
  z-index: 1;
}

.overlay-triangle::before {
  content: '';
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  left: -10.5px;
  transform: rotate(64deg);
  border-radius: 0 3px 2px 0;
}

.overlay-triangle::after {
  content: '';
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  transform: rotate(-64deg);
  right: -10.5px;
  border-radius: 3px 0 0 6px;
}

.overlay h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 28px !important;
  font-weight: 400;
  margin-top: 30px;
}

.middle-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* padding: 0 50px; */
}

.middle-section-div {
  width: 90%;
}

.middle-title {
  margin: 40px 0 16px 0;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  padding: 5px;
}

.middle-title::after {
  content: "";
  display: block;
  width: 10%;
  height: 3px;
  background-color: #9f33a2;
  margin: 0 auto;
  margin-top: 5px;
}

.middle-text {
  text-align: center;
  font-size: 18px;
  font-weight: 400 !important;
  /* width: 70%; */
  margin: 16px 0 32px 0;
}

.middle-text-home {
  text-align: left;
  font-size: 18px;
  font-weight: 400 !important;
  margin: 16px 0 0px 0;

}
.middle-text-home {
  text-align: left;
  font-size: 18px;
  font-weight: 400 !important;
  margin: 16px 0 0px 0;
}

.middle-text-home a {
  color: #00aaff !important;
  text-decoration: underline !important;
  text-decoration-color: #00aaff !important;
}

.middle-text a {
  color: #5e76ee;
  text-decoration: underline !important;
}

.flex {
  display: flex;
  justify-content: start;
}

.text-center {
  text-align: left !important;
  margin-top: 10px;
  margin-bottom: 10px;
}



.text-left {
  text-align: left;
}
.text-left-service-providers {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.text-center-service-providers {
  text-align: center;
  margin: 10px 0;
}

/* If you need specifically for mobile only */
@media (max-width: 768px) {
  .text-left-service-providers {
    text-align: center;
  }
  
  .text-center-service-providers {
    text-align: center;
  }
}

.desktop-header {
  display: none;
}

.mobile-header {
  display: flex;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 18px;
  flex-direction: row;
  z-index: 2;
  position: relative;
  height: 70px;
  padding: 15px;
}

.mobile-header-div {
  width: 95%;
  display: flex;
  justify-content: space-between;
}

.mobile-logo,
.footer-logo {
  cursor: pointer;
  width: 150px;
}

.mobile-logo img,
.footer-logo img {
  width: 100%;
}

/* Side bar */
.sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #2f3779 !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  color: white;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  overflow-y: scroll;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 30px;
}

/* Class to make sidebar visible */
.sidebar.open {
  display: block;
  transform: translateX(0);
}

.close-btn {
  font-size: 46px !important;
  cursor: pointer;
  font-weight: 50 !important;
  width: fit-content;
  text-align: right;
  padding: 0;
  display: block;
  line-height: 42px;
}

.menu {
  padding: 20px 30px;
  margin-top: 40px;
}

.menu-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

.arrow-container {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.arrow-up {
  position: relative;
  width: 8px;
  height: 8px;
  border-left: 1px solid white;
  border-top: 1px solid white;
  transform: rotate(225deg);
  transition: transform 0.3s ease;
  margin: 2px;
}

/* When menu is active, rotate arrow to point up */
.menu-item.active .arrow-up {
  transform: rotate(45deg);
}

.menu-item.active {
  border-bottom: none;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.submenu li {
  margin-left: 10px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submenu li:hover {
  /* background: #fff; */
  color: #000;
}

/* Smooth dropdown animation */
.submenu.open {
  display: block;
  animation: slideDown 0.3s ease-in-out;
  border-bottom: 1px solid #fff;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BOTTOM SECTION */
.bottom-section {
  justify-content: center;
  display: flex;
}

.bottom-container {
  width: 90%;
  display: grid;
  gap: 10px;
  grid-auto-rows: min-content;
  align-items: stretch;
}

/* Bottom section box styling */
.bottom-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: white;
  min-height: 200px;
  height: auto;
}

.bottom-box-full {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  padding: 20px;
  color: white;
  grid-column: span 2;
}

.bottom-contact-div {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.bottom-box-parking {
  grid-column: span 2;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.bottom-box-parking-div1 {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.bottom-box-parking-div2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 10px;
}

.bottom-box-parking-div2 a {
  /* margin: 0 auto; */
  width: 250px;
}

.bottom-box-title {
  padding: 0 10px;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  /* width: max-content; */
  margin: 0 auto;
  text-wrap: balance;
}

.bottom-box-title:after {
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  background-color: white;
  margin: auto;
  margin-top: 5px;
}

.bottom-box-details {
  text-align: left;
  font-size: 14px;
  margin: 16px 0 24px 0;
  font-weight: normal !important;
  line-height: 1.5;
  justify-content: center;
}

.bottom-box-details-4 {
  text-align: left;
  font-size: 14px;
  font-weight: normal !important;
  line-height: 1.5;
  justify-content: center;
}


table {
  margin: 16px 0;
  width: 100%;
  border-color: white;
}

.bottom-box-details ul,
.bottom-box-details h4,
.bottom-box-details p {
  text-align: left;
}

.bottom-box-details h3 {
  font-size: 18px;
}

.bottom-box-details ul {
  padding-left: 20px;
  margin-top: 2px;
}

.bottom-box-details p{
/* padding: 5px; */
margin: 0;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.management-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* Adjust column width */
  gap: 20px;
  /* Control spacing */
}

.management-div div {
  /* background-color: green; */
  margin: 0;
  width: 200px;
  word-wrap: break-all;
}

.bottom-box-details a {
  /* color: rgb(255, 137, 137); */
  color: white;
  text-decoration: underline !important;
  padding-left: 0;
  text-underline-offset: 3px;
}

.bottom-box-slice-details a {
  color: white;
  text-decoration: underline !important;
  padding-left: 0;
  text-underline-offset: 3px;
}

.bottom-btn-container {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  text-align: center;
}

.bottom-btn-container:has(.bottom-box-btn:only-child) {
  display: flex;
  /* Switch to flexbox when only one button is present */
  justify-content: center;
  /* Centers the single button */
}

.bottom-btn-container:has(.bottom-box-btn:only-child) .bottom-box-btn {
  width: 200px;
  /* Ensures the single button is exactly 150px */
}

.bottom-btn-container:has(.bottom-box-btn:nth-child(2):last-child) {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bottom-btn-container:has(.bottom-box-btn:nth-child(2):last-child) .bottom-box-btn {
  width: 200px;
  /* flex: 1; */
}

.bottom-btn-container-slice {
  margin: 16px 0 0 0;
  padding: 0;
  display: flex !important;
  justify-content: space-between !important;
  flex-direction: column !important;
}

.bottom-btn-container-slice-div1 {
  flex: 1;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
}

.bottom-btn-container-slice-div1 p {
  width: 100% !important;
  display: block !important;
  grid-column: 1 / -1;
}

.bottom-btn-container-slice-div2 {
  flex: 1;
  gap: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.container-general-div {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.bottom-box-slice-details {
  margin: 10px;
  font-size: 14px;
  text-align: center !important;
}

.bottom-box-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 14px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
}

.bottom-box-btn:hover {
  background-color: rgb(255, 255, 255, 0.2);
}

.bottom-box-slice-div1-btns {
  justify-items: center;
  grid-column: span 2;
  flex: 1;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
}

.bottom-box-slice-div2-btns {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer section */
.footer {
  background-color: #2f3779;
  color: white;
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.footer-div {
  width: 90%;
  margin-top: 50px;
}

.footer-navigation {
  display: grid;
  grid-template-columns: 1fr;
  /* Default to 1 column for mobile */
  gap: 30px;
}

/* Social and Contact Styles */
.social {
  display: grid;
  justify-content: left;
  /* flex-direction: column; */
  gap: 14px;
  margin-bottom: 20px;
}

.footer-tel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tel-num {
  color: white;
  font-size: 14px;
}

.footer-tel-contact {
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
}

.location {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location p {
  margin: 0;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.location p a {
  font-size: 13px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social h2 {
  font-size: 18px;
  padding: 0;
  margin: 0;
}

.footer-social h4 {
  font-size: 14px;
  margin: 0;
  padding: 2px 0;
  font-weight: 400;
}

/* Row Styles */
.row {
  width: 200px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.social-the-mart,
.social-design {
  margin: 5px 0;
  flex: 1;
}

.social-icons,
.design-icons {
  display: flex;
  justify-content: left;
  gap: 20px !important;
  margin: 10px 0;
}

.social-icons svg {
  fill: #FFF;
}

.design-icons svg {
  fill: #FFF;
}

.social-icons svg:hover {
  fill: #007bff !important;
}

.design-icons svg:hover {
  fill: #007bff !important;
}

/* Hide nav items on mobile */
.nav-first,
.nav-sec,
.nav-third {
  display: none;
  /* Hide by default */
}

.nav-third {
  gap: 30px;
}

.nav-first-item {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.nav-first-subitems {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2.5;
}

.nav-first-subitem:hover {
  text-decoration: underline !important;
}

.footer-info {
  position: relative;
  margin: 20px 0px 50px 0px;
  display: flex;
  flex-direction: column;
  /* Change to column for small screens */
  align-items: center;
  /* Center items */
  font-size: 14px;
}

.footer-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  /* justify-content: center; */
  gap: 10px;
  text-transform: uppercase;
}

.footer-info ul li {
  gap: 5px;
}

.footer-info ul li a:hover {
  text-decoration: underline !important;
}

.pipe {
  margin: 0 3px;
  padding: 2px;
}

.desktop-cc {
  display: none;
}

.mobile-cc {
  display: block;
}

.allyant-accessibility {
  position: absolute;
  right: 0;
  top: -100px;
}

.badge {
  background-image: var(--black-badge-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 70px;
  height: 70px;
}

.footer-page-desc {
  max-width: 80%;
}

@media (max-width: 768px) {
  table.text-left {
    text-align: center;
  }
  
  table.text-left th,
  table.text-left td {
    text-align: center;
  }
}

.centered-list { 
  margin: 0 auto;
 text-align: left;
 list-style-position: inside;
 width: fit-content;
}
.bottom-box-details ul  {
  text-align: left;
}
.bottom-box-full .bottom-box-details {
  text-align: left;
}
.bottom-box .bottom-box-details {
  text-align: left;
}

