/* ===============================
   HEADER WRAPPER
================================ */
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 999;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  
}
.glass-container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  flex-wrap: wrap;
}
/* .nav-center {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;




  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 60px;
} */
/* Glass elements */
.nav-left,
.nav-center,
.nav-right1 {
  padding: 10px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 8px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 28px;
  width: auto;
}

/* ===============================
   NAV CENTER
================================ */
.nav-center {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.nav-center li a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

.nav-center li a:hover {
  color: #DD4F06;
}

/* ===============================
   RIGHT BUTTONS
================================ */
.nav-right {
  display: flex;
  gap: 14px;
}

.nav-right img {
  height: 34px;
  transition: 0.3s;
}

.nav-right img:hover {
  transform: scale(1.05);
}

/* ===============================
   HERO SECTION
================================ */
.hero-banner {
  min-height: 100vh;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

/* 3D Diagonal Grid */
.hero-banner::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -70%;
  left: -70%;
  z-index: 0;

    background-image: linear-gradient(rgb(0 0 0 / 62%) 1px, transparent 1px), linear-gradient(90deg, rgb(0 0 0 / 73%) 1px, transparent 1px);

  background-size: 60px 60px;

      transform: perspective(1200px) rotateX(56deg) rotateZ(145deg);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Fluid Typography */
.hero-title {
  font-weight: 800;
  font-size: clamp(20px, 3vw, 48px);
  color: #DD4F06;
}

.hero-subtitle {
  max-width: 600px;
  margin: 20px auto 0px;
  color: #555;
  font-size: clamp(13px, 1.2vw, 18px);
}

/* Armillary Image */
.hero-armillary img {
  width: 90%;
  max-width: 750px;
  height: auto;
  margin-top: -40px;
}
.hero-armillary{
position:relative;
}

/* store buttons on globe */
.globe-store{
position:absolute;
top:48%;
left:50%;
transform:translate(-50%,-50%);
display:flex;
gap:25px;
z-index:20;
}

.globe-store img{
height:45px;
background:rgba(255,255,255,0.7);
padding:8px 16px;
border-radius:20px;
backdrop-filter:blur(6px);
}
/* ===============================
   RIBBON SECTION
================================ */
/* ===============================
   RIBBON SECTION
================================ */
.ribbon-section {
  position: relative;
  height: 170px;
  overflow: hidden;
  margin-top: -61px;
  z-index: 10;
}

/* Base ribbon style */
.ribbon {
  position: absolute;
  width: 150%;
  left: -25%;
  height: 59px;

  display: flex;
  align-items: center;
  justify-content: center;
background: transparent;
  color: white;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: 0.5px;
  z-index: 10;
}

/* BACK ribbon */
.ribbon-back {
  top: 50%;
  background: #696969;
  transform: translateY(-50%) rotate(3deg);
  z-index: 1;
}

/* FRONT ribbon */
.ribbon-front {
  top: 50%;
  background: #DD4F06;
  transform: translateY(-50%) rotate(358.5deg);
  z-index: 2;
}

/* Ribbon edges */
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  background: inherit;
  z-index: -1;
}

.ribbon::before {
  left: -40px;
  transform: skewX(-25deg);
}

.ribbon::after {
  right: -40px;
  transform: skewX(-25deg);
}

.ribbon-content {
  display: flex;
  gap: 58px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 16px;
}
/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablet */
@media (max-width: 992px) {

  .glass-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-center {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-armillary img {
    width: 95%;
    margin-top: 0;
  }
  .hero-banner {
    padding-top: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .header-wrapper {
    padding: 12px 0;
  }

  /* .nav-center {
    display: none;
  } */

  .hero-banner {
    padding-top: 240px;
  }

  .hero-banner::before {
    background-size: 40px 40px;
    transform: perspective(900px) rotateX(65deg) rotateZ(145deg);
  }

  .ribbon-section {
    height: 110px;
  }

  .ribbon {
    height: 50px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {

  .hero-title {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .ribbon {
    font-size: 11px;
  }

}
/* ===============================
   1000px and below
================================ */
@media (max-width: 1000px) {

  .glass-container {
    width: 95%;
    padding: 12px 20px;
    gap: 15px;
  }

  .nav-center {
    gap: 25px;
  }

  .nav-right1 img {
    height: 30px;
  }

}


/* ===============================
   768px and below (Tablet)
================================ */
@media (max-width: 768px) {

  .glass-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav-left,
  .nav-center,
  .nav-right1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-center {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-right1 {
    gap: 10px;
  }

}


/* ===============================
   480px and below (Mobile)
================================ */
@media (max-width: 480px) {

  .header-wrapper {
    padding: 10px 0;
  }

  .glass-container {
    padding: 10px 12px;
    gap: 10px;
  }

  .nav-left,
  .nav-right1 {
    width: 100%;
    justify-content: center;
  }

  /* Hide center menu for small screens */
  /* .nav-center {
    display: none;
  } */

  .nav-right1 img {
    height: 26px;
    max-width: 120px;
  }

}


/* ===============================
   350px and below (Small Devices)
================================ */
@media (max-width: 350px) {

  .glass-container {
    padding: 8px 10px;
  }

  .nav-right1 img {
    height: 22px;
    max-width: 100px;
  }

  .brand img {
    height: 20px;
  }

}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile */
/* ===============================
   MOBILE NAV FIX (PUSH DOWN STYLE)
================================ */

@media (max-width: 768px) {

  .glass-container {
    flex-direction: column;
    align-items: stretch;
  }

  /* Top row: logo + hamburger */
  .nav-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
            text-align: center;
  }

  /* Hide menu initially */
  .nav-wrapper {
    width: 100%;
    display: none;
    margin-top: 15px;
  }

  .nav-wrapper.active {
    display: block;
  }

  .nav-center {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  /* Store buttons below menu */
  .nav-right {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

}

/* -----------------------header+banner end-------------------------------------------- */
/* --------------------------------carousel section-------------------------------------- */
.p2p-carousel-section {
 background: url(../images/carousel_bg.png) no-repeat center;
    background-size: cover;
    padding: 80px 0;
   
    overflow: hidden;
    margin-top: -68px;
}

.carousel-content {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.carousel-text {
  flex: 1;
}
.carousel-item {
  transition: transform 1s ease-in-out;
}
.carousel-text h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: #DD4F06;
  margin-bottom: 20px;
}

.carousel-text p {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #111010;
  max-width: 500px;
}

/* RIGHT IMAGE */
.carousel-image {
  flex: 1;
  text-align: right;
}

.carousel-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  /* filter: drop-shadow(0 25px 40px rgba(0,0,0,0.25)); */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .carousel-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-image {
    text-align: center;
  }

  .carousel-image img {
    max-width: 300px;
  }
}
/* ----------------------carousel section end----------------------------- */

/* ===================play section============================================ */
/* =========================
   SECTION
========================= */
.app-demo-section {
  background: #fff;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

/* =========================
   TOP PILL LABEL
/* =========================
   SECTION LABEL
========================= */
.section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

/* Pill */
.section-label span {
  background: #edd4cc;
  padding: 14px 60px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 18px;
  color: #444;
  position: relative;
  z-index: 2;
}

/* LEFT LINES */
.section-label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 145px;
  height: 14px;
  transform: translateY(-50%);

  background: linear-gradient(
    to left,
    #DD4F06 80%,
    #DD4F06 20%,
    transparent
  );

  mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 12px,
    #000 12px,
    #000 14px
  );

  -webkit-mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 12px,
    #000 12px,
    #000 14px
  );
}

/* RIGHT LINES */
.section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 145px;
  height: 14px;
  transform: translateY(-50%);

  background: linear-gradient(
    to right,
    #DD4F06 80%,
    #DD4F06 50%,
    #DD4F06 10%,
    transparent
  );

  mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 12px,
    #000 12px,
    #000 14px
  );

  -webkit-mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 12px,
    #000 12px,
    #000 14px
  );
}
/* =========================
   HEADING
========================= */
.demo-heading {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  margin-bottom: 60px;
  color: #252525a4;
}

.demo-heading span {
  color: #DD4F06;
}

/* =========================
   VIDEO IMAGE WRAPPER
========================= */
/* Wrapper must be relative */
.demo-video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px; /* adjust as needed */
  margin: 0 auto;
}

/* Background Image */
.demo-bg {
  width: 100%;
  border-radius: 30px;
  display: block;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; /* adjust size */
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover effect */
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
/* ========================= GLASS PLAY BUTTON ========================= */ 

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .app-demo-section {
    padding: 80px 20px;
  }

  .play-button {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }



  .demo-label::before,
  .demo-label::after {
    width: 40px;
  }

}
/* =========================
   GLOBAL RESPONSIVE IMPROVEMENTS
========================= */

.app-demo-section {
  padding: clamp(60px, 1vw, 140px) 20px;
}

/* =========================
   LABEL RESPONSIVE
========================= */

.section-label span {
  padding: clamp(10px, 1.5vw, 16px) clamp(30px, 4vw, 70px);
  font-size: clamp(14px, 1.5vw, 18px);
}

.section-label::before,
.section-label::after {
  width: clamp(60px, 10vw, 160px);
}

/* =========================
   HEADING RESPONSIVE
========================= */

.demo-heading {
  font-size: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(30px, 5vw, 70px);
}

/* =========================
   VIDEO WRAPPER RESPONSIVE
========================= */

.demo-video-wrapper {
  width: 95%;
  max-width: 1200px;
  border-radius: clamp(16px, 3vw, 30px);
}

.demo-video-wrapper img {
  border-radius: clamp(16px, 3vw, 30px);
}

/* =========================
   PLAY BUTTON RESPONSIVE
========================= */

.play-button {
  width: clamp(70px, 10vw, 160px);
  height: clamp(50px, 7vw, 110px);
  border-radius: clamp(15px, 2vw, 25px);

  /* backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */
}

/* Triangle scale */


/* =========================
   1000px & BELOW
========================= */
@media (max-width: 1000px) {

  .demo-video-wrapper {
    width: 100%;
  }

}

/* =========================
   768px & BELOW
========================= */
@media (max-width: 768px) {

  .app-demo-section {
    padding: 70px 15px;
  }

  .section-label::before,
  .section-label::after {
    width: 60px;
  }

}

/* =========================
   480px & BELOW
========================= */
@media (max-width: 480px) {

  .section-label span {
    padding: 8px 24px;
  }

  .section-label::before,
  .section-label::after {
    width: 40px;
  }

}

/* =========================
   350px & BELOW
========================= */
@media (max-width: 350px) {

  .section-label::before,
  .section-label::after {
    width: 25px;
  }

  .play-button {
    width: 65px;
    height: 45px;
  }

}
/* ================================play section end========================================== */
/* ========================================faq section=========================================== */
/* =========================
   SECTION
========================= */
.faq-section {
  background: #fff;
  padding: 55px 20px;
  color: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  color: #DD4F06;
  margin-bottom: 80px;
  font-weight: 700;
}

/* =========================
   GRID
========================= */
.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
align-items:start;
}

