
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Vazirmatn', sans-serif;
  background: #08111f;
  color: #fff;
  overflow-x: hidden;
  line-height: 2;
}
.container {
  width: 92%;
  max-width: 1300px;
  margin: auto;
}
.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}
.blur-1 {
  width: 350px;
  height: 350px;
  background: #0077ff;
  top: -100px;
  right: -100px;
}
.blur-2 {
  width: 300px;
  height: 300px;
  background: #00b7ff;
  bottom: 0;
  left: -80px;
}
.hero {
  min-height: 100vh;
  padding-top: 30px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 30px;
  font-weight: 800;
}
.menu {
  display: flex;
  list-style: none;
  gap: 35px;
}
.menu a {
  text-decoration: none;
  color: white;
  transition: .3s;
}
.menu a:hover {
  color: #53b8ff;
}
.hero-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(20px);
}
.hero-text h1 {
  font-size: 64px;
  line-height: 1.4;
  margin-bottom: 25px;
}
.hero-text p {
  color: #c8d7ea;
  margin-bottom: 35px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary,
.btn-secondary {
  padding: 16px 30px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: .4s;
}
.btn-primary {
  background: linear-gradient(135deg,#0d8bff,#005dff);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-4px);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.2);
  color: white;
}
.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  color: #9db3cb;
}
.breadcrumb a {
  color: #53b8ff;
  text-decoration: none;
}
.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  margin-bottom: 100px;
}
.article-content,
.sidebar-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border-radius: 28px;
}
.article-content {
  padding: 40px;
}
.article-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  color: #9db3cb;
}
.featured-image {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 30px;
}
.article-content h2 {
  margin: 40px 0 20px;
  font-size: 34px;
}
.article-content p {
  color: #d7e4f3;
}
.article-content ul {
  padding-right: 20px;
  margin-top: 20px;
}
.article-content li {
  margin-bottom: 12px;
}
.image-box img {
  width: 100%;
  border-radius: 24px;
  margin: 30px 0;
}
blockquote {
  margin: 40px 0;
  padding: 30px;
  border-right: 5px solid #0d8bff;
  background: rgba(255,255,255,.04);
  border-radius: 18px;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sidebar-box {
  padding: 28px;
}
.sidebar-box h3 {
  margin-bottom: 20px;
}
.sidebar-box ul {
  list-style: none;
}
.sidebar-box li {
  margin-bottom: 16px;
}
.sidebar-box a {
  color: #d7e4f3;
  text-decoration: none;
  transition: .3s;
}
.sidebar-box a:hover {
  color: #53b8ff;
}
.search-box input {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: none;
  padding: 0 18px;
  background: rgba(255,255,255,.08);
  color: white;
}
.sidebar-box img {
  width: 100%;
  border-radius: 20px;
}
.faq-item {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 24px;
  margin-top: 20px;
}
.cta-section {
  margin-bottom: 100px;
}
.cta-box {
  background: linear-gradient(135deg,#005dff,#00b7ff);
  padding: 60px;
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-btn {
  background: white;
  color: #005dff;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 18px;
  font-weight: 800;
}
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9db3cb;
}
.floating-call {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg,#00b7ff,#005dff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0,123,255,.5);
  animation: pulse 2s infinite;
  z-index: 999;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,123,255,.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 25px rgba(0,123,255,0);
  }
  100% {
    transform: scale(1);
  }
}
@media(max-width: 992px) {
  .hero-content,
  .article-layout,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  .menu {
    display: none;
  }
  .cta-box {
    text-align: center;
  }
}
* {
  font-weight: 800;
}

.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9db3cb;
}

.floating-call {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg,#00b7ff,#005dff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0,123,255,.5);
  animation: pulse 2s infinite;
  z-index: 999;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,123,255,.6);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 25px rgba(0,123,255,0);
  }

  100% {
    transform: scale(1);
  }
}

@media(max-width: 992px) {

  .hero-content,
  .article-layout,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .menu {
    display: none;
  }

  .cta-box {
    text-align: center;
  }

}


/* Sticky Navbar */

.navbar.sticky {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 18px 4%;
  background: rgba(7,17,30,.88);
  backdrop-filter: blur(18px);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
  animation: slideDown .4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Reading Progress */

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg,#00b7ff,#005dff);
  z-index: 99999;
}

/* Fade Animation */

.hidden-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Call Hover */

.active-call {
  transform: scale(1.12) rotate(8deg);
}

/* FAQ Accordion */

.faq-item {
  cursor: pointer;
  transition: .4s;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
}

.faq-item.faq-open p {
  max-height: 300px;
  margin-top: 15px;
}

/* Hero Image */

.hero-image img {
}