/*

Tooplate 2117 Infinite Loop

https://www.tooplate.com/view/2117-infinite-loop

*/

@import url("https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,700,900");

body {
  font-family: "Raleway", sans-serif;
  font-size: 1.2em;
  color: #707070;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
  color: #38B;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #D40;
}

a:focus {
  outline: none;
}

.btn {
  padding: 8px 32px;
}

.btn:hover {
  background-color: #ced4da;
}

blockquote {
  font-size: 0.86em;
  line-height: 1.8em;
}

.tm-section-pad-top {
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.tm-content-box {
  padding-top: 20px;
  padding-bottom: 40px;
}

.tm-text-primary {
  color: #37A;
}

.tm-font-big {
  font-size: 1.25rem;
}

.tm-btn-primary {
  color: white;
  background-color: #369;
  padding: 14px 30px;
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
  color: white;
  background-color: #38B;
}

/* Navbar */

.tm-navbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(1,11,26,0.72) 0%, rgba(10,22,50,0.72) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.tm-navbar.scroll {
  background: linear-gradient(135deg, rgba(1,11,26,0.97) 0%, rgba(10,22,50,0.97) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,255,0.08), inset 0 1px 0 rgba(255,255,255,0.07);
}

.navbar-brand .logo-j {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2fff 60%, #00ffcc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
  margin-right: -4px;
}

.navbar-brand .logo-rest {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 4px;
}

.navbar-brand .logo-tagline {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: #8892a4;
  text-transform: uppercase;
  margin-top: -8px;
  margin-left: 2px;
}

.nav-item {
  list-style: none;
}

.tm-nav-link {
  color: white;
}

.tm-navbar.scroll .tm-nav-link {
  color: #fff;
}

.tm-navbar.scroll .tm-nav-link:hover,
.tm-navbar.scroll .tm-nav-link.current,
.tm-nav-link:hover {
  color: #FFF;
  background-color: #00d4ff;
}

/* Active page highlight (main.js adds .active class) */
.tm-nav-link.active {
  color: #00d4ff !important;
  background: rgba(0, 212, 255, 0.12) !important;
  border-radius: 6px;
}

.tm-navbar.scroll .tm-nav-link.active {
  color: #00d4ff !important;
  background: rgba(0, 212, 255, 0.12) !important;
}

/* ---- PAGE ENTRANCE ANIMATIONS ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero content animates in on load */
.tm-hero-text-container-inner { animation: fadeSlideUp 0.9s ease 0.2s both; }
.tm-hero-subtitle { animation: fadeSlideUp 0.9s ease 0.45s both; }

/* Section-level stagger: direct children in a reveal container */
.reveal.visible > *:nth-child(1) { animation: fadeSlideUp 0.6s ease 0s both; }
.reveal.visible > *:nth-child(2) { animation: fadeSlideUp 0.6s ease 0.1s both; }
.reveal.visible > *:nth-child(3) { animation: fadeSlideUp 0.6s ease 0.2s both; }
.reveal.visible > *:nth-child(4) { animation: fadeSlideUp 0.6s ease 0.3s both; }

/* Glass card hover lift */
.glass-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 212, 255, 0.18);
}

/* Service feature item hover */
.feature-item {
  transition: color 0.2s;
}
.feature-item:hover { color: #00d4ff; }

/* Portfolio card hover image zoom — handled by CSS only */
.portfolio-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.2);
}

/* Filter button animated underline */
.filter-btn {
  position: relative;
  overflow: hidden;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.filter-btn:hover::after, .filter-btn.active::after { width: 60%; }

/* Nav link slide-in animation for each item */
#nav-links .nav-item {
  animation: slideDown 0.4s ease both;
}
#nav-links .nav-item:nth-child(1) { animation-delay: 0.05s; }
#nav-links .nav-item:nth-child(2) { animation-delay: 0.1s; }
#nav-links .nav-item:nth-child(3) { animation-delay: 0.15s; }
#nav-links .nav-item:nth-child(4) { animation-delay: 0.2s; }
#nav-links .nav-item:nth-child(5) { animation-delay: 0.25s; }
#nav-links .nav-item:nth-child(6) { animation-delay: 0.3s; }
#nav-links .nav-item:nth-child(7) { animation-delay: 0.35s; }


.navbar-toggler {
  border: 1px solid rgba(0, 212, 255, 0.5);
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler-icon {
  color: #00d4ff;
}

.tm-navbar.scroll .navbar-toggler {
  border: 1px solid #00d4ff;
}

/* Hero */

#infinite {
  background-color: #222;
  background-image: url(../img/infinite-loop-01.jpg);
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 375px;
  position: relative;
}

