body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    margin:0;
    position: relative;
    min-height:100vh;
    font-family: 'Vazirmatn', sans-serif;
    
}
body{
animation:pageIntro 1.2s ease;
}


@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(8px);
    z-index:-1;
}

.top-header{
    background:white;
    padding: 15px 40px;
    position: relative;
    overflow: hidden;
}

/* .roginteb {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
} */

.roginteb h1{
    font-size:20px;
    color:white;
    background: linear-gradient(90deg,#00c6ff,#0072ff);
    padding:10px 25px;
    border-radius:40px;
    text-align:center;
    /* box-shadow:0 0 15px rgba(0,150,255,.6); */
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.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;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}



.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; }


.warranty-section{
padding:100px 20px;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#f5f7fb,#eef1f6);
direction:rtl;
}

.warranty-card{
width:100%;
max-width:650px;
padding:45px;
border-radius:20px;
background:rgba(255,255,255,0.6);
backdrop-filter:blur(15px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.warranty-card h2{
text-align:center;
margin-bottom:10px;
}

.subtitle{
text-align:center;
color:#777;
margin-bottom:35px;
}

.form-group{
position:relative;
margin-bottom:25px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:14px;
border-radius:10px;
border:1px solid #ddd;
background:transparent;
font-size:14px;
}

.form-group textarea{
height:110px;
resize:none;
}

.form-group label{
position:absolute;
right:14px;
top:14px;
color:#777;
font-size:14px;
pointer-events:none;
transition:0.25s;
background:white;
padding:0 6px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
top:-8px;
font-size:12px;
color:#000;
}

.submit-btn{
width:100%;
padding:16px;
border:none;
border-radius:10px;
background:black;
color:white;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
background:#333;
}

#serialMessage{
font-size:12px;
margin-top:6px;
display:block;
}

/* POPUP */

.success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
display:none;
align-items:center;
justify-content:center;
}

.popup-box{
background:white;
padding:35px;
border-radius:15px;
text-align:center;
animation:pop 0.4s ease;
}

.popup-box button{
margin-top:15px;
padding:10px 20px;
border:none;
background:black;
color:white;
border-radius:6px;
cursor:pointer;
}


.products-section{
background:transparent;
}

.product-title{
font-weight:700;
font-size:34px;
color:#1c1c1c;
}

.product-filter{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.filter-btn{
border:none;
padding:10px 22px;
border-radius:30px;
background:#f2f2f2;
font-weight:500;
transition:0.3s;
}

.filter-btn:hover,
.filter-btn.active{
background:#0d6efd;
color:white;
}

.product-image{
height:220px;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
background:#f8f8f8;
}

.product-image img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.product-card:hover img{
transform:scale(1.08);
}

.product-info{
padding:20px;
text-align:center;
}

.product-info h5{
font-weight:600;
margin-bottom:8px;
}

.product-info p{
font-size:14px;
color:#777;
}

.product-btn{
margin-top:10px;
padding:10px 20px;
border:none;
border-radius:30px;
background:linear-gradient(45deg,#00c6ff,#0072ff);
color:white;
font-weight:500;
transition:0.3s;
}

.product-btn:hover{
opacity:0.85;
}

/* MODAL */

.product-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
animation:fadeIn 0.3s ease;
}

.modal-content{
background:white;
width:80%;
max-width:900px;
border-radius:15px;
padding:20px;
position:relative;
animation:slideUp 0.4s ease;
}

.modal-img{
width:100%;
height:400px;
object-fit:cover;
border-radius:10px;
margin-bottom:20px;
}

.modal-info h2{
margin-bottom:10px;
}

.modal-info p{
color:#555;
line-height:1.6;
}

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:30px;
cursor:pointer;
}


/* HERO IMAGE */

.carousel-item img{
height:90vh;
object-fit:cover;
transform:scale(1.1);
transition:transform 6s ease;
}

/* slow cinematic zoom */

.carousel-item.active img{
transform:scale(1);
}

/* TEXT CONTAINER */


/* TITLE */

.hero-title{
font-size:60px;
font-weight:700;
opacity:0;
transform:translateY(50px);
}

/* SUBTITLE */

.hero-sub{
font-size:22px;
opacity:0;
transform:translateY(50px);
}

/* WHEN SLIDE IS ACTIVE */

.carousel-item.active .hero-title{
animation:slideUp 1s ease forwards;
}

.carousel-item.active .hero-sub{
animation:slideUp 1s ease forwards;
animation-delay:.3s;
}

/* ANIMATION */

