
body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    margin:0;
    position: relative;
    min-height:100vh;

font-family: 'Vazirmatn', sans-serif;
}

@font-face{
font-family: 'Vazir';
src: url('../fonts/vazir.woff2') format('woff2'),
     url('../fonts/vazir.woff') format('woff');
font-weight: normal;
font-style: normal;
}

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    filter:blur(6px);
    z-index:-1;
}

.top-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.roginteb {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.h1{
    font-size: clamp(0.45rem,1.5vw,3rem);
    text-align: center;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    padding: 8px 18px !important;
    border-radius: 30px;
    color: white !important;
}

.logo{
    height:80px;
    transition: all .4s ease;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
}
.logo_1{
    height:60px;
    transition: all .4s ease;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
}

.logo:hover,
.logo_1:hover{
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9));
}


.logo{
    animation: slideLeft 1s ease forwards;
}

.logo_1{
    animation: slideRight 1s ease forwards;
}







.floating-social{
position:fixed;
bottom:110px;
left:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;
}

.social-btn{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
text-decoration:none;
box-shadow:0 6px 20px rgba(0,0,0,0.2);
transition:0.3s;
}

.social-btn:hover{
transform:scale(1.1);
}

.whatsapp{
background:#25D366;
}

.instagram{
background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}





.support-container{
    position: fixed;
    bottom: 30px;
    left: 25px;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.support-btn{
    width:40px;
    height:40px;
    background:linear-gradient(135deg,#f10000,#6366f1);
    border-radius:50%;
    /* #f10000,#6366f1 */
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgb(255, 255, 255);
    font-size:26px;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

/* popup box */
.support-box{
    margin-left:12px;
    background:white;
    padding:15px 18px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    opacity:0;
    transform:translateX(-20px);
    pointer-events:none;
    transition:0.35s;
    min-width:180px;
}

.support-box p{
    margin:0;
    font-weight:bold;
    margin-bottom:8px;
}

.support-box a{
    display:block;
    text-decoration:none;
    color:#333;
    margin-top:5px;
    font-size:14px;
}

/* hover effect */
.support-container:hover .support-box{
    opacity:1;
    transform:translateX(0);
    pointer-events:auto;
}

.support-container:hover .support-btn{
    transform:scale(1.1);
}





.call-btn{
background:linear-gradient(90deg,#00c6ff,#0072ff);;
color:white;
padding:6px 18px;
border-radius:20px;
margin-left:15px;
font-size:14px;
font-weight:500;
text-decoration:none;
transition:0.3s;
}


.navbar-nav{
align-items:center;
}

.call-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:32px;
line-height:1;
position:relative;
top:0;
}


.galaxy-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* ================= BACKGROUND EFFECTS ================= */

.nav-nebula {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,255,255,0.08), transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(255,0,255,0.05), transparent 45%);
  filter: blur(40px);
  animation: navNebulaMove 15s ease-in-out infinite alternate;
  z-index: 0;
}



.nav-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.12;
  z-index: 1;
}

/* ================= CONTENT LAYER ================= */

.nav-content {
  position: relative;
  z-index: 2;
}

/* ================= LINKS ================= */

.nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
  padding: 6px 0;
}

/* hologram underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00f7ff, #ff00ff);
  transition: 0.4s;
  box-shadow: 0 0 10px rgba(0,247,255,0.5);
}

.nav-link:hover {
  color: #00f7ff !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= ACTIVE STATE ================= */

.nav-link.active {
  color: #00f7ff !important;
}

.nav-link.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */

.call-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,198,255,0.2);
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,198,255,0.5);
}

/* ================= FLOAT IN ANIMATION ================= */

.nav-advanced .nav-item {
  opacity: 0;
  transform: translateY(-10px);
  animation: navFade 0.6s ease forwards;
}

.nav-advanced .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-advanced .nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-advanced .nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-advanced .nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-advanced .nav-item:nth-child(5) { animation-delay: 0.5s; }
.nav-advanced .nav-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes navFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== GALAXY BACKGROUND FOR FORM ===== */

.warranty-section{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
background:#02030a;
}

/* star layers */

