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::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image:
        radial-gradient(2px 2px at 10% 20%, white, transparent),
        radial-gradient(2px 2px at 30% 80%, white, transparent),
        radial-gradient(2px 2px at 50% 40%, white, transparent),
        radial-gradient(1px 1px at 70% 10%, white, transparent),
        radial-gradient(1.5px 1.5px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 20% 90%, white, transparent);

    background-size: 300px 300px;

    opacity: 0.9;

    animation: starDrift 25s linear infinite;
}

@keyframes starDrift {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-800px);
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

    background: #000; /* base black */

    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.02) 1px, transparent 1px);

    background-size: 400px 400px;
}





.fixed-brand {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);

  width: 160px;
  height: 42px;

  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;

  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 255, 255, 0.05);

  z-index: 9999;
}

.fixed-brand span {
  position: relative;
  z-index: 2;
}

/* canvas stars */
.fixed-brand canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 🔥 MOBILE VERSION */
@media (max-width: 768px) {
  .fixed-brand {
    width: 130px;
    height: 38px;
    font-size: 11px;
    letter-spacing: 1.5px;
    bottom: 12px;

    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.6),
      0 0 12px rgba(255, 255, 255, 0.04);
  }
}




.wood-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 75px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* inner layout */
.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;

}

/* logos */
.nav-brand img {
  height: 42px;
  transition: 0.3s ease;
  transform-origin: center;
  display: block;
}

.nav-brand img:hover {
  transform: scale(1.08);
}
.nav-links li {
  list-style: none;
}

/* center menu */
.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links a {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff00cc, #00ffe1);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: rgba(255, 0, 0, 0.918);
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: rgb(234, 0, 0);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.main-logo img {
  height: 58px;
}

/* mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-brand img {
    height: 34px;
  }
}

#stars {
  position: absolute;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  z-index: 0;
}


.mobile-menu-btn{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#000;
}

.mobile-menu{
  position:fixed;
  top:75px;
  left:0;
  width:100%;
  background:white;
  display:flex;
  flex-direction:column;
  text-align:center;
  padding:20px 0;
  transform:translateY(-120%);
  transition:0.4s ease;
  z-index:9998;
}

.mobile-menu a{
  padding:12px;
  text-decoration:none;
  color:#000;
}

.mobile-menu.active{
  transform:translateY(0);
}

@media (max-width:768px){
  .nav-links{
    display:none !important;
  }

  .mobile-menu-btn{
    display:block;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }
}



.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);
}

.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);
}




.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;
}


.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;
}


.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);
}



.floating-social{
position:fixed;
bottom:110px;
left:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;
}



.contact-card > *,
.info-card > * {
    position: relative;
    z-index: 2;
}



.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;
}


.contact-card::before,
.info-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    animation: borderFlow 6s linear infinite;

    z-index: 0;
    pointer-events: none;
}

.contact-card::after,
.info-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.06),
        transparent 70%
    );

    transform: translateX(-100%);
    animation: shineMove 5s infinite;

    z-index: 0;
    pointer-events: none;
}



.contact-card,
.info-card {
    position: relative;
    overflow: hidden;

    background: rgba(10, 10, 15, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border-radius: 22px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.04);

    color: white;

    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.6);
}

.info-card h6 {
    color: #00c6ff;
    font-weight: 600;
    margin-top: 18px;
}

.info-card p {
    color: rgba(255,255,255,0.65);
}
.custom-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;

    background: rgba(10, 10, 10, 0.65);
    color: white;

    border: 1px solid rgba(255,255,255,0.08);

    outline: none;

    transition: 0.3s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.custom-input:focus {
    border: 1px solid rgba(255,255,255,0.25);

    box-shadow:
        0 0 0 4px rgba(255,255,255,0.08),
        0 0 25px rgba(255,255,255,0.08),
        0 20px 60px rgba(0,0,0,0.6);

    background: rgba(20, 20, 20, 0.9);
}

.custom-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.submit-btn {
    background: linear-gradient(135deg, #00c6ff, #3b82f6, #6366f1);
    border: none;

    padding: 14px;
    border-radius: 14px;

    color: white;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;

    box-shadow: 0 12px 35px rgba(0,198,255,0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,198,255,0.35);
}

.submit-btn:active {
    transform: scale(0.98);
}
/* ================= 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;
}

@keyframes navNebulaMove {
  from { transform: translateX(0px) scale(1); }
  to { transform: translateX(40px) scale(1.1); }
}

.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);
  }
}









.call-btn:hover{
background:white;
color:red;
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(255,0,0,0.4);
}

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    top: 0;
    left: 0;
}

.carousel-caption {
    z-index: 10;
}

.carousel-item img {
    height: 650px;
    object-fit: cover;
}

.section-padding {
    padding: 80px 0;
}

.card-hover {
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stats-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    align-items: center; 

}
.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;

}

.cta-section {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-btn {
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 30px;
}

.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;
}

/* ================= 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;
}

@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{
font-family:'Vazirmatn', sans-serif !important;
}

.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); }
}


@keyframes galaxyShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    100% {
        filter: hue-rotate(25deg) brightness(1.2);
    }
}

@keyframes starMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-1000px);
    }
}

@keyframes borderMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes borderFlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}