
/* ==================================================
   RESET
================================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ==================================================
   BODY
================================================== */

body{

  background:#030303;

  color:#ffffff;

  overflow-x:hidden;

  font-family:'Poppins', sans-serif;

  position:relative;
}

/* ==================================================
   CYBER GRID BACKGROUND
================================================== */

.bg-grid{

  position:fixed;

  inset:0;

  background:

    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size:55px 55px;

  opacity:0.18;

  z-index:-5;
}

/* ==================================================
   GLOW EFFECTS
================================================== */

.bg-glow{

  position:fixed;

  width:700px;
  height:700px;

  border-radius:50%;

  filter:blur(150px);

  z-index:-4;
}

/* BLUE GLOW */

.blue-glow{

  background:#005eff;

  top:-300px;
  left:-250px;

  opacity:0.22;
}

/* RED GLOW */

.red-glow{

  background:#c81018;

  bottom:-350px;
  right:-250px;

  opacity:0.14;
}

/* ==================================================
   NAVBAR
================================================== */

.navbar{

  width:100%;

  height:100px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:0 70px;

  position:relative;

  z-index:50;

  border-bottom:
    1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(12px);

  background:
    rgba(0,0,0,0.18);
}

/* NAV LOGO */

.nav-logo{

  width:230px;

  filter:
    drop-shadow(0 0 14px rgba(0,94,255,0.25));
}

/* NAVIGATION */

nav{

  display:flex;

  gap:38px;
}

nav a{

  color:#ffffff;

  text-decoration:none;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  letter-spacing:1px;

  transition:0.3s ease;
}

nav a:hover{

  color:#008cff;
}

/* NAV BUTTON */

.nav-button{

  padding:14px 28px;

  border:
    1px solid #008cff;

  border-radius:6px;

  color:#ffffff;

  text-decoration:none;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  transition:0.3s ease;

  box-shadow:
    0 0 20px rgba(0,140,255,0.18);
}

.nav-button:hover{

  background:#008cff;

  color:#000000;
}

/* ==================================================
   GLOBAL BUTTONS
================================================== */

.primary-btn,
.secondary-btn{

  padding:18px 36px;

  border-radius:6px;

  text-decoration:none;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  transition:0.3s ease;
}

/* PRIMARY */

.primary-btn{

  background:#005eff;

  color:#ffffff;

  box-shadow:
    0 0 26px rgba(0,94,255,0.30);
}

.primary-btn:hover{

  transform:translateY(-3px);

  background:#008cff;
}

/* SECONDARY */

.secondary-btn{

  border:
    1px solid rgba(255,255,255,0.14);

  color:#ffffff;

  backdrop-filter:blur(12px);
}

.secondary-btn:hover{

  transform:translateY(-3px);

  border-color:#c81018;

  box-shadow:
    0 0 18px rgba(200,16,24,0.22);
}

/* ==================================================
   HOME PAGE HERO
================================================== */

.hero{

  min-height:
    calc(100vh - 100px);

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:0 90px;

  position:relative;
}

/* HERO LEFT */

.hero-left{

  width:52%;

  position:relative;

  z-index:10;
}

/* SMALL TEXT */

.hero-top-text{

  display:inline-block;

  color:#008cff;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  letter-spacing:2px;

  margin-bottom:30px;

  position:relative;
}

.hero-top-text::after{

  content:"";

  width:220px;
  height:2px;

  background:
    linear-gradient(
      to right,
      #008cff,
      #c81018
    );

  position:absolute;

  top:50%;
  left:115%;
}

/* HERO TITLE */

.hero h1{

  font-family:'Orbitron', sans-serif;

  font-size:82px;

  line-height:1.08;

  letter-spacing:2px;

  margin-bottom:34px;
}

.hero h1 span{

  color:#008cff;

  text-shadow:
    0 0 18px rgba(0,140,255,0.45);
}

/* HERO TEXT */

.hero p{

  max-width:650px;

  color:#d0d0d0;

  font-size:20px;

  line-height:1.9;

  margin-bottom:42px;
}

/* HERO BUTTONS */

.hero-buttons{

  display:flex;

  gap:22px;
}

/* HERO RIGHT */

.hero-right{

  width:48%;

  display:flex;

  justify-content:center;

  align-items:center;

  position:relative;
}

/* MAIN LOGO */

