.elementor-11 .elementor-element.elementor-element-4f00fbe{--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;}/* Start custom CSS for html, class: .elementor-element-8765c58 */*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}
body{
  min-height:100vh;
  background: radial-gradient(circle at top, #0f1c2e, #05070d);
  color:white;
  /*display:flex;*/
  justify-content:center;
  align-items:center;
}

.containor{
    align-items: center;
    justify-content: center;
    text-align: center;
}
.main-head{
    font-size: 45px;
    margin-top: 30px;
    font-weight: 600;
     background: linear-gradient(90deg, #00f2fe, #4facfe, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-wrapper{
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-wrapper img{
    width: 33vh;
    border-radius: 50%;
    border: 5px solid #a1f5d1;
}

.sub-head{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 45px;
}
.sub-head span{
    font-weight: 600;
    color: #b01000;
}
p{
    margin: 10px;
}
.features{
  list-style: none;
  padding: 0;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.features li{
  display: flex;              
  align-items: center;        
  gap: 10px;                  
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.features .icon{
  width: 24px;                
  text-align: center;
}
/*button-1*/

.shine-btn-1{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 35px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff1a1a, #b30000);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  animation: pulse 1.5s infinite;
}

/* Icon size */
.shine-btn-1 i{
  font-size: 27px;
}

/* White shine layer */
.shine-btn-1::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  animation: shine 2.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes shine{
  0% { left: -120%; }
  100% { left: 120%; }
}

/* Hover effect */
.shine-btn-1:hover{
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,0,0,0.7);
}

/*button-2*/
.shine-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 35px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff1a1a, #b30000);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
   animation: pulse 1.5s infinite;

}

/* Icon size */
.shine-btn i{
  font-size: 27px;
}

/* White shine layer */
.shine-btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  animation: shine 2.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes shine{
  0% { left: -120%; }
  100% { left: 120%; }
}

/* Hover effect */
.shine-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,0,0,0.7);
}
.sticky-bar{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 15px;
  background: linear-gradient(90deg, #00ffd5, #00b3ff);
  border-radius: 15px 15px 0 0;
  z-index: 9999;
}

.sticky-item{
  text-align: center;
  line-height: 1.1; /* reduces gap between lines */
}

.sticky-item .big{
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.sticky-item .small{
  font-size: 12px;
  font-weight: 600;
  color: #000;
  display: block;
}

.divider{
  width: 1px;
  height: 30px;
  background: rgba(0,0,0,0.4);
}

/* Mobile optimization */
@media (max-width: 480px){
  .sticky-bar{
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 8px 10px;
  }

  .sticky-item .big{
    font-size: 18px;
  }

  .sticky-item .small{
    font-size: 11px;
  }
}
@media (max-width: 600px) {

  .main-head{
    font-size: 30px;
    margin-top: 20px;
  }

  .profile-wrapper img{
    width: 150px;   /* instead of vh */
  }
.sub-head span{
    font-weight: 600;
}
  .sub-head{
    font-size: 22px;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  p{
    font-size: 17px;
    padding: 0 12px;
  }

  .features{
    max-width: 280px;
    margin-left: 20%;
  }

  .features li{
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;

  }
  .icon{
     font-size: 17px;
  }

  .btn-primary span{
    font-size: 16px;
  }

}
.sticky-bar{
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    padding: 18px 10px;
  }

  .sticky-item .big{
    font-size: 20px;
    font-weight: 600;
  }

  .sticky-item .small{
    font-size: 12px;
  }
  
  .shine-btn-1{
      font-size: 18px;
      padding: 12px 18px;
  }
    .shine-btn{
      font-size: 18px;
      padding: 12px 18px;

  }
}/* End custom CSS */