/* =========================================
   1. FONT & GLOBAL BASE STYLES
   ========================================= */

@font-face {
  font-family: Vazir;
  src: url('../fonts/Vazir-FD.woff2') format('woff2'),
       url('../fonts/Vazir-FD.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Vazir, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #070b0d;          /* پس‌زمینه‌ی تیره اصلی */
  color: #d6e2d6;               /* متن پیش‌فرض */
  line-height: 1.6;
}

/* لینک‌ها در تم امنیتی */
a {
  color: #d8a600;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #f2c94c;
}

/* یوتیلیتی‌ها */
.text-center {
  text-align: center;
}

/* =========================================
   2. HERO SECTION
   ========================================= */

.hero {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(77,122,77,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(216,166,0,0.08), transparent 40%),
    #070b0d;
  min-height: 100vh;
  display:flex;
  align-items:center;
}

.hero .row{
  align-items:center;
}

/* ذرات پس‌زمینه */
#particles-js {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* شبکه سایبری روی Hero */
.cyber-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(77,122,77,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,122,77,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

/* محتوای اصلی Hero همیشه بالاتر از افکت‌ها */
.hero-inner {
  position: relative;
  z-index: 2;
}

/* عنوان اصلی Hero */
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  text-shadow:
    0 0 10px rgba(77,122,77,0.3),
    0 0 20px rgba(77,122,77,0.2);
  animation: titleGlow 4s ease-in-out infinite;
}

/* متن توضیحی Hero */
.hero p {
  margin-top: 20px;
  margin-bottom: 32px;
  color: #9fb0a4;
  max-width: 560px;
}

/* کانتینر دکمه‌های Hero (اگر استفاده شود) */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* رادار امنیت در Hero (اختیاری) */
.hero .security-radar {
  margin-top: 40px;
}

/* انیمیشن درخشش عنوان */
@keyframes titleGlow {
  0%   { text-shadow: 0 0 8px  rgba(77,122,77,0.2); }
  50%  { text-shadow: 0 0 18px rgba(77,122,77,0.5); }
  100% { text-shadow: 0 0 8px  rgba(77,122,77,0.2); }
}

/* انیمیشن شبکه متحرک */
@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

/* =========================================
   3. BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

/* دکمه طلایی اصلی (Call to Action) */
.btn-gold {
  background: #d8a600;
  color: #000000;
  border-color: #d8a600;
}

.btn-gold:hover {
  background: #f2c94c;
  border-color: #f2c94c;
  box-shadow: 0 0 20px rgba(216,166,0,0.4);
  transform: translateY(-1px);
}

/* دکمه با حاشیه سبز */
.btn-border {
  background: transparent;
  color: #4D7A4D;
  border-color: #4D7A4D;
}

.btn-border:hover {
  background: rgba(77,122,77,0.08);
  box-shadow: 0 0 14px rgba(77,122,77,0.35);
  transform: translateY(-1px);
}

/* =========================================
   4. SERVICES SECTION
   ========================================= */

.services {
  padding: 120px 0;
}

/* عنوان بخش‌ها عمومی */
.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: #9fb0a4;
  margin-bottom: 40px;
}

