body {

    scroll-behavior: smooth;
    margin:0;
    position: relative;
    min-height:100vh;
    background: white;

    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;
}

.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);
  }
}

.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);
}




.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;
right:15px;
left:auto;
transform:none;
font-size:28px;
}
}



.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);
}





.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;
}



.hero-orbit{

position:absolute;
top:50%;
left:50%;
border-radius:50%;
border:1px solid rgba(255,255,255,.08);

animation:spin 60s linear infinite;

}

.hero-orbit::before{

content:"";
position:absolute;
top:-10px;
left:50%;
transform:translateX(-50%);

width:16px;
height:16px;

border-radius:50%;
background:#00c6ff;

box-shadow:
0 0 10px #00c6ff,
0 0 25px #00c6ff,
0 0 50px #00c6ff;

}

.orbit1{width:900px;height:900px;margin:-450px;}
.orbit2{width:700px;height:700px;margin:-350px;animation-duration:45s;}
.orbit3{width:500px;height:500px;margin:-250px;animation-duration:30s;}
.orbit4{width:320px;height:320px;margin:-160px;animation-duration:18s;}

@keyframes spin{

0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}

}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

@keyframes spinReverse{
0%{transform:rotate(360deg);}
100%{transform:rotate(0deg);}
}

@keyframes rotateOrbit{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}



.hero-info{

display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;

}

.info-box{

background:rgba(255,255,255,.08);
backdrop-filter:blur(8px);

padding:25px 35px;
border-radius:12px;

transition:.4s;

}

.info-box:hover{

transform:translateY(-8px);
background:rgba(255,255,255,.15);

}

.info-box h3{

font-size:36px;
font-weight:700;
color:#00c6ff;

text-shadow:0 0 10px rgba(0,198,255,.8);

}

.info-box span{

font-size:14px;
opacity:.85;
letter-spacing:1px;

}




