/*  Start Footer CSS */
.footer-dark {
  background: linear-gradient(90deg,#3a3a3a,#2b2b2b,#3a3a3a);
  color: #ccc;
  padding-top: 100px !important;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #bdbdbd;
}
.footer-title {
  color: #fff;
  margin-bottom: 20px;
}
.contact-item strong 
{
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-logo
{
  width: 220px;
  margin-bottom: 30px;
}
.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  color: #b6f200;
}

.footer-divider {
  position: relative;
}
.footer-divider::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.btn-cta {
  background: #b6f200;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
}
.btn-cta:hover {
  background: #222;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
}
.cta-arrow {
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 50%;
  margin-left: 10px;
}


.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
 
.social-text
{
  padding-top: 50px;
  margin-bottom: 11px;
  font-size: 13px;
  color: #bdbdbd;
}
.social-icons a {
  color: #000;
  background: #fff;
  border-radius: 6px;
  margin-right: 6px;
  padding: 7px 12px;
  display: inline-block;
}
.social-icons a:hover
{
  background: #b6f200;
}
.footer-col
{
  padding-bottom: 50px;
}

.footer-dark .row 
{
  border-bottom: 1px solid #726d6d;
}
.arrow 
{
      width: 30px;
    margin-left: 30px;
}
.footer-line {
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: 0 !important;
}
.icon-footer
{
  width: 35px;
}

.footer-small-text {
  font-size: 13px;
  color: #aaa;
  max-width: 900px;
  margin: 0 auto;
}

/*  End footer CSS */

/*  Scroll Top Move */
.back-to-top {
  position: fixed;
  right: 40px;
  bottom: 350px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW ON SCROLL */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* VERTICAL LINE */
.back-to-top .line {
  width: 1px;
  height: 90px;
  background: rgba(255, 255, 255, 0.3);
  content: '';
  position: absolute;
  bottom: 113px;
  left: 5px;
}

/* VERTICAL TEXT */
.back-to-top .text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.back-to-top:hover .text {
  color: #b6f200;
}
.back-to-top:hover .line {
  background: #b6f200;
}

/* MOBILE HIDE */
@media (max-width: 767px) {
  .back-to-top {
    display: none;
  }
}
/*  End Scroll Top Move */