.faq-col{
display:flex;
flex-direction:column;
gap:30px;
}

/* =========================
   CARD
========================= */
.faq-item {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.faq-item.active {
  padding-bottom: 30px;
}

/* =========================
   QUESTION
========================= */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #222;
  text-align: left;
}

.faq-icon {
  font-size: 26px;
  font-weight: 600;
  color: #444;
  transition: 0.3s;
}

/* =========================
   ANSWER
========================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 15px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  color: #00b894;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    margin-bottom: 50px;
  }
}
/* ==========================faq section end=-====================================================== */
     /* <!-- ==============================cta section======================================= -->
     /* =========================
   SECTION
========================= */
.support-section {
  background: #fff;
  padding: clamp(30px, 1vw, 140px) 20px;
  text-align: center;
  z-index: 0;
}

/* =========================
   LABEL
========================= */
/* .section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.section-label span {
  background: #edd4cc;
  padding: 12px 60px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 18px;
  color: #444;
  position: relative;
  z-index: 2;
}


.section-label::before,
.section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 6px;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    transparent,
    #DD4F06 30%,
    #DD4F06 70%,
    transparent
  );
  mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 4px,
    #000 4px,
    #000 6px
  );
  -webkit-mask: linear-gradient(
    to bottom,
    #000 0px,
    #000 2px,
    transparent 2px,
    transparent 4px,
    #000 4px,
    #000 6px
  );
}

.section-label::before {
  right: 100%;
 
}

.section-label::after {
  left: 100%;

} */