@media (min-height: 600px) and (min-width: 1920px) {
  #infinite {
    background-size: cover;
  }
}

@media (min-height: 830px) {
  #infinite {
    background-position: center -210px;
  }
}

@media (min-height: 680px) and (max-height: 829px) {
  #infinite {
    background-position: center -300px;
  }
}

@media (min-height: 500px) and (max-height: 679px) {
  #infinite {
    background-position: center -400px;
  }
}

@media (max-height: 499px) {
  #infinite {
    background-position: center -450px;
  }
}

.tm-hero-text-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.tm-hero-text-container-inner {
  margin-top: -90px;
}

.tm-hero-title {
  font-size: 3.5rem;
  text-shadow: 2px 2px 2px #333;
}

.tm-hero-subtitle {
  text-shadow: 2px 2px 2px #333;
}

.tm-intro-next {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

@media (max-height: 480px) {
  .tm-hero-text-container-inner {
    margin-top: -40px;
  }

  .tm-intro-next {
    bottom: 20px;
  }
}

.tm-down-arrow-link {
  display: block;
  margin-top: 18%;
}

.tm-down-arrow {
  color: #FFF;
  cursor: pointer;
  background: #357;
  padding: 15px 40px;
  transition: all 0.3s ease;
}

.tm-down-arrow:hover,
.tm-down-arrow:focus {
  color: #FFF;
  background: #37A;
  padding: 20px 50px;
}

/* Introduction */

#introduction {
  padding-bottom: 100px;
}

.tm-section-title {
  font-size: 2.6rem;
  font-weight: normal;
}

.tm-intro-text {
  font-size: 1.2rem;
}

.tm-icon {
  display: block;
  color: #37A;
}

.tm-continue {
  padding: 20px 0 30px 0;
}

/* Testimonials */
#testimonials {
  color: white;
  background-image: url(../img/infinite-loop-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

@media (max-width: 991px) {
  #testimonials {
    background-image: url(../img/infinite-loop-02-mobile.jpg);
  }
}

.tm-testimonials-content {
  position: relative;
  z-index: 100;
}

