body{
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  background-color: #181818; /* fallback */
}

.hero-section {
  min-height: 100vh;
  background: url('images/bg-rays.webp') no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.hero-text h1{
  font-size: 4.0rem;
  max-width: 60%;
  margin: auto, 0;
}
.hero-text p{
  max-width: 40%;
}

.hero-spacing {
  margin-top: 135px;
}
.logo {
  height: 20px;
}

.hero-text {
  margin-top: 60px
}

.hero-image-wrapper {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.hero-ui {
  max-width: 100%;
  margin-top: -60px;
}


.navbar-nav {
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active-nav {
  color: #fff;
}

.nav-link.active-nav::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
}


.navbar {
    padding-bottom: 1.5rem !important;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: #2c2929c2 !important;
}


/*----======CARD SECTION======----*/
.feature-card {
  position: relative;
  background-color: #181818;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 0 20px #133e47
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px; /* Border thickness */
  background: linear-gradient(135deg, #00fff0, #0057ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.feature-card::before {
  filter: blur(12px);
  opacity: 0.4;
}



.feature-card h3 {
  font-size: 42px;
}
.feature-card small {
  font-size: 24px;
}
.feature-card p{
  padding-right: 1rem;
  font-size: 20px;
}
.feature-card img{
  height: 400px;
  object-fit: contain;
}

.whyblackbag {
  padding-left: 72px;
}

.glow-btn {
  background-color: white;
  color: black;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 12px;
  padding: 0.6rem 1.4rem;
  /*box-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 12px rgba(255, 255, 255, 0.2);*/
  transition: all 0.3s ease;
}

.glow-btn:hover {
  transform: scale(1.05);
  /*box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);*/
  background-color: white;
  color: black;
}

/*---------------------<SCRIBE SECTION BLACKBAG>-----------------------*/


.scribe-section {
  background-color: #181818;

}

.scribe-section h2{
  margin-bottom: 2.5rem;
  font-size: 40px;
}
.scribe-section h5{
  font-size: 40px;
}
.scribe-section small{
  font-size: 20px;
  color: #fff !important;
}
.badge-pill-feature {
  background: linear-gradient(to right, #5BD0E8, #0761BD, #369FD5, #0963BE);
  color: white;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.text-section-scribe{
  margin-left:108px ;
}
.badge-pill-feature .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Icon animation on hover */
.badge-pill-feature:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.badge-pill-feature:hover .icon {
  animation: icon-pop 0.4s ease;
}

/* Optional: a bounce/pop effect */
@keyframes icon-pop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}




.hover-gif-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* Maintain layout */
  overflow: hidden;
  background: transparent; /* Make background transparent */
}
/* Both images absolutely stacked */
.static-img,
.gif-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.0s ease-in-out;
  background: transparent; /* Prevents fallback color */
}
/* Show static by default */
.static-img {
  z-index: 2;
  opacity: 1;
}



/*-------------------BOX CARDS------------ */
.feature-boxes-section {
  background-color: #181818;
}

.feature-box {
  background-color: #181818;
  border: 1px solid #444;
  border-radius: 20px;
  color: white;
  height: 320px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-icon-img {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -8px;
  height: 60px; /* Fixed height for alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-desc {
  font-size: 16px;
  color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-box small{
  font-size: 22px;
}

.endingtwocards p{
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
}

/* Decorative rings */
.ring {
  position: absolute;
  width: 200px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.endingtwocards img{
  width: 184px !important;
  margin-bottom: 39px !important;
  margin-top: 2rem;
}
.endingtwocards h4{
  font-size: 34px;
}
.ring-top-left { top: 1px; left: 13px; }
.ring-bottom-right { bottom: 1px; right: 13px; }
.ring-top-right { top: 1px; right: 13px; }
.ring-bottom-left { bottom: 1px; left: 13px; }




/*-----------===========The single box ==============------------------*/
.highlight-section {
  background-color: #181818;
  color: white;
}

.highlight-box {
  background: linear-gradient(to top, #171717, #292929);
  border-radius: 20px;
  text-align: center;
  position: relative;
  padding: 3rem 2rem;
  color: white; /* ensures text remains visible */
  box-shadow: 0px 0 40px #245B8938;
  margin: 35px 0px 20px;
}

.highlight-ring-left{
 top: 35px !important;
}
.highlight-ring-right{
  bottom: 20px !important;
}
.highlight-label {
  color: #00BFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.highlight-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.highlight-description {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 720px;
  margin: 0 auto;



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

}  .footer-section {
    background-color: #000;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 12px 43px #ffffff;
  }
  .footer-section {
    background-color: #000;
    overflow: hidden;
    position: relative;
  }

  .footer-shine {
      position: absolute;
      top: -46px;
      left: -532px;
      width: 171%;
      height: 100px;
      background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 70%);
      z-index: 0;
  }
  .footerlogo{
    max-width: 360px!important;
  }
  .footer-section * {
    position: relative;
    z-index: 1;
  }

  .footer-section a:hover {
    text-decoration: underline;
  }

/*MMMMMMMMMMMMMMMMMMMM MEDIA QUERY YYYYYYYYYYYYYYYYYYYYYYY*/

@media (max-width: 360px){

  .ring{
    width: 152px;
  }
  .hero-spacing {
    margin-top: 43px;
  }

  .hero-text h1{
    font-size: 2rem !important;
    max-width: 100% !important;
  }
  .feature-card{
    box-shadow: 0px 0 0px #133e47;
  }
  .feature-card img {
    height: 164px;
    object-fit: contain;
  }
  .whyblackbag {
    padding-left: 0px;
  }
  .hero-text p{
    max-width: 80% !important;
  }
  .hero-ui {
    max-width: 100%;
    margin-top: -40px !important;
  }
  .logo {
      height: 15px !important;
  }

  .feature-card p {
      padding-right: 0rem;
      font-size: 20px;
      text-align: center;
  }
  .feature-card h3 {
      font-size: 31px;
  }
  .feature-card small {
      font-size: 18px;
      text-align: center;
      justify-content: center;
      display: flex
  ;
  }
  .glow-btn:hover {
      border: 1px solid;
      box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
      outline-color: rgba(255, 255, 255, 0);
      outline-offset: 15px;
      text-shadow: 1px 1px 2px #427388; 
  }
  .glow-btn {
      transform: scale(1.05);
      box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);
      background-color: white;
      color: black;
      margin-bottom: 36px;
  }
  .adjusted-img-one{
    position: 'relative;';
    right: 20px;
  }
  .feature-card::before {
      content: '';
      position: contain;
      top: 6px;
      left: 6px;
      right: 6px;
      bottom: 6px;
      border-radius: 26px;
      background: linear-gradient(135deg, #00fff0, #0057ff);
      filter: blur(12px);
      opacity: 0.4;
      z-index: -2;
  }
  h3,p,small, h5{
    text-align: center;
  }
  .scribe-section h5 {
      font-size: 33px;
  }
  .scribe-section h2 {
    margin-bottom: 2.5rem;
    font-size: 21px;
  }

  .footerlogo {
      max-width: 321px !important;
  }
  
}

@media (max-width: 575.98px) {
  .scribe-section h2 {
    margin-bottom: -0.5rem;
}
  .navbar {
    padding-bottom: 1.5rem !important;
}
.hero-text h1 {
    font-size: 3rem;
}
.hero-ui {
    margin-top: 32px;
}
h3,p,small, h5{
  text-align: center;
}
.feature-card small {
    justify-content: center;
    display: flex;
}

}

@media (max-width: 767.98px) { 
.hero-ui {
    max-width: 100%;
    margin-top: 24px;
}
h3,p,small, h5{
  text-align: center;
}
.feature-card small {
    justify-content: center;
    display: flex;
}
.scribe-section h2 {
    margin-bottom: -0.5rem;
}
.scribe-section h5 {
    font-size: 42px;
}
.footer-shine {
    position: absolute;
    top: -46px;
    left: -283px;
    width: 171%;
    height: 100px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%);
    z-index: 0;
 }
}

@media (max-width: 991.98px) {
  h3,p,small, h5{
    text-align: center;
  }
  .footerlogo {
      max-width: 276px !important;
  }
  .scribe-section h5 {
      font-size: 27px;
  }

  .badge-pill-feature {
    font-weight: 600;
    margin-bottom: -8px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

  }

  .endingtwocards h4 {
    height: 90px;
  }
}
 
@media (max-width: 1199.98px) { 
  h3,p,small, h5{
    text-align: center;
  }

  .scribe-section h5 {
      font-size: 35px;
  }

}
