.btn {
  transition: all 0.3s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 1rem 1rem;
}

.telecom-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-color: #faf2e7;

  overflow: hidden;
}

/* Node and Line Styles */
.node,
.line {
  position: absolute;
  opacity: 0.5;
}

/* Node Styling */
.node {
  width: 6px;
  height: 6px;
  background-color: #c4cc35;
  border-radius: 50%;
  animation: randomMove1 5s linear infinite;
}

/* Line Styling */
.line {
  width: 1px;
  height: 60px;
  background-color: #146a81;
  transform-origin: top;
  animation: randomMove2 6s linear infinite;
}

/* Randomized Animations for Movement */
@keyframes randomMove1 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -10px);
  }
  50% {
    transform: translate(-10px, 20px);
  }
  75% {
    transform: translate(-15px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes randomMove2 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-20px, 15px);
  }
  50% {
    transform: translate(15px, -20px);
  }
  75% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.image-container {
  position: relative;
  width: 150px; /* Adjust as necessary */
  height: auto; /* Maintain aspect ratio */
}

.grayscale-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.main-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .grayscale-image {
  filter: grayscale(0%); /* Remove grayscale on hover */
}

.image-container:hover .main-image {
  opacity: 1; /* Show main image on hover */
}

.loading-container {
  position: fixed; /* Use fixed positioning */
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  width: 100%; /* Full width to cover entire screen */
  background: linear-gradient(180deg, #2c3e50, #4ca1af); /* Background gradient */
  font-family: Arial, sans-serif; /* Change as needed */
  color: #fff; /* Text color */
  text-align: center;
  z-index: 1000; /* Ensure this appears on top */
  overflow: hidden;
}

.spinner {
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-top: 8px solid #00ffcc; /* Spinner color */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1 {
  margin: 0;
  font-size: 2em;
}

p {
  font-size: 1em;
}

#home-banner-container {
  width: 100%;
}

#home-banner-container #right-home-img {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0); /* Start and end at original position */
  }
  50% {
    transform: translateY(-50px); /* Move upward */
  }
}

#home-banner-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* Special Buttons */
.cssbuttons-io-button {
  background: #c4cc35;
  color: black;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #c4cc35;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 4px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #c4cc35;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #c4cc35;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.button {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  border-width: 0;
  padding: 0 8px 12px;
  min-width: 10em;
  box-sizing: border-box;
  background: transparent;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  padding: 8px 16px;
  transform: translateY(0);
  text-align: center;
  color: #fff;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.25);
  transition-property: transform;
  transition-duration: 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

.button:active .button-top {
  transform: translateY(6px);
}

.button-top::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  background-image: radial-gradient(#146a81, #146a81);
  text-align: center;
  color: #fff;
  box-shadow: inset 0 0 0px 1px rgba(255, 255, 255, 0.2), 0 1px 2px 1px rgba(255, 255, 255, 0.2);
  transition-property: border-radius, padding, width, transform;
  transition-duration: 0.2s;
}

.button:active .button-top::after {
  border-radius: 6px;
  padding: 0 2px;
}

.button-bottom {
  position: absolute;
  z-index: -1;
  bottom: 4px;
  left: 4px;
  border-radius: 8px / 16px 16px 8px 8px;
  padding-top: 6px;
  width: calc(100% - 8px);
  height: calc(100% - 10px);
  box-sizing: content-box;
  background-color: #146a81;
  background-image: radial-gradient(
      4px 8px at 4px calc(100% - 8px),
      rgba(255, 255, 255, 0.25),
      transparent
    ),
    radial-gradient(
      4px 8px at calc(100% - 4px) calc(100% - 8px),
      rgba(255, 255, 255, 0.25),
      transparent
    ),
    radial-gradient(16px at -4px 0, black, transparent),
    radial-gradient(16px at calc(100% + 4px) 0, black, transparent);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5), inset 0 -1px 3px 3px rgba(0, 0, 0, 0.4);
  transition-property: border-radius, padding-top;
  transition-duration: 0.2s;
}

.button:active .button-bottom {
  border-radius: 10px 10px 8px 8px / 8px;
  padding-top: 0;
}

.button-base {
  position: absolute;
  z-index: -2;
  top: 4px;
  left: 0;
  border-radius: 12px;
  width: 100%;
  height: calc(100% - 4px);
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.75), inset 0 2px 2px rgba(0, 0, 0, 0.25);
}

.accordions {
  width: 90%;
  max-width: 75%;
  margin: 0 auto;
}

.accordion {
  border: 1px solid #061222;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.5s ease;
  background-color: #f1f1f1;
}

.accordion:hover {
  border-color: #146a81;
}

.accordion__header {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem;
  color: #fff;
}
.accordion__header:after,
.accordion__header:before {
  content: "";
  position: absolute;
  right: 1.5em;
  width: 2px;
  height: 0.75em;
  background-color: #fff;
  transition: all 0.2s;
}
.accordion__header:after {
  transform: rotate(90deg);
}

.accordion:has(input:checked) .accordion__header {
  color: #222;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  * {
    padding: 0 1em 1em;
  }
}

.accordion input {
  display: none;
}

.accordion:has(input:checked) {
  border-color: #000;
  background-color: #fff;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.accordion input:checked ~ .accordion__header:before {
  transform: rotate(270deg) !important;
  background-color: #000;
}

.accordion input:checked ~ .accordion__header:after {
  transform: rotate(270deg) !important;
  background-color: #000;
}

.accordion input:checked ~ .accordion__content {
  max-height: 1000px; /* Adjust based on content length */
}
.frosted-background {
  background-color: #00312d; 
  backdrop-filter: blur(10px); /* Blur effect for the frost */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for the frost */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
