*{
  margin: 0;
  box-sizing: border-box;
}
p , h1 , h2 , h3,h4,h5,h6,span{
  color: #fff;
}
.top{

  height: 100vh;
  width: 100%;
}
.main{
  display: flex;
  align-items: center;
  justify-content: center;
}*{
margin: 0;
box-sizing: border-box;
}


body{
min-height: 200vh;
font-family: Vazirmatn, sans-serif;
}


/* ===== GLASS NAVBAR ===== */
.glass-nav{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;


  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}


.navbar-brand,
.nav-link{
color: #fff !important;
font-weight: 500;
transition: opacity 0.2s ease, transform 0.2s ease;
}


.nav-link:hover{
opacity: 0.8;
transform: translateY(-1px);
}


.navbar-toggler{
border: none;
color: #fff;
font-size: 1.3rem;
}


.navbar-toggler:focus{
box-shadow: none;
}


/* ===== MOBILE MENU ===== */
@media (max-width: 991px){
.navbar-collapse{
margin-top: 10px;
background: rgba(0,0,0,0.35);
backdrop-filter: blur(16px);
border-radius: 16px;
padding: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
}


/* ===== PAGE CONTENT ===== */
.top{
min-height: 100svh;
padding-top: 80px; /* height navbar */
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-align: center;
}


.top h1{
font-size: 3rem;
font-weight: 700;
}
.info-section{
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}


.image-box{
  width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.text-box{
  color: #fff;
  font-size: 20px;
}

.text-box h1{
  font-size: 1.8rem;
  margin-bottom: 50px;
}


@media (max-width: 768px){
  .info-section{
    flex-direction: column;
    text-align: center;
  }

  .image-box{
    width: 100%;
    max-width: 320px;
  }
}
.contact-section{
  padding: 100px 20px;
}

.contact-box{
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 50px;
  border-radius: 28px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}


.contact-text{
  flex: 1;
  color: #fff;
}

.contact-text h2{
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  outline: none;

  background: rgba(255,255,255,0.25);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(255,255,255,0.7);
}

.contact-form button{
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;

  background: rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover{
  background: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}


@media (max-width: 768px){
  .contact-box{
    flex-direction: column;
    text-align: center;
  }
}
.glass-footer {
      background: rgba(0,0,0,0.25);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  padding: 30px 20px 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  bottom: 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo h2 {
  margin: 0;
  color: #ffa500; /* نارنجی */
  font-size: 24px;
  letter-spacing: 1px;
}

.footer-links a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffa500;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

.footer-copy {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}
hr{
  animation-name: hrexpand;
  animation-duration: 4s;
  margin: auto;
  height: 10px;
  color: #fff;
}
/* موبایل */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
}

@keyframes hrexpand {
  0% {width: 25%;}
  50% {width: 50%;}
  100% {width: 100%;}
}