@keyframes slideUp{

0%{
opacity:0;
transform:translateY(50px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.intro-overlay{
position:absolute;
width:100%;
height:100%;
background:#000;
z-index:20;
animation:revealHero 2.2s ease forwards;
}

.triangle{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(45deg,#111,#333);
clip-path:polygon(0 0,100% 0,100% 100%);
animation:triangleOpen 2s ease forwards;
}

/* image zoom intro */

.carousel-item img{
height:700px;
object-fit:cover;
transform:scale(1.3);
animation:heroZoom 3s ease forwards;
}

/* text intro */

.hero-title{
opacity:0;
transform:translateY(40px);
animation:titleReveal 1.5s ease forwards;
animation-delay:1.2s;
}

.hero-sub{
opacity:0;
transform:translateY(40px);
animation:titleReveal 1.5s ease forwards;
animation-delay:1.5s;
}

/* animations */

@keyframes heroZoom{

0%{
transform:scale(1.3);
}

100%{
transform:scale(1);
}

}

@keyframes revealHero{

0%{
opacity:1;
}

100%{
opacity:0;
visibility:hidden;
}

}

@keyframes triangleOpen{

0%{
clip-path:polygon(0 0,100% 0,100% 100%);
}

100%{
clip-path:polygon(100% 0,100% 0,100% 100%);
}

}

@keyframes titleReveal{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}


.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;
}


.carousel-item{
position:relative;
overflow:hidden;
transition: transform 1.5s ease-in-out
}
.carousel-item img{
height:700px;
object-fit:cover;
animation:cinemaZoom 8s ease forwards;
}

@keyframes cinemaZoom{

0%{
transform:scale(1.2);
}

100%{
transform:scale(1);
}

}


/* DARK GRADIENT OVERLAY */

.carousel-item::after{
content:"";
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
background:linear-gradient(to right,
rgba(0,0,0,0.75),
rgba(0,0,0,0.35),
rgba(0,0,0,0.1));
}
.carousel-item{
transition:transform 1.2s ease-in-out;
}

.particles{
position:absolute;
width:100%;
height:100%;
background-image:url("https://www.transparenttextures.com/patterns/cubes.png");
opacity:0.15;
animation:moveParticles 40s linear infinite;
}




/* TEXT POSITION */

/* TITLE STYLE */

.hero-title span{
display:inline-block;
transform:translateY(120%);
animation:appleReveal 1s forwards;
}

.hero-title{
font-size:70px;
font-weight:700;
color:white;
letter-spacing:1px;
overflow:hidden;
}


/* SUBTITLE */

.hero-sub{
font-size:22px;
color:#e0e0e0;
opacity:0;
animation:fadeUp 1.5s forwards;
animation-delay:.5s;
}


@keyframes appleReveal{
0%{
transform:translateY(120%);
}
100%{
transform:translateY(0);
}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(30px);
}

100%{
opacity:1;
transform:translateY(0);
}
}



/* IMAGE ZOOM ANIMATION */


/* STATS */

.stats-section{
padding:100px 0;
background:#272727;
color:white;
}

.stats-container{
display:flex;
justify-content:center;
align-items:center;
gap:80px;
flex-wrap:wrap;
text-align:center;
}

.stat-box h2{
font-size:55px;
font-weight:700;
margin-bottom:10px;
color:#00c6ff;
}

.stat-box p{
font-size:18px;
color:#ddd;
}

/* CTA */

.cta-section{
background:#111;
color:white;
text-align:center;
padding:60px 0;
}

.cta-btn{
padding:12px 30px;
font-weight:bold;
border-radius:30px;
}

/* FOOTER */

.footer{
background:#272727;
color:#aaa;
padding:40px 60px;
text-align:center;
}

.footer-section{
width:45%;
}

.container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

.footer h3{
margin-bottom:10px;
color:#aaa;
}

/* ABOUT */

/* initial hidden state */
.about-left,
.about-right{
opacity:0;
transform:translateY(40px) scale(0.98);
transition:all 0.9s ease;
}

/* when visible */
.about-section.show .about-left{
opacity:1;
transform:translateY(0) scale(1);
}

.about-section.show .about-right{
opacity:1;
transform:translateY(0) scale(1);
}

/* small stagger effect */
.about-section.show .about-right{
transition-delay:0.2s;
}
.about-right img{
width:100%;
border-radius:12px;
transition:transform 0.6s ease, box-shadow 0.6s ease;
}

.about-right img:hover{
transform:scale(1.03);
box-shadow:0 20px 50px rgba(0,0,0,0.3);
}


.about-section{
padding:120px 40px;
background: white;
/* background:linear-gradient(135deg,#0b0b0b,#00000047,#e9e9e97b); */
color:rgb(0, 0, 0);
position:relative;
overflow:hidden;
}

.about-section::before{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#e7e7e7b3,transparent 70%);
top:-200px;
right:-200px;
}

.about-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
flex-wrap:wrap;
}

.about-left{
flex:1;
animation:fadeUp 1s ease;
}

.about-left h2{
font-size:42px;
font-weight:700;
margin-bottom:20px;
background:linear-gradient(90deg,#00c6ff,#0ea4fa);
-webkit-background-clip:text;
color:transparent;
}

.about-left p{
color:#000000;
font-size:17px;
line-height:1.9;
}

.about-btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
border-radius:30px;
background:linear-gradient(90deg,#00c6ff,#0072ff);
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.about-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

.about-right{
flex:1;
text-align:center;
animation:fadeRight 1.2s ease;
}

.about-right img{
max-width:380px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.5);
transition:0.5s;
}

.about-right img:hover{
transform:scale(1.05) rotate(1deg);
}


.features-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  width: 320px;
  transition: all 0.35s ease;
  position: relative;

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* subtle top accent line */
.feature-box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.feature-box h3 {
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}




.partners-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 35px;       /* cleaner spacing */
  margin-top: 70px;
}

/* clickable partner card */
.partner-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 18px;
  padding: 5px;

  background: transparent;
  border: none;
  box-shadow: none;

  text-decoration: none;

  transition: transform 0.25s ease;
}