.warranty-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:200%;
background:
radial-gradient(2px 2px at 20% 30%,white,transparent),
radial-gradient(2px 2px at 80% 70%,white,transparent),
radial-gradient(2px 2px at 50% 10%,white,transparent),
radial-gradient(2px 2px at 10% 80%,white,transparent),
radial-gradient(2px 2px at 90% 40%,white,transparent),
radial-gradient(2px 2px at 60% 60%,#00c6ff,transparent),
radial-gradient(2px 2px at 40% 20%,#00c6ff,transparent);
background-size:600px 600px;
animation:starsMove 80s linear infinite;
z-index:0;
}

@keyframes starsMove{
from{transform:translateY(0);}
to{transform:translateY(-1000px);}
}

/* make card above stars */

.warranty-card{
position:relative;
z-index:2;
}




/* =========================
CARD (DARK GLASS STYLE)
========================= */

.warranty-card{
width:100%;
max-width:700px;
padding:60px;
border-radius:25px;

/* dark glass instead of white glass */
background: rgba(10, 12, 25, 0.65);
backdrop-filter: blur(18px);

border:1px solid rgba(0,198,255,0.15);
box-shadow:
0 0 30px rgba(0,0,0,0.6),
0 0 80px rgba(0,198,255,0.08);

position:relative;
overflow:hidden;
z-index:1;
}

/* moving light streak */
.warranty-card::before{
content:"";
position:absolute;
width:200%;
height:200%;
background: linear-gradient(
120deg,
transparent,
rgba(0,198,255,0.08),
rgba(138,43,226,0.08),
transparent
);
top:-100%;
left:-100%;
transform:rotate(25deg);
animation:shine 7s infinite linear;
}

@keyframes shine{
0%{transform:translateX(-100%) rotate(25deg);}
100%{transform:translateX(100%) rotate(25deg);}
}

/* =========================
TEXT
========================= */

.warranty-card h2{
text-align:center;
color:#ffffff;
font-size:30px;
margin-bottom:10px;
text-shadow:0 0 15px rgba(0,198,255,0.3);
}

.subtitle{
text-align:center;
color:#b8c0d0;
margin-bottom:40px;
}

/* =========================
INPUTS (MORE FUTURISTIC)
========================= */
/* ===== INPUT STYLE ===== */

.form-group input,
.form-group textarea{
width:100%;
padding:12px 14px;
border-radius:10px;
border:1px solid rgba(255,255,255,0.2);
background:rgba(255,255,255,0.05);
color:white;
font-size:14px;
outline:none;
transition:0.3s;
backdrop-filter:blur(6px);
}

.form-group input:focus,
.form-group textarea:focus{
border-color:#00c6ff;
box-shadow:0 0 10px rgba(0,198,255,0.5);
background:rgba(255,255,255,0.08);
}

.form-group label{
position:absolute;
right:14px;
top:50%;
transform:translateY(-50%);
color:#bbb;
font-size:13px;
pointer-events:none;
transition:0.3s;
}

.form-group{
position:relative;
margin-bottom:20px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
top:-8px;
font-size:11px;
color:#00c6ff;
background:#02030a;
padding:0 4px;
}

/* =========================
BUTTON (STRONGER GALAXY LOOK)
========================= */

.submit-btn{
background: linear-gradient(90deg, #00c6ff, #6a00ff);
box-shadow:0 10px 30px rgba(0,198,255,0.25);
border-radius: 15px;
}

.submit-btn:hover{
box-shadow:0 15px 45px rgba(0,198,255,0.35);
}

/* =========================
FORM
========================= */
/* 

/* =========================
POPUP
========================= */

.success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-box{
background:linear-gradient(135deg,#0f2027,#203a43);
padding:50px;
border-radius:20px;
text-align:center;
color:white;
box-shadow:0 0 40px rgba(0,0,0,0.6);
animation:popupScale 0.4s ease;
}

.popup-box button{
margin-top:20px;
padding:12px 25px;
border:none;
background:#00c6ff;
color:white;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.popup-box button:hover{
background:#0072ff;
}

@keyframes popupScale{
from{
transform:scale(0.6);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}







.icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.icons a {
    font-size: 28px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.icons a:hover {
    transform: translateY(-4px);
}

.social-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* =========================
PRODUCT SLIDER
========================= */

.products-wrapper{
position:relative;
padding:80px 60px;
background:#f5f7fb;
}

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:linear-gradient(90deg,#00c6ff,#0072ff);
border:none;
color:white;
font-size:30px;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
z-index:5;
}

.slider-btn.left{
left:10px;
}

.slider-btn.right{
right:10px;
}

.slider-btn:hover{
transform:translateY(-50%) scale(1.1);
}


.ring {
  position: absolute;
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 50%;
  animation: rotate 25s linear infinite;
  z-index: 0;
}

.ring1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.ring2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  animation-duration: 40s;
}

.ring3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 60%;
  animation-duration: 18s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ================= CONTENT ================= */
.footer-glass {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left, .footer-links, .footer-social {
  min-width: 200px;
}

.brand {
  font-size: 28px;
  color: #00f7ff;
  text-shadow: 0 0 15px rgba(0,247,255,0.6);
}

/* ================= LINKS ================= */
.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 0;
  height: 100%;
  background: rgba(0,255,255,0.1);
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00f7ff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* ================= SOCIAL ================= */
.icons span {
  display: inline-block;
  font-size: 20px;
  margin: 6px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
  cursor: pointer;
}

.icons span:hover {
  background: rgba(0,247,255,0.2);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0,247,255,0.5);
}

/* ================= BOTTOM ================= */
.bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
  color: #555;
}

/* ================= REVEAL ON SCROLL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ANIMATION MOVEMENT */
@keyframes moveStars {
  from { transform: translate(0,0); }
  to { transform: translate(-800px,-600px); }
}

/* ANIMATION MOVEMENT */
@keyframes moveStars {
  from { transform: translate(0,0); }
  to { transform: translate(-800px,-600px); }
}


.galaxy-footer {
  position: relative;
  background: #000;
  overflow: hidden;
  color: white;
  padding: 80px 40px 30px;
  font-family: Arial, sans-serif;
}

/* ================= NEBULA ================= */
.nebula {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,255,255,0.08), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,0,255,0.06), transparent 45%);
  filter: blur(60px);
  animation: nebulaMove 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes nebulaMove {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.2) translateY(-40px); }
}

/* ================= STARS ================= */
.stars::before,
.stars2::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  animation: moveStars 80s linear infinite;
}

.stars2::before {
  opacity: 0.12;
  animation-duration: 140s;
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* ================= SCANLINE ================= */
.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 3px,
    transparent 6px
  );
  opacity: 0.15;
  z-index: 1;
}


body::after{
content:"";
position:fixed;
top:-200px;
left:-200px;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(0,198,255,0.25),transparent 70%);
filter:blur(120px);
z-index:-2;
animation:floatGlow 15s infinite alternate;
}

@keyframes floatGlow{
0%{
transform:translate(0,0);
}
100%{
transform:translate(200px,150px);
}
}


/* floating space glow */

@keyframes galaxyFloat{
0%{transform:translate(0,0) scale(1);}
100%{transform:translate(30px,-20px) scale(1.1);}
}