/* =========================
   HEADING
========================= */
.support-heading {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  color: #444;
  margin-bottom: 30px;
}

/* =========================
   PARAGRAPH
========================= */
.support-text {
  max-width: 850px;
  margin: 0 auto 60px auto;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  color: #555;
}

/* =========================
   BUTTON
========================= */
.support-btn {
  display: inline-block;
  background: #DD4F06;
  color: #fff;
  padding: 18px 60px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 40px;
}

.support-btn:hover {
  background: #913203;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .section-label::before,
  .section-label::after {
    width: 60px;
  }

  .support-btn {
    padding: 14px 40px;
    font-size: 16px;
  }

}
/* ========================cta section end================================== */
/* ================================footer========================================= */
/* =========================
   SECTION BASE
========================= */
.download-section {
  background: #e9d6c9;
  position: relative;
  padding-bottom: 60px;
  overflow: visible;   /* 🔥 IMPORTANT */
}

/* Black top */


/* Container */
.download-container {
  max-width: 1200px;
  margin: 0 auto 0px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  color: #464646;
  font-weight: 600;
  height: 480px;
}
/* =========================
   LEFT IMAGE
========================= */
.download-image {
  position: relative;
  z-index: 5;
}

.download-image img {
  width: 450px;
  max-width: 100%;
  display: block;

  transform: translateY(-60px); /* 🔥 controls overlap */
}
/* =========================
   RIGHT CONTENT
========================= */
.download-content {
  max-width: 600px;
}