/* کارت‌های سرویس (Glassmorphism + Gradient Border) */
.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  background-image:
    linear-gradient(#0c1216, #0c1216),
    linear-gradient(120deg, #4D7A4D, #d8a600);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 12px;
  padding: 24px 22px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

/* خط نور طلایی هنگام hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(216,166,0,0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

/* Hover اصلی کارت */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* کلاس کمکی که با اسکرول اضافه می‌شود */
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* آیکن سرویس‌ها */
.service-card i {
  font-size: 40px;
  color: #4D7A4D;
  margin-bottom: 18px;
}

/* تیتر کارت سرویس */
.service-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

/* متن کارت سرویس */
.service-card p{

flex-grow:1;

font-size:14px;
color:#a7b3ab;
margin-bottom:16px;
}
.service-card{

display:flex;
flex-direction:column;

height:100%;
min-height:270px;

padding:34px 26px;
}



/* badge */

.service-badge{

align-self:flex-start;

display:inline-block;

margin-top:auto;

font-size:12px;

padding:5px 12px;

border-radius:20px;

border:1px solid rgba(0,255,170,.35);

color:#00ffaa;

background:rgba(0,255,170,.08);

text-decoration:none;

transition:.3s;

white-space:nowrap;
}


.service-badge:hover{

background:rgba(0,255,170,.18);

border-color:#00ffaa;
}

/* ===== Services Cyber Style ===== */

.services-cyber{
position:relative;
padding:120px 0;

background:
radial-gradient(circle at 10% 20%, rgba(0,255,170,0.08), transparent 50%),
radial-gradient(circle at 90% 80%, rgba(216,166,0,0.08), transparent 50%),
#070b0d;
}
.services .row{
display:flex;
flex-wrap:wrap;
}

.services .col-lg-4{
display:flex;
}

.service-card{

display:flex;
flex-direction:column;

justify-content:flex-start;

height:100%;

min-height:260px;
}
.service-icon-wrap{

position:relative;

width:72px;
height:72px;

display:flex;
align-items:center;
justify-content:center;

margin:0 auto 20px auto;

border-radius:50%;

background:radial-gradient(circle, rgba(0,255,170,0.35), #02090c);
}

.service-icon{

font-size:30px;

display:flex;
align-items:center;
justify-content:center;

line-height:1;

color:#e3c66a;

position:relative;
z-index:2;
}
.service-card::after{

content:"";

position:absolute;

top:0;
left:-120%;

width:80%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(0,255,170,0.2),
transparent
);

transform:skewX(-25deg);

transition:0.8s;
}

.service-card:hover::after{

left:140%;
}


/* grid subtle */

.services-cyber::before{
content:"";
position:absolute;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

background-size:40px 40px;
opacity:.35;
pointer-events:none;
}

/* header */

.section-header{
margin-bottom:70px;
}

.section-header .section-title{
font-size:32px;
font-weight:700;
color:#ffffff;
margin-bottom:14px;
}

.section-header .section-subtitle{
color:#9fb0a4;
max-width:620px;
margin:auto;
}

/* ===== service card ===== */

.service-card{
position:relative;
background:#0c1216;
border-radius:14px;

padding:34px 26px;

border:1px solid rgba(255,255,255,0.05);

transition:
transform .4s ease,
box-shadow .4s ease,
border-color .4s ease;
}

/* hover */

.service-card:hover{

transform:translateY(-10px);

border-color:rgba(0,255,170,0.4);

box-shadow:
0 15px 40px rgba(0,0,0,0.6),
0 0 25px rgba(0,255,170,0.15);
}

/* icon wrap */

.service-icon-wrap{

position:relative;

width:72px;
height:72px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:20px;

background:radial-gradient(circle, rgba(0,255,170,0.3), #02090c);
}

/* glow */

.service-icon-glow{

position:absolute;
inset:-10px;

border-radius:50%;

background:conic-gradient(
rgba(0,255,170,0.05),
rgba(216,166,0,0.3),
rgba(0,255,170,0.05)
);

filter:blur(6px);
opacity:.7;
}

/* icon */

.service-icon{
font-size:32px;
color:#e3c66a;
position:relative;
z-index:1;
}

/* title */

.service-card h3{

font-size:18px;
margin-bottom:10px;
color:#ffffff;
}

/* description */

.service-card p{

font-size:14px;
color:#a7b3ab;
margin-bottom:14px;
}

/* badge */

.service-badge{

display:inline-block;

font-size:11px;

padding:4px 10px;

border-radius:20px;

border:1px solid rgba(0,255,170,.3);

color:#00ffaa;

background:rgba(0,255,170,.08);
}


/* =========================================
   5. CONSULTATION / FORM SECTION
   ========================================= */

.consult-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at center, #001212 0%, #000 80%);
  overflow: hidden;
}

.consult-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/security-grid.svg');
  opacity: 0.1;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}

.section-title {
  color: #00ff99;
  font-weight: 700;
  font-size: 32px;
}

.section-subtitle {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.consult-features .feature-item {
  color: #aaa;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.consult-features i {
  color: #00ffaa;
  font-size: 18px;
  margin-left: 8px;
}

.consult-form-wrap {
  background: rgba(0, 30, 20, 0.4);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.25);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #00ffaa;
  font-size: 18px;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  background: rgba(0, 15, 10, 0.7);
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 10px;
  padding: 12px 35px 12px 15px;
  color: #e6fff0;
  font-size: 14px;
  transition: all .3s ease;
}

.consult-form input:focus,
.consult-form textarea:focus {
  border-color: #00ffaa;
  box-shadow: 0 0 10px #00ffaa;
  outline: none;
}

.consult-submit {
  display: inline-block;
  width: 100%;
  background: linear-gradient(90deg, #006644, #00ffaa);
  color: #000;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 12px;
  transition: all .3s;
  cursor: pointer;
}

.consult-submit:hover {
  background: linear-gradient(90deg, #00ffaa, #00cc88);
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.6);
}

.consult-note {
  font-size: 13px;
  color: #88aa99;
  margin-top: 10px;
  text-align: center;
}

/* =========================================
   6. SECURITY RADAR WIDGET
   ========================================= */

.security-radar {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(77,122,77,0.3);
  position: relative;
  margin: auto;
  overflow: hidden;
}

.security-radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    rgba(77,122,77,0.6),
    transparent 60%
  );
  animation: radar 4s linear infinite;
}

