.elementor-23 .elementor-element.elementor-element-f83be33{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e7bf7ae *//* ================= FOOTER BASE ================= */
.pick11-footer{
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color:#ccc;
  font-family:Inter, sans-serif;
  padding-top:70px;
}

/* ================= CONTAINER ================= */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding:0 20px;
}

/* ================= GLASS EFFECT ================= */
.glass{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:25px;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

/* subtle glow */
.glass::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,0,0,0.08),transparent);
  opacity:0;
  transition:0.4s;
}

.glass:hover::before{
  opacity:1;
}

.glass:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(255,0,0,0.2);
}

/* ================= TITLES ================= */
.footer-title{
  color:#fff;
  font-size:20px;
  margin-bottom:15px;
  position:relative;
  display:inline-block;
}

/* 🔴 Infinite Shine Underline */
.footer-title::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:70px;
  height:3px;
  background:linear-gradient(90deg, transparent, #ff0000, transparent);
  background-size:200% auto;
  animation:shineBar 2s linear infinite;
}

@keyframes shineBar{
  0%{ background-position:-200% center; }
  100%{ background-position:200% center; }
}

/* ================= TEXT ================= */
.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:#aaa;
}

/* ================= LINKS ================= */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin:12px 0;
}

.footer-col ul li a{
  text-decoration:none;
  color:#aaa;
  font-size:14px;
  transition:all 0.3s ease;
  position:relative;
}

/* hover underline glow */
.footer-col ul li a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-2px;
  width:0%;
  height:1px;
  background:#ff2d2d;
  transition:0.3s;
}

.footer-col ul li a:hover::after{
  width:100%;
}

.footer-col ul li a:hover{
  color:#ff4d4d;
  padding-left:5px;
}

/* ================= DOWNLOAD COLUMN ================= */
.download-col{
  text-align:center;
}

/* 🔥 MAIN DOWNLOAD BUTTON */
.download-btn-main{
  display:inline-block;
  margin:10px 0 15px;
  padding:12px 26px;
  border-radius:40px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  position:relative;
  overflow:hidden;

  background:linear-gradient(120deg,#ff0000,#ff4d4d,#ff0000);
  background-size:200% auto;
  animation:btnGlow 2s linear infinite;

  box-shadow:0 6px 25px rgba(255,0,0,0.4);
}

/* shine sweep effect */
.download-btn-main::before{
  content:'';
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.8),transparent);
  transform:skewX(-25deg);
  animation:shineMove 2.5s infinite;
}

/* hover effect */
.download-btn-main:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 35px rgba(255,0,0,0.6);
}

/* animations */
@keyframes shineMove{
  0%{ left:-75%; }
  100%{ left:125%; }
}

@keyframes btnGlow{
  0%{ background-position:0% center; }
  100%{ background-position:200% center; }
}

/* text under button */
.download-text{
  font-size:13px;
  color:#888;
  margin-top:8px;
  line-height:1.5;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding:20px;
  margin-top:40px;
  font-size:13px;
  color:#666;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-title::after{
    left:50%;
    transform:translateX(-50%);
  }

  .footer-col{
    text-align:center;
  }
}/* End custom CSS */