.main-logo{

  width:700px;

  max-width:100%;

  position:relative;

  z-index:5;

  filter:

    drop-shadow(0 0 25px rgba(0,94,255,0.22))

    drop-shadow(0 0 40px rgba(200,16,24,0.10));

  animation:
    floatLogo 6s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatLogo{

  0%,100%{

    transform:translateY(0px);
  }

  50%{

    transform:translateY(-14px);
  }
}

/* ==================================================
   ABOUT PAGE
================================================== */

.about-hero{

  width:100%;

  min-height:
    calc(100vh - 100px);

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:80px;

  position:relative;

  overflow:hidden;
}

/* ABOUT LEFT */

.about-left{

  width:52%;

  position:relative;

  z-index:5;
}

/* SMALL TEXT */

.about-small-text{

  display:inline-block;

  color:#008cff;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  letter-spacing:2px;

  margin-bottom:28px;

  position:relative;
}

.about-small-text::after{

  content:"";

  width:220px;
  height:2px;

  background:
    linear-gradient(
      to right,
      #008cff,
      #c81018
    );

  position:absolute;

  top:50%;
  left:115%;
}

/* ABOUT TITLE */

.about-left h1{

  font-family:'Orbitron', sans-serif;

  font-size:82px;

  line-height:1.08;

  margin-bottom:34px;
}

.about-left h1 span{

  color:#008cff;

  text-shadow:
    0 0 18px rgba(0,140,255,0.45);
}

/* ABOUT TEXT */

.about-left p{

  color:#d0d0d0;

  font-size:20px;

  line-height:2;

  margin-bottom:28px;

  max-width:650px;
}

/* ABOUT BUTTONS */

.about-buttons{

  display:flex;

  gap:22px;

  margin-top:40px;
}

/* ABOUT RIGHT */

.about-right{

  width:48%;

  display:flex;

  justify-content:center;

  align-items:center;

  position:relative;
}

/* GLOW RING */

.logo-glow-ring{

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  border:
    1px solid rgba(0,140,255,0.18);

  box-shadow:
    0 0 80px rgba(0,140,255,0.18),
    0 0 120px rgba(200,16,24,0.10);

  animation:
    pulseRing 5s ease-in-out infinite;
}

/* ABOUT LOGO */

.about-main-logo{

  width:620px;

  max-width:100%;

  position:relative;

  z-index:5;

  filter:

    drop-shadow(0 0 28px rgba(0,94,255,0.22))

    drop-shadow(0 0 45px rgba(200,16,24,0.12));

  animation:
    floatLogo 6s ease-in-out infinite;
}

/* PULSE */

@keyframes pulseRing{

  0%,100%{

    transform:scale(1);

    opacity:0.7;
  }

  50%{

    transform:scale(1.05);

    opacity:1;
  }
}

/* STATS SECTION */

.stats-section{

  width:90%;

  margin:auto;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

  gap:30px;

  padding-bottom:120px;
}

/* STAT CARD */

.stat-card{

  padding:50px;

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:22px;

  background:
    rgba(255,255,255,0.03);

  backdrop-filter:blur(14px);

  text-align:center;

  transition:0.3s ease;

  position:relative;

  overflow:hidden;
}

.stat-card::before{

  content:"";

  position:absolute;

  inset:0;

  background:

    linear-gradient(
      135deg,
      rgba(0,94,255,0.08),
      rgba(200,16,24,0.04)
    );

  pointer-events:none;
}

.stat-card:hover{

  transform:translateY(-10px);

  border-color:#008cff;

  box-shadow:
    0 0 40px rgba(0,140,255,0.14);
}

.stat-card h2{

  font-family:'Orbitron', sans-serif;

  color:#008cff;

  font-size:34px;

  margin-bottom:18px;

  position:relative;

  z-index:2;
}

.stat-card span{

  color:#d0d0d0;

  font-size:18px;

  position:relative;

  z-index:2;
}

/* ==================================================
   SERVICES PAGE
================================================== */

.services-hero{

  width:100%;

  text-align:center;

  padding:140px 25px 90px;

  position:relative;
}

/* SMALL TEXT */

.services-small-text{

  display:inline-block;

  color:#008cff;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  letter-spacing:2px;

  margin-bottom:28px;
}

/* TITLE */

.services-hero h1{

  font-family:'Orbitron', sans-serif;

  font-size:82px;

  margin-bottom:28px;
}

.services-hero h1 span{

  color:#008cff;

  text-shadow:
    0 0 18px rgba(0,140,255,0.45);
}

/* TEXT */

.services-hero p{

  color:#d0d0d0;

  font-size:20px;

  line-height:1.9;

  max-width:700px;

  margin:auto;
}

/* SERVICES SECTION */

.services-section{

  width:90%;

  margin:auto;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:35px;

  padding-bottom:120px;
}

/* SERVICE BOX */

.service-box{

  position:relative;

  padding:50px;

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:24px;

  background:
    rgba(255,255,255,0.03);

  backdrop-filter:blur(16px);

  overflow:hidden;

  transition:0.35s ease;
}

.service-box::before{

  content:"";

  position:absolute;

  inset:0;

  background:

    linear-gradient(
      135deg,
      rgba(0,94,255,0.08),
      rgba(200,16,24,0.04)
    );

  pointer-events:none;
}

.service-box:hover{

  transform:translateY(-10px);

  border-color:#008cff;

  box-shadow:
    0 0 45px rgba(0,140,255,0.15);
}

/* NUMBER */

.service-number{

  font-family:'Orbitron', sans-serif;

  font-size:72px;

  color:
    rgba(255,255,255,0.06);

  position:absolute;

  top:20px;
  right:30px;
}

/* TITLE */

.service-box h2{

  font-family:'Orbitron', sans-serif;

  color:#008cff;

  font-size:28px;

  margin-bottom:24px;

  position:relative;

  z-index:2;
}

/* TEXT */

.service-box p{

  color:#d0d0d0;

  font-size:18px;

  line-height:1.9;

  position:relative;

  z-index:2;
}

/* CTA */

.services-cta{

  width:90%;

  margin:auto;

  text-align:center;

  padding-bottom:140px;
}

.services-cta h2{

  font-family:'Orbitron', sans-serif;

  font-size:52px;

  line-height:1.3;

  margin-bottom:40px;
}

/* ==================================================
   CONTACT PAGE
================================================== */

.contact-hero{

  width:100%;

  min-height:
    calc(100vh - 100px);

  display:flex;

  align-items:center;

  justify-content:space-between;

  padding:80px;

  gap:70px;

  position:relative;

  overflow:hidden;
}

/* CONTACT LEFT */

.contact-left{

  width:45%;

  position:relative;

  z-index:5;
}

/* SMALL TEXT */

.contact-small-text{

  display:inline-block;

  color:#008cff;

  font-family:'Orbitron', sans-serif;

  font-size:13px;

  letter-spacing:2px;

  margin-bottom:28px;

  position:relative;
}

.contact-small-text::after{

  content:"";

  width:220px;
  height:2px;

  background:
    linear-gradient(
      to right,
      #008cff,
      #c81018
    );

  position:absolute;

  top:50%;
  left:115%;
}

/* TITLE */

.contact-left h1{

  font-family:'Orbitron', sans-serif;

  font-size:78px;

  line-height:1.08;

  margin-bottom:34px;
}

.contact-left h1 span{

  color:#008cff;

  text-shadow:
    0 0 18px rgba(0,140,255,0.45);
}

/* TEXT */

.contact-left p{

  color:#d0d0d0;

  font-size:20px;

  line-height:2;

  margin-bottom:50px;

  max-width:620px;
}

/* INFO GRID */

.contact-info-grid{

  display:flex;

  flex-direction:column;

  gap:24px;
}

/* INFO BOX */

.contact-info-box{

  padding:28px;

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:20px;

  background:
    rgba(255,255,255,0.03);

  backdrop-filter:blur(14px);

  position:relative;

  overflow:hidden;

  transition:0.3s ease;
}

.contact-info-box::before{

  content:"";

  position:absolute;

  inset:0;

  background:

    linear-gradient(
      135deg,
      rgba(0,94,255,0.08),
      rgba(200,16,24,0.04)
    );

  pointer-events:none;
}

.contact-info-box:hover{

  transform:translateY(-6px);

  border-color:#008cff;

  box-shadow:
    0 0 35px rgba(0,140,255,0.12);
}

.contact-info-box h3{

  color:#008cff;

  font-family:'Orbitron', sans-serif;

  font-size:14px;

  margin-bottom:12px;

  position:relative;

  z-index:2;
}

.contact-info-box span{

  color:#d0d0d0;

  font-size:17px;

  position:relative;

  z-index:2;
}

/* CONTACT RIGHT */

.contact-right{

  width:55%;

  display:flex;

  justify-content:center;
}

/* FORM */

.contact-form{

  width:100%;

  max-width:850px;

  display:flex;

  flex-direction:column;

  gap:30px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{

  width:100%;

  padding:32px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.10);

  border-radius:20px;

  color:#ffffff;

  font-size:18px;

  outline:none;

  transition:0.3s ease;

  backdrop-filter:blur(14px);

  font-family:'Poppins', sans-serif;

  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.02);
}

