/**
Theme Name: Astra Child Theme
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-theme
Template: astra
*/

:root {
  --blue-glow:   #00bfff;
  --blue-mid:    #0077cc;
  --blue-dark:   #003366;
  --purple:      #6a00cc;
  --purple-glow: #9b30ff;
  --orange:      #ff6600;
  --orange-glow: #ff9900;
  --green:       #00ff88;
  --bg-dark:     #060a12;
  --bg-card:     #0d1525;
  --bg-card2:    #101830;
  --text-white:  #ffffff;
  --text-muted:  #8899bb;
  --text-dim:    #5566aa;
  --border:      rgba(0, 191, 255, 0.18);
  --font-head:   'Orbitron', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --font-sub:    'Rajdhani', sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  cursor: default;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 100px 48px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--blue-glow);
  box-shadow: 0 0 8px var(--blue-glow);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-title .hl {
  color: var(--blue-glow);
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--purple-glow));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(0, 191, 255, 0.4);
  box-shadow: 0 12px 50px rgba(0, 191, 255, 0.12);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--purple) 100%);
  color: #fff;
  border: 1px solid var(--blue-glow);
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 191, 255, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.25);
}
.tag {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-blue   { background: rgba(0, 191, 255, 0.1);  border: 1px solid rgba(0, 191, 255, 0.3);  color: var(--blue-glow); }
.tag-orange { background: rgba(255, 102, 0, 0.1);  border: 1px solid rgba(255, 102, 0, 0.3);  color: var(--orange); }
.tag-purple { background: rgba(155, 48, 255, 0.1); border: 1px solid rgba(155, 48, 255, 0.3); color: var(--purple-glow); }
.tag-green  { background: rgba(0, 255, 136, 0.1);  border: 1px solid rgba(0, 255, 136, 0.3);  color: var(--green); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.ast-page-builder-template .site-content,
.ast-page-builder-template #content,
.ast-page-builder-template .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}
.site-content .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}