.partner-box img {
  width: 140px;          /* bigger logos */
  max-height: 125px;
  object-fit: contain;

  opacity: 0.95;         /* already bright */
  filter: none;          /* no grayscale */

  transition: all 0.3s ease;
}



.partner-box:hover img {
  transform: scale(1.1);
  opacity: 1;
}
/* STAR PRODUCTS */

.star-products{
padding:100px 0;
background:#f5f7fb;
}

.products-grid{
display:flex;
gap:30px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

.products-grid::-webkit-scrollbar{
height:8px;
}

.products-grid::-webkit-scrollbar-track{
background:#eee;
border-radius:10px;
}

.products-grid::-webkit-scrollbar-thumb{
background:linear-gradient(90deg,#00c6ff,#0072ff);
border-radius:10px;
}

.product-box{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:0.4s;
}

.product-box{
min-width:120px;
max-width:420px;
height: 500px;
flex-shrink:0;
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:0.4s;
}

.product-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

.product-box img{
width:100%;
height:260px;
object-fit:cover;
}

.products-grid{
scroll-snap-type:x mandatory;
}

.product-box{
scroll-snap-align:start;
}

.product-content{
padding:25px;
}

.product-content h3{
font-weight:700;
margin-bottom:5px;
}

.product-content p{
color:#777;
margin-bottom:15px;
}

.product-btn{
background:#0d6efd;
color:white;
padding:8px 18px;
border-radius:25px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.product-btn:hover{
background:#084298;
}


.section-title{
color:white;
font-weight:700;
font-size:34px;
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#00c6ff;
}


.product-card p,
.news-card p{
color:#cfcfcf;
}
.products-wrapper{
position:relative;
padding:100px 60px;
background:
radial-gradient(circle at 20% 30%, rgba(0,198,255,0.08), transparent 40%),
radial-gradient(circle at 80% 70%, rgba(0,114,255,0.08), transparent 40%),
linear-gradient(135deg,#0f2027,#203a43,#2c5364);
overflow:hidden;
}

.products-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.product-box {
  min-width: 240px;   /* was 320px → too wide */
  max-width: 240px;
  flex-shrink: 0;

  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.product-box:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}





/* GENERAL */

.section-title{
text-align:center;
font-size:32px;
margin-bottom:60px;
color:#111;
font-weight:700;
}

/* BUTTON */

.main-btn{
background:linear-gradient(45deg,#00c6ff,#0072ff);
color:white;
border:none;
padding:10px 22px;
border-radius:25px;
cursor:pointer;
transition:0.3s;
}

.main-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,114,255,0.4);
}

/* ABOUT */

.about-section{
padding:120px 80px;
background:#f4f4f4;
}

.about-container{
display:flex;
align-items:center;
gap:60px;
}

.about-text-box{
flex:1;
color:#333;
line-height:1.8;
}

.about-image img{
width:450px;
border-radius:12px;
}

/* PRODUCTS */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(0);
    cursor: pointer;
}

/* image zoom effect */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* hover = lift + glow */
.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,114,255,0.25);
}

