/* For all custom CSS */

.text-shadow {
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

.text-shadow-light {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}


.footer-dark,
.bg-dark {
  background-color: var(--dark) !important;
}

.link-light {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: 0.2s all;
}

.link-light:hover {
  color: rgba(255, 255, 255, 1);
}

.jobs-badge {
  padding: 8px;
  border-radius: 100px;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  opacity: 0.8;
  right: -18px;
}

.bg-accent {
  background-color: var(--accent-color);
}

.bg-primary {
  background-color: var(--base-color) !important;
}

.text-primary {
  color: var(--base-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-very-light-gray-to-bottom {
  background: linear-gradient(176deg, var(--very-light-gray), transparent);
}

.hero-section {
  position: relative;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--dark), rgba(0,0,0, 0.2));
  opacity: 0.85;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.interactive-banner-style-08 figure:hover figcaption .circle-box {
  background-color: var(--white) !important;
  opacity: 0.8;
}

/* LOGO */

.default-logo {
  height: auto;
  width: 150px;
}

header.sticky.sticky-active .navbar-brand .alt-logo {
  width: 100px;
}

.mobile-logo {
  width: 112px !important;
}

header.sticky-active .btn-large {
  padding: 0 !important;
  background-color: transparent;
  color: var(--base-color);
  font-size: 18px;
  box-shadow: 0 0 0 0;
}

header.sticky-active .btn-large:hover {
  background: transparent !important;
  color: color-mix(in srgb, var(--base-color), black 12%) !important;
  border: 0px solid transparent;
  transform: translate(0px, -3px) !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Set scrollbar width and height */
::-webkit-scrollbar {
  width: 5px;
  height: auto;
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: var(--base-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--base-color), black 12%);
}

body {
  scrollbar-color: var(--base-color) transparent;
  scrollbar-width: thin; /* Optional */
}

.our-services-list li:last-of-type {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.services-card-img {
  max-height: 200px;
}

.services-card-icon {
  bottom: 10%;
    right: 0;
    transform: scale(5);
    opacity: 0.08;
    position: absolute;
}

.blog-content h3 {
  font-weight: 600;;
}

.side-img {
top: 0;
  width: 30%;
  height: 100%;
}

.side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.logo-slide {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-slide img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 100px;
}

.logo-slide:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.light-blur {
  background: rgba(var(--light), 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--light), 0.5);
}

.opacity-hover {
  transition: all 0.3s ease;
  opacity: 0.7;
}


.opacity-hover:hover {
  opacity: 1;
}

.marked ul li {
  list-style: square;
}

.mt-n28 {
  margin-top: -28px;
}

.announcement-bar {
  position: absolute;
  z-index: 50;
  width: 100%;
}

.recaptcha-service {
  transform: scale(0.9);
    margin-left: -12px;
}

.line-bg-grey {
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e9e9e9' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.line-bg-white {
background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.texture-bg-grey {
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23e9e9e9' fill-opacity='1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}