.tm-bg-overlay {
  width: 100%;
  height: 100%;
  background: rgba(20, 70, 80, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.tm-testimonials-carousel {
  max-width: 1050px;
  margin: 0 auto;
}

.tm-testimonial-item {
  max-width: 290px;
  margin-left: 35px;
  margin-right: 35px;
}

.tm-testimonial-item img {
  border-radius: 50%;
  margin-bottom: 35px;
}

.tm-testimonial-item figcaption {
  text-align: right;
  font-style: italic;
  font-size: 1.1rem;
}

/* Work */

.tm-section-desc {
  max-width: 650px;
  width: 100%;
  font-size: 0.9rem;
}

.tm-gallery-container {
  padding-top: 70px;
  padding-bottom: 120px;
}

.tm-gallery-item {
  margin: 0 15px;
}

.slick-dots {
  bottom: -65px;
}

.slick-dots li {
  margin: 0 13px;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before,
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #3ba0dd;
}

.tm-testimonials-carousel .slick-dots li button:before {
  color: white;
  opacity: 0.5;
}

.tm-testimonials-carousel .slick-dots li button:hover:before,
.tm-testimonials-carousel .slick-dots li button:focus:before,
.tm-testimonials-carousel .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 18px;
}

/* Hover Effect */
/* Common style */
.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h2 {
  word-spacing: -0.15em;
  font-size: 0.9em;
  font-weight: 300;
}

.grid figure h2 span {
  font-weight: 600;
}

.grid figure h2,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/*---------------*/
/***** Honey *****/
/*---------------*/

figure.effect-honey {
  background: #4a3753;
  max-width: 220px;
}

figure.effect-honey img {
  opacity: 1;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-honey:hover img {
  opacity: 0.4;
}

figure.effect-honey figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #38C;
  content: "";
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

figure.effect-honey h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em 1.5em;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

figure.effect-honey h2 i {
  font-style: normal;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

figure.effect-honey figcaption::before,
figure.effect-honey h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.tm-container-gallery {
  padding-top: 30px;
}

/* Contact */

#contact {
  color: white;
  background-color: #001828;
  background-image: url(../img/infinite-loop-03.jpg);
  background-position: center;
  background-repeat: no-repeat;
  min-height: 980px;
  position: relative;
  padding-bottom: 50px;
  padding-top: 100px;
}

.contact-item {
  margin-left: 20px;
  margin-bottom: 50px;
}

.item-link {
  display: flex;
  align-items: center;
}

.item-link i,
.item-link span {
  color: white;
  transition: all 0.3s ease;
}

.item-link:hover i,
.item-link:hover span {
  color: #3496d8;
}

.tm-input {
  margin: 0 0 20px 0;
  width: 90%;
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid white;
  background: transparent;
  color: white;
}

.tm-btn-submit {
  font-size: 0.9em;
  color: #fff;
  background-color: #369;
  width: 50%;
  margin-bottom: 60px;
}

.tm-btn-submit:hover {
  color: #fff;
  background-color: #38B;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
}

.tm-footer {
  padding: 40px 15px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
}

.tm-footer a {
  color: #fff;
}

.tm-footer a:hover {
  color: #9CF;
}

.tm-footer-link {
  color: white;
}

.tm-footer-link:hover,
.tm-footer-link:focus {
  color: #38B;
  text-decoration: none;
}

p {
  line-height: 1.9;
}

@media (min-width: 768px) {
  .tm-intro-text-container {
    padding-left: 0px;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1275px;
  }

  .tm-container-gallery {
    max-width: 1290px;
  }

  .tm-container-contact {
    max-width: 1063px;
  }
}

@media (max-width: 991px) {
  .tm-intro-text-container {
    padding-left: 15px;
    padding-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-intro-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-btn-submit {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {

  .navbar-nav {
    max-width: 200px;
    text-align: right;
  }

  .navbar-collapse {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 3px;
  }

  .navbar-collapse .nav-link {
    color: #707070;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .tm-gallery-container {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .tm-gallery-container-2 {
    max-width: 350px;
  }

  .slick-dots li {
    margin: 0 8px;
  }

  .tm-gallery-item {
    margin: 0;
  }
}

/* =============================================
   JASTRICKS — Professional Footer
   ============================================= */
.jx-footer{background:linear-gradient(180deg,transparent 0%,rgba(0,8,20,.95) 10%,#000814 100%);border-top:1px solid rgba(0,212,255,.08);padding:60px 0 0;position:relative;overflow:hidden}
.jx-footer::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:200px;height:1px;background:linear-gradient(90deg,transparent,rgba(0,212,255,.6),transparent)}
.jx-footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding:0 30px}
@media(max-width:991px){.jx-footer-grid{grid-template-columns:1fr 1fr;gap:30px}}
@media(max-width:575px){.jx-footer-grid{grid-template-columns:1fr;gap:24px}}
.jx-footer-brand .jx-logo{font-family:'Orbitron',sans-serif;font-size:1.4rem;font-weight:900;letter-spacing:3px;margin-bottom:8px}
.jx-footer-brand .jx-logo .j{color:#00d4ff}
.jx-footer-brand .jx-tagline{font-size:.68rem;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:16px}
.jx-footer-brand p{color:rgba(255,255,255,.5);font-size:.85rem;line-height:1.65;margin-bottom:16px}
.jx-footer-socials{display:flex;gap:10px}
.jx-footer-socials a{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.4);font-size:.9rem;transition:.2s}
.jx-footer-socials a:hover{background:rgba(0,212,255,.1);border-color:rgba(0,212,255,.3);color:#00d4ff;transform:translateY(-2px)}
.jx-footer-col h4{font-family:'Orbitron',sans-serif;font-size:.62rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:18px}
.jx-footer-col ul{list-style:none;padding:0;margin:0}
.jx-footer-col ul li{margin-bottom:10px}
.jx-footer-col ul li a{color:rgba(255,255,255,.5);font-size:.84rem;text-decoration:none;transition:.15s;display:flex;align-items:center;gap:8px}
.jx-footer-col ul li a:hover{color:#00d4ff;transform:translateX(3px)}
.jx-footer-col ul li a i{width:14px;font-size:.72rem;color:rgba(0,212,255,.4)}
.jx-footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;font-size:.82rem;color:rgba(255,255,255,.5)}
.jx-footer-contact-item i{color:rgba(0,212,255,.5);margin-top:3px;width:14px;font-size:.8rem}
.jx-footer-contact-item a{color:rgba(255,255,255,.5);text-decoration:none;transition:.15s}
.jx-footer-contact-item a:hover{color:#00d4ff}
.jx-footer-bottom{margin-top:40px;padding:20px 30px;border-top:1px solid rgba(255,255,255,.05);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;max-width:1200px;margin-left:auto;margin-right:auto}
.jx-footer-copy{font-size:.76rem;color:rgba(255,255,255,.3)}
.jx-footer-legal{display:flex;gap:18px;flex-wrap:wrap}
.jx-footer-legal a{font-size:.72rem;color:rgba(255,255,255,.3);text-decoration:none;transition:.15s}
.jx-footer-legal a:hover{color:#00d4ff}
.jx-footer-bar{height:3px;background:linear-gradient(90deg,transparent,#00d4ff,#7b2fff,#00d4ff,transparent);margin-top:20px;opacity:.4}

/* =============================================
   JASTRICKS — Glowing Cursor
   ============================================= */
.jx-cursor{position:fixed;width:20px;height:20px;border-radius:50%;background:radial-gradient(circle,rgba(0,212,255,.6) 0%,rgba(0,212,255,.1) 50%,transparent 70%);pointer-events:none;z-index:99999;transform:translate(-50%,-50%);transition:width .3s,height .3s,opacity .3s;mix-blend-mode:screen;will-change:transform}
.jx-cursor-ring{position:fixed;width:40px;height:40px;border-radius:50%;border:1.5px solid rgba(0,212,255,.25);pointer-events:none;z-index:99998;transform:translate(-50%,-50%);transition:width .4s ease,height .4s ease,border-color .3s;will-change:transform}
.jx-cursor-trail{position:fixed;width:6px;height:6px;border-radius:50%;background:rgba(0,212,255,.35);pointer-events:none;z-index:99997;transform:translate(-50%,-50%);will-change:transform;opacity:0}
body:hover .jx-cursor{opacity:1}
a:hover ~ .jx-cursor,.jx-cursor.hovering{width:32px;height:32px;background:radial-gradient(circle,rgba(0,212,255,.8) 0%,rgba(0,212,255,.2) 50%,transparent 70%)}
a:hover ~ .jx-cursor-ring,.jx-cursor-ring.hovering{width:56px;height:56px;border-color:rgba(0,212,255,.45)}

/* =============================================
   JASTRICKS — Enhanced Section Backgrounds
   ============================================= */
.jx-bg-mesh{position:relative}
.jx-bg-mesh::before{content:'';position:absolute;inset:0;background:
  radial-gradient(ellipse 600px 400px at 20% 50%, rgba(0,212,255,.04) 0%, transparent 70%),
  radial-gradient(ellipse 500px 300px at 80% 30%, rgba(123,47,255,.03) 0%, transparent 70%);
  pointer-events:none;z-index:0}
.jx-bg-mesh>*{position:relative;z-index:1}

.jx-bg-dots{position:relative}
.jx-bg-dots::after{content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:28px 28px;pointer-events:none;z-index:0}
.jx-bg-dots>*{position:relative;z-index:1}

.jx-bg-grid{position:relative}
.jx-bg-grid::after{content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,212,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(0,212,255,.02) 1px,transparent 1px);
  background-size:60px 60px;pointer-events:none;z-index:0}
.jx-bg-grid>*{position:relative;z-index:1}

.jx-bg-glow-tl{position:relative}
.jx-bg-glow-tl::before{content:'';position:absolute;top:-120px;left:-120px;width:400px;height:400px;background:radial-gradient(circle,rgba(0,212,255,.06),transparent 70%);pointer-events:none;z-index:0}
.jx-bg-glow-tl>*{position:relative;z-index:1}

.jx-bg-glow-br{position:relative}
.jx-bg-glow-br::before{content:'';position:absolute;bottom:-120px;right:-120px;width:400px;height:400px;background:radial-gradient(circle,rgba(123,47,255,.05),transparent 70%);pointer-events:none;z-index:0}
.jx-bg-glow-br>*{position:relative;z-index:1}

/* Section divider line */
.jx-divider{width:100%;height:1px;background:linear-gradient(90deg,transparent,rgba(0,212,255,.15),transparent);margin:0 auto}

/* Floating particles for sections */
@keyframes jxFloat{0%,100%{transform:translateY(0) scale(1);opacity:.3}50%{transform:translateY(-20px) scale(1.2);opacity:.6}}
.jx-floating-orb{position:absolute;border-radius:50%;background:radial-gradient(circle,rgba(0,212,255,.2),transparent 70%);animation:jxFloat 6s ease-in-out infinite;pointer-events:none;z-index:0}