/* image zoom on hover */
.product-card:hover img {
    transform: scale(1.08);
}

/* subtle glass shine sweep */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: 0.6s;
}

.product-card:hover::before {
    left: 100%;
}











.products-section{
padding:100px 60px;
background:white;
}

.product-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
}
.product-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}
.product-card {
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.star-products {
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}


/* stagger effect */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STAR PRODUCTS */

.star-products{
padding:100px 80px;
background:#f4f4f4;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:60px;
color:#111;
}

.products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:35px;
}



.product-info{
padding:20px;
}

.product-info h3{
margin-bottom:8px;
font-size:20px;
color:#111;
}

.product-info p{
color:#666;
font-size:14px;
margin-bottom:15px;
}

.main-btn{
display:inline-block;
padding:8px 18px;
border-radius:25px;
background:linear-gradient(45deg,#00c6ff,#0072ff);
color:white;
font-size:14px;
text-decoration:none;
transition:.3s;
}

.main-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,114,255,.4);
}







.news-section {
  width: 100%;
  padding: 40px 20px;
  position: relative;
  font-family: Arial, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.news-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-slider-wrapper{
overflow:hidden;
width:100%;
}

.news-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}

.news-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.news-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.news-content {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
}

.news-btn {
  background: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 10;
}

.news-btn.left {
  position: absolute;
  left: 5%;
}

.news-btn.right {
  position: absolute;
  right: 5%;
}









/* contact us */


.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);
}








.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;
}


/* ================= 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;
}



/* ================= 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;
  height: 500px;
}

/* ================= RINGS ================= */
.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;
}




.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;
}
/* ================= CONTENT ================= */

footer{
font-family:'Vazirmatn', sans-serif !important;
}

.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); }
}


@keyframes fadeUp{
from{opacity:0; transform:translateY(40px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes fadeRight{
from{opacity:0; transform:translateX(40px);}
to{opacity:1; transform:translateX(0);}
}


@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes nebulaMove {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.2) translateY(-40px); }
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

@keyframes slideUp{
from{transform:translateY(50px); opacity:0;}
to{transform:translateY(0); opacity:1;}
}

@keyframes pop{
from{
transform:scale(0.7);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}


@keyframes navFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navNebulaMove {
  from { transform: translateX(0px) scale(1); }
  to { transform: translateX(40px) scale(1.1); }
}


@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}



@keyframes nebulaMove {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.2) translateY(-40px); }
}



@keyframes zoomEffect{
0%{
transform:scale(1.1);
}
100%{
transform:scale(1);
}
}


/* TEXT SLIDE ANIMATION */

@keyframes titleSlide{
0%{
opacity:0;
transform:translateX(-80px);
}

100%{
opacity:1;
transform:translateX(0);
}
}

@keyframes moveParticles{
0%{background-position:0 0;}
100%{background-position:1000px 500px;}
}

@keyframes pageIntro{
0%{
opacity:0;
transform:translateY(30px);
}

100%{
opacity:1;
transform:translateY(0);
}
}












@keyframes textReveal{
to{
transform:translateY(0);
}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(30px);
}
100%{
opacity:1;
transform:translateY(0);
}
}



/* =========================
   📱 MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  /* ===== HEADER FIX ===== */
  .top-header .row {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
  }

  .top-header .col-4 {
    width: auto !important;
    flex: 1;
  }

  .logo,
  .logo_1 {
    height: 40px;
  }

  .roginteb h1 {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    white-space: nowrap;
  }

  /* center text in middle */
  .roginteb {
    text-align: center;
  }

  /* ===== STAR PRODUCTS (IMPORTANT FIX) ===== */
  .products-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px;
  }

  .product-card {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .product-card img {
    height: 200px;
  }

  /* ===== NEWS SLIDER MOBILE ===== */
  .news-slider-wrapper {
    width: 100%;
  }

  .news-card {
    min-width: 100%;
  }

  .news-card img {
    height: 220px;
  }

  .news-btn.left {
    left: 5px;
  }

  .news-btn.right {
    right: 5px;
  }

  /* ===== FEATURES ===== */
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
  }

  /* ===== PARTNERS ===== */
  .partners-row {
    gap: 20px;
  }

  .partner-box img {
    width: 110px;
  }

  .partner-boxx{
    width: 110px;

  }

  /* ===== ABOUT ===== */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-right img {
    max-width: 90%;
  }

  /* ===== GENERAL TITLE ===== */
  .section-title {
    font-size: 24px;
  }

  /* prevent horizontal overflow bugs */
  body {
    overflow-x: hidden;
  }
}