@font-face {
  font-family: 'iransans-light';
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/IRANSansWeb_Light.eot");
  src: url("../webfonts/IRANSansWeb_Light.eot?#iefix") format("embedded-opentype"), url("../webfonts/IRANSansWeb_Light.woff2") format("woff2"), url("../webfonts/IRANSansWeb_Light.woff") format("woff"), url("../webfonts/IRANSansWeb_Light.ttf") format("truetype");
}

@font-face {
  font-family: iransans-ulight;
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/IRANSansWeb_UltraLight.eot");
  src: url("../webfonts/IRANSansWeb_UltraLight.eot#iefix") format("embedded-opentype"), url("../webfonts/IRANSansWeb_UltraLight.woff2") format("woff2"), url("../webfonts/IRANSansWeb_UltraLight.woff") format("woff"), url("../webfonts/IRANSansWeb_UltraLight.ttf") format("truetype");
}

@font-face {
  font-family: iransans-medium;
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/IRANSansWeb_Medium.eot");
  src: url("../webfonts/IRANSansWeb_Medium.eot?#iefix") format("embedded-opentype"), url("../webfonts/IRANSansWeb_Medium.woff2") format("woff2"), url("../webfonts/IRANSansWeb_Medium.woff") format("woff"), url("../webfonts/IRANSansWeb_Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(../fonts/MaterialIcons-Regular.html) format('woff2'), url(../fonts/MaterialIcons-Regular.woff) format('woff'), url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'iransans-light', sans-serif;
  background: #FAFAFA;
  color: #171717;
  overflow-x: hidden;
}

/* Grain Texture - Light */
.grain::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  opacity: 0.02;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Grid Background - Light */
.grid-bg {
  background-image: linear-gradient(to right, #e5e5e5 1px, transparent 1px),
    linear-gradient(to bottom, #e5e5e5 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(101, 163, 15, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(101, 163, 15, 0.4), 0 0 80px rgba(101, 163, 15, 0.1);
  }
}

@keyframes rocket-fly {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  25% {
    transform: translateY(-10px) rotate(-45deg);
  }

  50% {
    transform: translateY(-3px) rotate(-45deg);
  }

  75% {
    transform: translateY(-15px) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes border-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-reverse {
  animation: floatReverse 7s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-rocket {
  animation: rocket-fly 4s ease-in-out infinite;
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

.delay-600 {
  animation-delay: 600ms;
}

.delay-700 {
  animation-delay: 700ms;
}

/* Dark text gradient */
.hero-text-gradient {
  background: linear-gradient(to bottom, #171717, #404040, #a3a3a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lime gradient text */
.lime-text-gradient {
  background: linear-gradient(135deg, #65A30D, #84CC16, #A3E635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effect - Light */
.service-card {
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(101, 163, 15, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(101, 163, 15, 0.15);
  border-color: rgba(101, 163, 15, 0.3);
}

/* CTA button - Light */
.cta-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cta-btn:hover::after {
  left: 200%;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(101, 163, 15, 0.4);
}

/* Poster frame - Light */
.poster-frame {
  position: relative;
}

.poster-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg, #65A30D, #84CC16, #A3E635, #65A30D);
  border-radius: 24px;
  z-index: -1;
  animation: border-spin 4s linear infinite;
  filter: blur(6px);
  opacity: 0.5;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
  background: #84CC16;
  border-radius: 3px;
}

/* Mobile menu */
.mobile-menu {
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.mobile-menu.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* Stats divider */
.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(101, 163, 15, 0.2), transparent);
}

.stat-item:last-child::after {
  display: none;
}

/* Observer */
.observe-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.observe-visible {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Nav active */
.nav-link-active {
  color: #65A30D !important;
  background: rgba(101, 163, 15, 0.08);
}