.download-content h2 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  color: #555;
  margin-bottom: 25px;
}

.download-content h2 span {
  color: #DD4F06;
}

.download-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}

/* Store buttons */
/* =========================
   STORE BUTTON WRAPPER
========================= */
.store-buttons {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  flex-wrap: wrap;              /* allows wrapping on small screens */
}

/* Individual Button */
.store-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px ;
  border-radius: clamp(14px, 1.5vw, 20px);

  background: #d3c5c54f;

  /* box-shadow:
    0 8px 18px rgba(0,0,0,0.08),
    inset 0 2px 4px rgba(255,255,255,0.7),
    inset 0 -3px 6px rgba(0,0,0,0.05); */

  transition: all 0.3s ease;
}

/* Image inside */
.store-buttons img {
  height: clamp(26px, 2.5vw, 42px);
  width: auto;
  display: block;
}

/* Hover */
.store-buttons a:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 25px rgba(0,0,0,0.15),
    inset 0 2px 4px rgba(255,255,255,0.8);
}
/* =========================
   DIVIDER
========================= */
.download-divider {
  height: 1px;
  background: #999;
  max-width: 1200px;
  margin: 25px auto;
  opacity: 0.4;
}

/* =========================
   FOOTER ROW
========================= */
.download-footer {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 45px;
    background: #d3c5c54f;
    padding: 8px;
    border-radius: 10px;
}

.download-footer p {
  color: #49261D;
  font-size: 16px;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 20px;
  font-size: 25px;
  color: #333;
}
.footer-social svg{
  margin-bottom: 5px !important;
}
.footer-social i {
  cursor: pointer;
  transition: 0.3s;

}

.footer-social i:hover {
  color: #e65100;
}
.tag{
  color:#DD4F06 ;
  font-size: 14px;
  padding-top: 25px;
  text-transform: capitalize;
  font-weight: 700 ;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

  .download-container {
    flex-direction: column;
    text-align: center;
  }

  .download-image img {
    width: 350px;
  }

  .store-buttons {
    justify-content: center;
  }

  .download-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .download-top {
    height: 80px;
  }

  .store-buttons img {
    height: 55px;
  }

  .download-content p {
    font-size: 15px;
  }
}
/* ================================footer ends===================================== */

/* 3D Scene container */


#scene{
  width:100%;
  height:clamp(260px,40vw,520px);
  margin:auto;
}
#scene{
position:relative;
z-index:2;
}
/* ===============================
   DIAGONAL GLOBE BACKGROUND
================================ */

/* ===============================
   HERO DIAGONAL WHITE GRADIENT
================================ */
/* ===============================
   HERO LIGHT EFFECT
================================ */
/* .hero-banner::after{
content:"";
position:absolute;

top:-30%;
left:-30%;

width:160%;
height:160%;

pointer-events:none;
z-index:0;

background:


radial-gradient(
circle at 50% 70%,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 18%,
rgba(255,255,255,0.6) 35%,
rgba(255,255,255,0) 55%
),


linear-gradient(
225deg,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 28%,
rgba(255,255,255,0.05) 46%,
rgba(255,255,255,0) 54%,
rgba(255,255,255,1) 72%,
rgba(255,255,255,1) 100%
);

filter:blur(18px);
}

.hero-content{
position:relative;
z-index:2;
} */
.hero-banner::after{
content:"";
position:absolute;

top:-40%;
left:-40%;

width:180%;
height:180%;

pointer-events:none;
z-index:0;

background:

/* glow behind globe */
radial-gradient(
circle at 50% 70%,
rgba(255,255,255,1) 0%,
rgba(255,255,255,0.85) 20%,
rgba(255,255,255,0.4) 40%,
rgba(255,255,255,0) 60%
),

/* solid diagonal beam */
linear-gradient(
154deg,
transparent 40%,
rgb(255, 255, 255) 47%,
rgb(255, 255, 255) 53%,
transparent 60%
);

filter:blur(18px);
}
.hero-content{
position:relative;
z-index:2;
}

.tag a {
  text-decoration: none;
  color: #DD4F06;
}

.tag a:hover {
  color: #DD4F06;
  text-decoration: underline;
}