/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder{

  color:#9ca3af;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus{

  border-color:#008cff;

  box-shadow:
    0 0 35px rgba(0,140,255,0.20);
}

/* TEXTAREA */

.contact-form textarea{

  min-height:340px;

  resize:none;
}

/* BUTTON */

.contact-form button{

  width:100%;

  padding:28px;

  border:none;

  border-radius:20px;

  background:
    linear-gradient(
      to right,
      #005eff,
      #008cff
    );

  color:#ffffff;

  font-family:'Orbitron', sans-serif;

  font-size:15px;

  letter-spacing:1px;

  cursor:pointer;

  transition:0.3s ease;

  box-shadow:
    0 0 35px rgba(0,94,255,0.25);
}

.contact-form button:hover{

  transform:translateY(-4px);

  box-shadow:
    0 0 45px rgba(0,140,255,0.35);
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:1200px){

  .hero,
  .about-hero,
  .contact-hero{

    flex-direction:column;

    text-align:center;

    padding:60px 25px;
  }

  .hero-left,
  .hero-right,
  .about-left,
  .about-right,
  .contact-left,
  .contact-right{

    width:100%;
  }

  .hero h1,
  .about-left h1,
  .contact-left h1,
  .services-hero h1{

    font-size:52px;
  }

  .hero p,
  .about-left p,
  .contact-left p{

    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons,
  .about-buttons{

    justify-content:center;
  }

  .main-logo{

    width:500px;

    margin-top:60px;
  }

  .about-main-logo{

    width:420px;

    margin-top:60px;
  }

  .logo-glow-ring{

    width:340px;
    height:340px;
  }

  .hero-top-text::after,
  .about-small-text::after,
  .contact-small-text::after{

    display:none;
  }

  .navbar{

    flex-direction:column;

    height:auto;

    gap:20px;

    padding:25px;
  }

  nav{

    flex-wrap:wrap;

    justify-content:center;
  }

  .services-hero p,
  .services-cta h2{

    font-size:18px;
  }
}
/* =========================
   FADE ANIMATION
========================= */

.hidden{

    opacity:0;
  
    transform:translateY(40px);
  
    transition:
      opacity 1s ease,
      transform 1s ease;
  }
  
  .show{
  
    opacity:1;
  
    transform:translateY(0);
  }

  /* ==================================================
   FOOTER
================================================== */

.footer{

    width:90%;
  
    margin:auto;
  
    margin-top:120px;
  
    padding:70px 0;
  
    display:flex;
  
    justify-content:space-between;
  
    gap:60px;
  
    border-top:
      1px solid rgba(255,255,255,0.08);
  }
  
  /* LEFT */
  
  .footer-left{
  
    width:40%;
  }
  
  /* LOGO */
  
  .footer-logo{
  
    width:220px;
  
    margin-bottom:24px;
  
    filter:
      drop-shadow(0 0 14px rgba(0,94,255,0.18));
  }
  
  /* TEXT */
  
  .footer-left p{
  
    color:#9ca3af;
  
    line-height:1.9;
  
    max-width:420px;
  }
  
  /* LINKS + CONTACT */
  
  .footer-links,
  .footer-contact{
  
    display:flex;
  
    flex-direction:column;
  
    gap:16px;
  }
  
  /* TITLES */
  
  .footer-links h3,
  .footer-contact h3{
  
    color:#008cff;
  
    font-family:'Orbitron', sans-serif;
  
    font-size:15px;
  
    margin-bottom:14px;
  }
  
  /* LINKS */
  
  .footer-links a{
  
    color:#d0d0d0;
  
    text-decoration:none;
  
    transition:0.3s ease;
  }
  
  .footer-links a:hover{
  
    color:#008cff;
  }
  
  /* CONTACT */
  
  .footer-contact span{
  
    color:#9ca3af;
  }
  
  /* BOTTOM */
  
  .footer-bottom{
  
    width:90%;
  
    margin:auto;
  
    padding:30px 0 60px;
  
    text-align:center;
  
    color:#6b7280;
  
    font-size:14px;
  
    border-top:
      1px solid rgba(255,255,255,0.05);
  }
  
  /* ==================================================
     MOBILE
  ================================================== */
  
  @media(max-width:1000px){
  
    .footer{
  
      flex-direction:column;
  
      text-align:center;
  
      align-items:center;
    }
  
    .footer-left{
  
      width:100%;
    }
  
    .footer-left p{
  
      margin:auto;
    }
  }