/* نقاط کوچک روی رادار (اختیاری) */
.security-radar__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8a600;
  box-shadow: 0 0 10px rgba(216,166,0,0.7);
}

/* انیمیشن چرخش رادار */
@keyframes radar {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =========================================
   7. TRUST / STATS SECTION (اختیاری)
   ========================================= */


.trust{
background:#070b0d;
color:#fff;
padding:80px 0;
}

.trust-item{
transition:all .4s ease;
margin-bottom:40px;
}

.trust-item:hover{
transform:translateY(-6px);
}

.trust-icon{
font-size:48px;
color:#d8a600;
margin-bottom:20px;
}

.trust-item h3{
font-size:34px;
font-weight:700;
color:#d8a600;
margin-bottom:10px;
}

.trust-item p{
font-size:16px;
color:#a8b3ab;
}

.scroll-anim{
opacity:0;
transform:translateY(40px);
transition:all .6s ease;
}

.scroll-anim--visible{
opacity:1;
transform:translateY(0);
}
/* ===== Trust Section – Cyber Glow Style ===== */

.trust-cyber {
  position: relative;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 255, 170, 0.12), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(216, 166, 0, 0.12), transparent 55%),
    #05090b;
  color: #fff;
}

/* یک لایه شبه-grid خیلی ملایم */
.trust-cyber::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}

/* محتوای داخلی بالای افکت‌ها */
.trust-cyber .container {
  position: relative;
  z-index: 1;
}

.trust-item {
  margin-bottom: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* کارت نامرئی، فقط با hover کمی معلوم می‌شود */
.trust-item:hover {
  transform: translateY(-6px);
}

/* ظرف آیکون با افکت Cyber Glow */
.trust-icon-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 170, 0.45), rgba(2, 10, 12, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow:
    0 0 18px rgba(0, 255, 170, 0.4),
    0 0 40px rgba(0, 255, 170, 0.25);
}

/* هالوی بیرونی */
.trust-icon-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: conic-gradient(
    from 120deg,
    rgba(0, 255, 170, 0.02),
    rgba(216, 166, 0, 0.25),
    rgba(0, 255, 170, 0.02)
  );
  opacity: 0.75;
  filter: blur(6px);
}

/* خود آیکون Flaticon */
.trust-icon {
  position: relative;
  font-size: 38px;
  color: #e3c66a; /* طلایی */
  z-index: 1;
}

/* انیمیشن ضربان نور روی hover */
.trust-item:hover .trust-icon-wrap {
  box-shadow:
    0 0 24px rgba(0, 255, 170, 0.55),
    0 0 52px rgba(0, 255, 170, 0.35);
}

/* متن عددی و توضیح */
.trust-item h3 {
  font-size: 30px;
  font-weight: 800;
  color: #e3c66a;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: #b8c2ba;
}

