/* ---------------------------------- infinite-slider Section ---------------------------------------------- */
.infinite-slider-section {
    margin: 200px 0 10px 0;
}
.logo-slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
/* Leva maska */
.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
/* Leva maska */
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #161616 10%, transparent 100%);
}
/* Desna maska */
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #161616 10%, transparent 100%);
}
.logo-track {
  display: flex;
  width: fit-content;
  will-change: transform;
  animation: scrollLogos 120s linear infinite;
  padding: 0; 
  margin: 0; 
  list-style: none; 
}
.logo-track ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.logo-track li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
  flex-shrink: 0;
}
.logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo-track img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.logo-track img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0;
}
/* ---------------------------------- infinite-slider Ssection ---------------------------------------------- */
/* ---------------------------------- Footer ---------------------------------------------- */
footer {
    font-family: "Montserrat", sans-serif;
    border-top: 1px solid #2c2c2c;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.3);
    background: linear-gradient(0deg, #161616 0%, #2c2c2c 50%, #161616 100%);
}
.footer-container {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    gap: 40px;
    padding: 30px;
}
.footer-container > div {
    flex: 1 1 220px;
    min-width: 200px;
}
.footer-about {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-right: 1px solid #2c2c2c;
    box-shadow: inset -2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}
.footer-logo-wrapper img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.footer-logo-text h3 {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    background: linear-gradient(-195deg, #424d5e, #26282c);
    box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px 0px;
}
.footer-logo-text .e {
    color: #4ade80; 
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
}
.footer-brand-text {
    color: #ffffff;
    margin-left: 4px;
}
.footer-about p {
    font-size: 1rem;
    color: #656d71;
    line-height: 1.5;
    margin: 0;
}
.footer-nav {
    border-right: 1px solid #2c2c2c;
    box-shadow: inset -2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer-social h4,
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #cccccc; 
    margin-bottom: 12px;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    margin-bottom: 5px;
}
.footer-nav ul li a {
    font-size: 0.9rem;
    color: #656d71; 
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav ul li a:hover {
    color: #ff5e00;
}
.footer-contact {
    border-right: 1px solid #2c2c2c;
    box-shadow: inset -2px 0 0 rgba(0, 0, 0, 0.1);
}
.footer-contact p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #656d71;
}
.footer-social h4 i,
.footer-contact h4 i,
.footer-nav h4 i {
    margin-left: 10px;
    padding-bottom: 2px;
    font-size: 1.3rem;
    vertical-align: middle;
    color: #ff5e00;
}
.footer-contact p i {
    margin-right: 10px;
    font-size: 1.3rem;
    vertical-align: middle;
    color: #cccccc;
}
.footer-contact a {
    color: #656d71; 
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}
.dock-bar {
    display: flex;
    justify-content: center;
    width: max-content;
    gap: 10px;
    padding: 15px 40px;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
    z-index: 999;
}
.dock-bar .icon {
    position: relative;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}
.dock-bar .icon img {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
    transform-origin: 40% 70%;
    -webkit-box-reflect: below 2px linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
.dock-bar .icon:hover img {
    transform: translateY(-10px) scale(1.3);
    margin: 0 5px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}
.dock-bar .icon:hover + .icon img,
.dock-bar .icon.prev img {
    transform: scale(1.1);
    margin: 0 5px;
}
.dock-bar .tooltip {
    display: none;
    position: absolute;
    top: -180%;
    left: 50%;
    transform: translateX(-50%) translateY(80%);
    background-color: #000000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 7px;
    font-size: 0.7rem;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}
.dock-bar .tooltip::after {
    content: "";
    position: absolute;
    bottom: -6px; 
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000; 
}
.dock-bar .icon:hover .tooltip {
    display: block;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #2c2c2c;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #888888;
}
.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
/* ---------------------------------- Footer ---------------------------------------------- */
/* ---------------------------------- Back to Top taster ---------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(-135deg, rgba(41, 41, 41, 0.8), rgba(22, 22, 22, 0.8));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: inset 0 10px 8px rgba(71, 71, 71, 0.3);
  z-index: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  transform: scale(1.1);
  background: linear-gradient(-135deg, #161616, #292929);
  color: #36e600;
}
/* ---------------------------------- Back to Top taster ---------------------------------------------- */
/* ---------------------------------- Banner Section ---------------------------------------------- */
.banner-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    color: #f9fafb; 
    padding: 3rem 1rem;
    text-align: center;
    margin: 4rem auto 2rem auto;
}
.baner-text {
    position: relative;
    max-width: 850px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: radial-gradient(circle 600px at 0% 0%, #444, #0c0d0d);
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
}
.card-effect {
  position: relative;
  max-width: 850;
  height: 250px;
  border-radius: 10px;
  padding: 2rem;
  background: radial-gradient(circle 280px at 0% 0%, #2c2c2c, #0c0d0d);
  border: 1px solid #202222;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.card-effect .ray {
  max-width: 850px;
  height: auto;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  right: 0;
  transform: rotate(40deg);
  z-index: 1;
}
.card-effect .dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #888888;
  box-shadow: 0 0 5px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 12%;
  top: 12%;
  animation: moveDot 6s linear infinite;
}
@keyframes moveDot {
  0%, 100% {
    top: 5%;
    right: 2%;
  }
  25% {
    top: 5%;
    right: calc(100% - 3%);
  }
  50% {
    top: calc(100% - 8%);
    right: calc(100% - 3%);
  }
  75% {
    top: calc(100% - 8%);
    right: 2%;
  }
}
.card-effect .line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
  z-index: 1;
}
.card-effect .topl {
    width: 98%;
    left: 11px;
    top: 18px;
    background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.card-effect .bottoml {
    width: 98%;
    left: 11px;
    bottom: 22px;
}
.card-effect .leftl {
    top: 9px;
    left: 24px;
    width: 1px;
    height: 94%;
    background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.card-effect .rightl {
    top: 9px;
    right: 21px;
    width: 1px;
    height: 94%;
}
.baner-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.baner-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #d1d5db;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.banner-btn {
  display: inline-block;
  border: 1px solid #2b2b2b;
  color: #926d57;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background: linear-gradient(to right, #D16527 0%, #D16527 100%);
  background-size: 0% 100%; 
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.banner-btn:hover {
  background-size: 100% 100%; 
  color: #fff;
  border-color: #D16527;
  box-shadow: 0 4px 15px rgba(209, 101, 39, 0.6);
}
.banner-logo img {
    width: 250px;
    height: auto;
}
.banner-social-link {
    position: absolute;
    display: flex;
    justify-content: end;
    right: 45px;
    bottom: 30px;
    gap: 10px;
}
.banner-social-link img {
    width: 22px;
    height: 22px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: transform 0.2s ease-in-out;
}
.banner-social-link img:hover {
    transform: translateY(-2px) scale(1.2);
    filter: grayscale(0);
    opacity: 1;
}
/* ---------------------------------- Banner Section ---------------------------------------------- */
@media (max-width: 768px) {
   .infinite-slider-section {
        margin: 50px 0 10px 0;
    }
    .footer-container {
      gap: 15px;
      padding: 10px;
  }
  .footer-logo-wrapper img {
    width: 35px;
    height: 35px;
  }
  .footer-logo-text h3 {
      font-size: 1.1rem;
      padding: 5px 8px;
  }
  .footer-logo-text .e {
      font-size: 1.1rem;
  }
  .footer-about p {
      font-size: 0.8rem;
      line-height: 1.2;
  }
  .footer-social h4,
  .footer-nav h4,
  .footer-contact h4,
  .footer-social h4 {
      font-size: 1.1rem;
  }
  .footer-nav h4 i {
      font-size: 1.1rem;
  }
  .footer-bottom {
      margin-top: 10px;
      padding-top: 10px;
      font-size: 0.7rem;
  }
  .dock-bar {
      margin: 20px auto 0 auto;
  }
  #backToTop {
    bottom: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .footer-contact p {
      font-size: 0.9rem;
  }
  .footer-contact p i {
      margin-right: 5px;
      font-size: 0.9rem;
  }
}