
* {
  padding: 0;
  box-sizing: border-box;
}
body{
    margin: 0;  
    padding: 0; 
    height:100vh;
    background: #000000;
    font-family: "Roboto Flex", sans-serif;
}
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.logo-container{
  flex: 1;
}

.logo{
   height: 40px;
   width: auto;
   object-fit: contain;
}

.sign-in-button a {
  background: #6a61e6;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.7rem, 2vh, 0.9rem);
  border: none;
  transition: background 0.3s ease;
}

.sign-in-button a:hover {
  background: #f2f2f2;
  color: #000000;
}
.premable-wrapper{
 display: flex;
 flex-direction: column;
 padding: 20px;
 margin: 50px 0;
 align-items: center;
 text-align: center; 
}

.small-text,.main-text,.short-text{
    color: #fff;
}
.top-layer-div{
    display: flex;
    background: rgba(225,225,2555,0.05);
    width: fit-content;
    padding: 2px 20px;
    border-radius: 20px;
    align-items: center;
    margin: 0 auto;
}
.top-layer-div img{
    width: 25px;
    height: 25px;
    vertical-align: middle;
    object-fit: cover;
}

.small-text{
    font-size: clamp(0.7rem, 2vh, 0.9rem);  
}
.main-text{
    font-size: clamp(2rem, 7vh, 4rem);    
}
.main-text span{
  color: #f2f2f28f;
  background: linear-gradient(
    to right,
    #f2f2f28f 20%,
    #6a61e6 40%,
    #f2f2f28f 60%
  );
  background-size: 200% auto;             
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 200% center;  
  }
}
.short-text{
    font-size: clamp(0.9rem, 2vh, 1rem);    
}

.hero-image-block img{
    width: clamp(50%, 20vh, 70%);
    height: auto;
    border-radius: 28px;
    box-shadow: 1px 2px 90px rgba(106, 97, 230, 0.5);
    border: 2px solid #bef051;
    
}
.Guarnteed-warpper{
    padding: 20px;
}
.mid-layer-wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
  gap: 0.3rem;
  color: #fff;
  padding: 0 15px;
}

.layer-left{
    font-size: clamp(1.3rem, 4vh, 2rem);  
     text-transform: capitalize;   
}
.layer-right-head{
   background: rgba(225,225,2555,0.05);
   width: fit-content;
   padding: 2px 15px;
   border-radius: 15px;
   text-transform: capitalize;
   display: flex;
   align-items: center;
}
.layer-middle img{ 
    width: clamp(70%, 20vh, 90%);
    height: auto;
    border-radius: 28px;
}
.layer-right-head img{
    width: 25px;
    height: 25px;
    vertical-align: middle;
    object-fit: cover;
}
.layer-right{
    line-height: 1.2;
    font-size: clamp(0.9rem, 2vh, 1rem); 
}
.hero-video {
  object-fit: cover;  
  pointer-events: none;
  width: clamp(70%, 20vh, 90%);
  height: auto;
  border-radius: 28px;
  box-shadow: 1px 2px 90px rgba(106, 97, 230, 0.5);
  border: 2px solid #bef051;
}
.info-wrapper{
    padding: 20px 30px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    grid-template-rows: auto;
    gap: 0.8rem;
}
.layer-img-wrap{
   background: rgba(225,225,255,0.05);
   width: fit-content;
   padding: 15px;
   border-radius: 15px;
   align-items: center;
}

.layer-img-wrap img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.layer-text,.box-label{
  font-size: clamp(1rem, 3vh, 1.2rem); 
  text-transform: capitalize;
  color: #fff; 
}
.layer{
    line-height: 1.2;
    font-size: clamp(0.8rem, 2vh, 0.9rem);
    color: #ccc;
    background: rgba(225,225,255,0.05);
    padding: 10px 15px;
    border-radius: 30px;
}
.section-mobile {
  color: #fff;
  padding: 20px;
}

.section-layout {
  display: flex;
  width: 100%;
  flex-direction: row;
  padding: 0.8rem 1rem;
  justify-content: space-evenly;
  gap: 20px;
}

.section-text {
  width: fit-content;
  height: fit-content;    
}

.section-image {
  text-align: center;
  width: fit-content;
  height: fit-content;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.feature-box img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.badge img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  object-fit: cover;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(225,225,255,0.05);
  width: fit-content;
  padding: 2px 15px;
  border-radius: 15px;
  font-size: clamp(0.8rem, 2vh, 0.9rem);
}

.main-title {
  font-size: clamp(1.7rem, 5vh, 2.5rem);     
}

.support-text,
.description,
.feature-text {
  font-size: clamp(0.8rem, 2vh, 0.9rem);
}

.section-image img {
  width: clamp(550px,20vh,250px);
  height: auto;
  border-radius: 28px;
  box-shadow: 1px 2px 150px rgba(106, 97, 230, 0.5);
}

footer {
  color: #fff;
  padding: 20px;
}
.section-foot {
  display: flex;
  width: 100%;
  flex-direction: row;
  padding: 0.8rem 1rem;
  justify-content: space-evenly;
  gap: 20px;
}
.left-block{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
}
.right-block{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    height: auto;
}
.logo-foot img{
   height: 40px;
   width: auto;
   object-fit: contain;    
}
.social-icons{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.social-icons img{
   width: 20px;
   height: 20px;
   object-fit: contain;  
}
.socials-block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.socials-block p,.company-info p,.legal p{
  font-size: clamp(0.8rem, 2vh, 0.9rem);    
}
.company-info,.legal{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.company-info a,.legal a{
    text-decoration: none;
    list-style-type: none;
    color: #6962d8;
    font-size: clamp(0.8rem, 2vh, 0.9rem);
}
.company-info a:hover,.legal a:hover{
    text-decoration: underline;
}
footer .copyright {
  text-align: center;
  padding: 1px 0;
  font-size: clamp(0.8rem, 2vh, 0.9rem);
  color: #777;
  border-top: 1px solid #eee;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0); 
}
.notification-popup {
  position: fixed;
  bottom: -100px; 
  left: 20px;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 9999;
}

.notification-popup.show {
  bottom: 20px;
  opacity: 1;
}

.notification-popup img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.main{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10%;
}
.main img{
 width: 500px;
 height: 500px;
 object-fit: cover;
 border-radius: 30px;
}
@media (max-width: 868px) { 
  html, body {
    overflow-x: hidden;
  }
  .section-layout,.section-foot{
  display: flex;
  width: 100%;
  flex-direction: column;
}
.section-image img{
  width: 100%;
}
}
@media (max-width: 500px){
  .hero-image-block img{
    width: 100%;
    height: auto; 
}
}