/* افکت ورود با IntersectionObserver */
.scroll-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-anim--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ریسپانسیو */
@media (max-width: 767.98px) {
  .trust-icon-wrap {
    width: 70px;
    height: 70px;
  }
  .trust-icon {
    font-size: 32px;
  }
  .trust-item h3 {
    font-size: 24px;
  }
  .trust-item {
    margin-bottom: 26px;
  }
}



/* =========================================
   8. FOOTER
   ========================================= */

.footer{

position:relative;

background:#010404;

padding:100px 0 50px;

overflow:hidden;

}

/* cyber grid background */

.footer-grid-bg{

position:absolute;

inset:0;

background-image:
linear-gradient(rgba(0,255,170,.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,255,170,.05) 1px, transparent 1px);

background-size:60px 60px;

opacity:.3;

animation:gridMove 25s linear infinite;

}

@keyframes gridMove{

0%{transform:translateY(0)}

100%{transform:translateY(60px)}

}

.footer-logo{

height:75px;

margin-bottom:20px;

}

.footer-about{

color:#9aa5a0;

line-height:1.9;

font-size:14px;

}

/* trust badges */

.footer-trust{

margin-top:20px;

display:flex;

gap:10px;

flex-wrap:wrap;

}

.trust-badge{

border:1px solid rgba(0,255,170,.4);

padding:5px 12px;

border-radius:20px;

font-size:12px;

color:#00ffaa;

}

/* titles */

.footer-title{

color:#00ffaa;

margin-bottom:18px;

font-size:18px;

}

/* links */

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:10px;

}

.footer-links a{

color:#8fa39c;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#00ffaa;

padding-right:6px;

}

/* contact */

.footer-contact{

list-style:none;

padding:0;

}

.footer-contact li{

margin-bottom:12px;

display:flex;

align-items:center;

gap:8px;

color:#8fa39c;

}

.footer-contact i{

color:#00ffaa;

font-size:18px;

}

/* social */

.footer-social{

margin-top:15px;

}

.footer-social a{

width:40px;

height:40px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:50%;

border:1px solid rgba(0,255,170,.3);

color:#00ffaa;

margin-left:8px;

font-size:20px;

transition:.3s;

}

.footer-social a:hover{

background:#00ffaa;

color:#000;

box-shadow:0 0 15px #00ffaa;

}

/* cyber energy line */

.cyber-energy-line{

position:absolute;

top:0;

left:0;

width:100%;

height:2px;

background:rgba(0,255,170,.15);

overflow:hidden;

}

/* moving light */

.cyber-energy-line{

position:absolute;

top:0;

left:0;

width:100%;

height:2px;

background:linear-gradient(
90deg,
transparent,
rgba(0,255,170,.4),
transparent
);

animation:energyPulse 3s ease-in-out infinite;

}

@keyframes energyPulse{

0%{opacity:.3}

50%{opacity:1}

100%{opacity:.3}

}


/* CTA */