.about-hero{

position:relative;
overflow:hidden;
min-height:720px;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
radial-gradient(circle at 20% 30%, #1a2a44 0%, transparent 40%),
radial-gradient(circle at 80% 70%, #0a3b6b 0%, transparent 40%),
radial-gradient(circle at center, #020611 0%, #000000 100%);

color:white;
padding:180px 20px;

}

.about-hero::before{

content:"";
position:absolute;
width:200%;
height:200%;
top:-50%;
left:-50%;

background-image:
radial-gradient(white 1px, transparent 1px),
radial-gradient(#00c6ff 1px, transparent 1px);

background-size:120px 120px, 200px 200px;

opacity:.25;

animation:galaxyMove 120s linear infinite;

}

@keyframes galaxyMove{

0%{transform:rotate(0deg) translateY(0);}
100%{transform:rotate(360deg) translateY(-200px);}

}

.hero-content{

position:relative;
z-index:2;

}

.hero-particles{

position:absolute;
width:100%;
height:100%;
top:0;
left:0;

background-image:
radial-gradient(circle,#00c6ff22 2px, transparent 2px),
radial-gradient(circle,#ffffff22 1px, transparent 1px);

background-size:80px 80px;

animation: moveParticles 40s linear infinite;

}

@keyframes moveParticles{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-200px);
}

}
.about-hero h1{

font-size:64px;
font-weight:700;
letter-spacing:2px;

background:linear-gradient(90deg,#00c6ff,#4facfe,#ffffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:0 0 25px rgba(0,198,255,0.5);

margin-bottom:20px;

}

.about-hero h2{

font-size:64px;
font-weight:700;
letter-spacing:2px;

background:linear-gradient(90deg,#ff0000,#ff0000,#ff0000);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:0 0 25px rgba(0,198,255,0.5);

margin-bottom:20px;

}

.about-hero p{

font-size:20px;
opacity:.9;

}

.floating-shape{

position:absolute;
border-radius:50%;
filter:blur(60px);
opacity:.4;

}

.shape1{

width:300px;
height:300px;
background:#00c6ff;
top:-100px;
left:-100px;
animation:float1 8s ease-in-out infinite;

}

.shape2{

width:250px;
height:250px;
background:#4facfe;
bottom:-120px;
right:-80px;
animation:float2 10s ease-in-out infinite;

}

@keyframes float1{

0%,100%{transform:translateY(0)}
50%{transform:translateY(40px)}

}

@keyframes float2{

0%,100%{transform:translateY(0)}
50%{transform:translateY(-40px)}

}

.reveal{

opacity:0;
transform:translateY(60px);
transition: all 1s ease;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}


.about-section{

padding:100px 0;

}

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.about-text h2{

font-size:32px;
margin-bottom:20px;
color:#0a4f8f;

}

.about-text p{

line-height:1.9;
color:#555;
margin-bottom:15px;

}

.about-image img{

width:100%;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,.2);

}



.woodpecker-section{

background-image: url("../image/head/imgi_35_ae802362913e259549fa2285d5da487b.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;

padding:120px 0;
text-align:center;
position:relative;


}
.woodpecker-section::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.45);

}

.woodpecker-section .container{

position:relative;
z-index:2;

}
.woodpecker-section h2{

font-size:34px;
color:white;
margin-bottom:25px;

}

.woodpecker-section p{

max-width:900px;
margin:auto;
line-height:2;
color:#f1f1f1;
margin-bottom:15px;

}




.vision-mission{

padding:100px 0;

}

.vm-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

.vm-card{

background:white;
padding:40px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.vm-card{

background:white;
padding:40px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:all .4s ease;

}

.vm-card:hover{

transform:translateY(-10px);
box-shadow:0 0 25px #00c6ff55;

}

.vm-card:hover{

transform:translateY(-8px);

}

.vm-card h3{

color:#0a4f8f;
margin-bottom:20px;

}

.vm-card p{

line-height:1.8;
color:#555;

}

.vm-card ul{

padding-right:20px;

}

.vm-card li{

margin-bottom:10px;
color:#555;

}

/* 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;
}



.partners{
background:#0f0f10;
padding:100px 40px;
text-align:center;
}

.partners-header{
margin-bottom:60px;
}

.partners-main-logo{
height:70px;
margin-bottom:20px;
}

.partners h2{
color:#fff;
font-size:34px;
font-weight:600;
letter-spacing:1px;
margin-left: 170px;
}

.partners-row{
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.partner-box{
width:140px;
height:120px;
background:#1c1c1f;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.partner-box:hover{
transform:translateY(-5px);
background:#232326;
}

.partner-box img{
max-width:80%;
max-height:60%;
filter:grayscale(100%);
opacity:0.8;
transition:0.3s;
}

.partner-box:hover img{
filter:grayscale(0);
opacity:1;
}


/* 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;
}



footer{
font-family:'Vazirmatn', sans-serif !important;
}


.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-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); }
}

/* BOTTOM */
.bottom {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.6;
}




/* =====================================
   MOBILE VERSION
===================================== */
@media (max-width:768px){

/* NAVBAR */
.wood-navbar{
height:70px;
}

.nav-inner{
padding:0 15px;
}

.main-logo img{
height:42px;
}

.mobile-menu{
top:70px;
}

.mobile-menu a{
font-size:15px;
padding:15px;
}


/* FLOATING BUTTONS */
.floating-social{
left:15px;
bottom:95px;
gap:10px;
}

.social-btn{
width:45px;
height:45px;
font-size:22px;
}

.support-container{
left:15px;
bottom:25px;
}

.support-box{
display:none;
}


/* HERO SECTION */
.about-hero{
min-height:auto;
padding:120px 15px 80px;
}

.about-hero h1{
font-size:42px;
line-height:1.3;
}

.about-hero h2{
font-size:38px;
line-height:1.3;
}

.about-hero p{
font-size:16px;
}


/* ORBITS */
.orbit1{
width:400px;
height:400px;
margin:-200px;
}

.orbit2{
width:300px;
height:300px;
margin:-150px;
}

.orbit3{
width:220px;
height:220px;
margin:-110px;
}

.orbit4{
width:150px;
height:150px;
margin:-75px;
}


/* INFO BOXES */
.hero-info{
flex-direction:column;
gap:15px;
}

.info-box{
width:100%;
padding:20px;
}

.info-box h3{
font-size:28px;
}

.info-box span{
font-size:13px;
}


/* ABOUT SECTION */
.about-section{
padding:70px 0;
}

.about-grid{
grid-template-columns:1fr;
gap:35px;
}

.about-text{
text-align:center;
padding:0 15px;
}

.about-text h2{
font-size:28px;
}

.about-text p{
font-size:15px;
line-height:2;
}

.about-image img{
border-radius:15px;
}


/* WOODPECKER SECTION */
.woodpecker-section{
padding:80px 20px;
}

.woodpecker-section h2{
font-size:28px;
}

.woodpecker-section p{
font-size:15px;
line-height:2;
}


/* MISSION & VISION */
.vision-mission{
padding:70px 15px;
}

.vm-grid{
grid-template-columns:1fr;
gap:25px;
}

.vm-card{
padding:25px;
}

.vm-card h3{
font-size:24px;
text-align:center;
}

.vm-card p,
.vm-card li{
font-size:15px;
line-height:2;
}


/* FOOTER */
.galaxy-footer{
padding:60px 20px 20px;
text-align:center;
}

.footer-glass{
flex-direction:column;
gap:40px;
}

.footer-left,
.footer-links,
.footer-social{
width:100%;
}

.brand{
font-size:24px;
}

.footer-links h3,
.footer-social h3{
margin-bottom:15px;
}

.footer-links a{
margin:10px 0;
font-size:15px;
}

.icons{
justify-content:center;
gap:18px;
}

.icons a{
font-size:30px;
}

.social-img{
width:30px;
height:30px;
}

.bottom{
font-size:11px;
line-height:1.8;
}


/* FOOTER RINGS */
.ring1{
width:220px;
height:220px;
}

.ring2{
width:300px;
height:300px;
}

}