.footer-cta{

background:linear-gradient(90deg,#003d2a,#00ffaa);

padding:40px 0;

}

.cta-box{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.cta-text h3{

color:#000;

font-weight:700;

}

.cta-btn{

background:#000;

color:#00ffaa;

padding:12px 28px;

border-radius:30px;

text-decoration:none;

transition:.3s;

}

.cta-btn:hover{

background:#021a15;

box-shadow:0 0 20px #00ffaa;

}


/* =========================================
   9. SCROLL ANIMATIONS (GENERIC)
   ========================================= */

/* کلاس عمومی برای عناصر انیمیشن‌دار با اسکرول */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* وقتی با JS اضافه شود */
.scroll-anim--visible {
  opacity: 1;
  transform: translateY(0);
}

/* برای Service Card قبلاً is-visible را داریم */

/* =========================================
   10. RESPONSIVE TWEAKS
   ========================================= */

@media (max-width: 991.98px) {
  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    max-width: 100%;
  }

  .security-radar {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    padding: 20px 18px;
  }
}
/* ================= TOPBAR ================= */

/* TOPBAR */

.topbar{
    background:linear-gradient(90deg,#0b1320,#4d7a4d);
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:#fff;
    font-size:14px;
}

.topbar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

/* status */

.topbar-status{
    display:flex;
    align-items:center;
    gap:8px;
    color:#cbd5e1;
}

.topbar-status i{
    color:#00ff98;
    font-size:18px;
}

.status-dot{
    width:8px;
    height:8px;
    background:#00ff9c;
    border-radius:50%;
    box-shadow:0 0 8px #00ff9c;
    animation:pulse 2s infinite;
}

/* contact */

.topbar-contact{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-link{
    display:flex;
    align-items:center;
    gap:6px;
    color:#e2e8f0;
    text-decoration:none;
    transition:.3s;
}

.contact-link i{
    font-size:18px;
}

.contact-link:hover{
    color:#00ff98;
}

/* phone highlight */

.contact-link.phone{
    font-weight:600;
    color:#00ff9c;
}

/* animation */

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(0,255,156,.7);}
    70%{box-shadow:0 0 0 8px rgba(0,255,156,0);}
    100%{box-shadow:0 0 0 0 rgba(0,255,156,0);}
}
.status-mobile{
    display:none;
}

@media (max-width:992px){

.contact-link span{
    display:none;
}

.topbar-contact{
    gap:14px;
}

}

@media (max-width:768px){

.status-text{
    display:none;
}

.status-mobile{
    display:inline;
    font-size:12px;
}

.topbar-wrapper{
    min-height:38px;
}

.topbar-contact i{
    font-size:20px;
}

}
.status-mobile{
    display:none;
}

@media (max-width:992px){

.contact-link span{
    display:none;
}

.topbar-contact{
    gap:14px;
}

}

@media (max-width:768px){

.status-text{
    display:none;
}

.status-mobile{
    display:inline;
    font-size:12px;
}

.topbar-wrapper{
    min-height:38px;
}

.topbar-contact i{
    font-size:20px;
}

}

/* ================= NAVBAR ================= */

.navbar-main{
background:#0f141b;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.navbar-brand img{
height:70px;
}

.nav-link{
color:#d1d5db;
font-weight:500;
margin:0 10px;
}

.nav-link:hover{
color:#4D7A4D;
}

.navbar-toggler{
border:none;
color:white;
font-size:26px;
}
/* navbar language */

.nav-language{
margin-right:20px;
}

.lang-btn{

background:none;
border:none;

display:flex;
align-items:center;
gap:8px;

color:#fff;
font-size:14px;

}

.lang-btn{

background:none;
border:none;

display:flex;
align-items:center;
gap:8px;

color:#fff;
font-size:14px;

}

.lang-btn i:first-child{

font-size:20px;
color:#00ffaa;

}


.nav-language .dropdown-menu{

background:#0f172a;

border:1px solid rgba(0,255,170,.2);

min-width:150px;

}

.nav-language .dropdown-item{

display:flex;
align-items:center;
gap:10px;

color:#cbd5e1;

font-size:14px;

}

.nav-language .dropdown-item img{

width:18px;
height:18px;

}

.nav-language .dropdown-item:hover{

background:rgba(0,255,170,.1);

color:#00ffaa;

}

/* ===== Cyber Divider ===== */

.cyber-divider{
  position: relative;
  height: 60px;
  background: #05090b;
  overflow: hidden;
}

.cyber-divider::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity:.4;
}

.cyber-line{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:2px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ffaa,
    #e3c66a,
    #00ffaa,
    transparent
  );
  box-shadow:
    0 0 8px #00ffaa,
    0 0 16px rgba(0,255,170,.6);
}
/* copyright */

.copyright-bar{

background:#05070d;

border-top:1px solid rgba(0,255,170,.08);

padding:18px 0;

font-size:13px;

color:#94a3b8;

position:relative;

}

/* layout */

.copyright-inner{

display:flex;

align-items:center;

justify-content:space-between;

flex-wrap:wrap;

gap:10px;

}

/* text */

.copyright-text strong{

color:#e2e8f0;

}

/* links */

.copyright-links{

display:flex;

align-items:center;

gap:18px;

}

.copyright-links a{

display:flex;

align-items:center;

gap:6px;

color:#94a3b8;

text-decoration:none;

transition:.3s;

}

.copyright-links a:hover{

color:#00ffaa;

}

.copyright-links i{

font-size:15px;

color:#00ffaa;

}
