/* =========================================================
   CHANGE COLORS HERE (experiment here)
   ========================================================= */
:root{
  --andy-link: #4488ff;
  --andy-link-hover:#88ccff;

  /* requested names */
  --link-color-andy: var(--andy-link);
  --link-color-hover-andy: var(--andy-link-hover);

  --bg-1:#070B12;
  --bg-2:#0A1322;
  --panel: rgba(255,255,255,.06);
  --panel-border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.85);
  --gradient-three: linear-gradient(to bottom, #ffffff, #4488ff);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);
  --t: 420ms;
  --e: cubic-bezier(.2,.8,.2,1);
}

html{ scroll-behavior:smooth; }

body{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(68,136,255,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 30%, rgba(136,204,255,.14), transparent 50%),
              linear-gradient(180deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  overflow-x:hidden;
}

/* Top progress bar */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #88ccff, #4488ff);
  box-shadow: 0 0 18px rgba(136,204,255,.65);
}

/* Animated background blobs */
.bg-blobs{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-blobs span{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .18;
  animation: floaty 12s ease-in-out infinite;
  background: radial-gradient(circle at 30% 30%, rgba(136,204,255,.75), rgba(68,136,255,.05));
}
.bg-blobs span:nth-child(1){ top:-140px; left:-160px; animation-duration: 14s; }
.bg-blobs span:nth-child(2){ top:20%; right:-180px; width: 640px; height: 640px; opacity: .14; animation-duration: 16s; }
.bg-blobs span:nth-child(3){ bottom:-200px; left:20%; width: 700px; height: 700px; opacity: .12; animation-duration: 18s; }

@keyframes floaty{
  0%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-20px,0) scale(1.06); }
  100%{ transform: translate3d(0,0,0) scale(1); }
}

/* Gradient headings */
.mineh1, .mineh2, .mineh3{
  background: var(--gradient-three);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: .6rem;
}

.mineh1{ font-size: clamp(26px, 3.3vw, 42px); }
.mineh2{ font-size: clamp(18px, 2.2vw, 24px); }
.mineh3{ font-size: clamp(16px, 2vw, 20px); }

.h1, .h2, .h3 {
  font-weight: 600;
  letter-spacing: .2px;
  margin-bottom: .6rem;
}

/* Label gradient (Phone/Address etc.) */
.label-gradient{
  background: var(--gradient-three);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight: 900;
}

/* =========================================================
   NAVBAR + MENU COLORS
   ========================================================= */
.navbar{
  background: #0d1724;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: padding .2s ease, background .2s ease, border-color .2s ease;
  padding-top: .85rem;
  padding-bottom: .85rem;
  z-index: 1035;
}

.logo {
  width:190px;
  height:auto;
}


/* Top menu hover + default */
.navbar .nav-link{
  color: var(--link-color-andy);
  font-weight: 900;
  letter-spacing: .2px;
  padding: .55rem .8rem;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.navbar .nav-link:hover{
  color: var(--link-color-hover-andy);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* Fix active state (home page issue) */
.navbar .nav-link.andy-link.active,
.navbar .nav-link[aria-current="page"]{
  color: var(--link-color-andy) !important;
  background: transparent !important;
  transform: none !important;
}

/* =========================================================
   HAMBURGER ICON (3 bars) color = --link-color-andy
   (SVG can't read CSS vars directly, so use your current link color)
   If you change --andy-link, update rgba(68,136,255,1) too.
   ========================================================= */
.navbar-dark .navbar-toggler{
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: .45rem .6rem;
}
.navbar-dark .navbar-toggler:focus{ box-shadow: none; }
.navbar-dark .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(68,136,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navmenu.top-up {
  overflow: hidden;
  transition: transform 700ms ease, opacity 700ms ease;
  transform: perspective(300px) rotateX(-90deg);
  transform-origin: top;
}

.navmenu.top-down {
  /*background: rgba(255,255,255,.94);*/
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transform-origin: top;
  transform: perspective(300px) rotateX(0deg);
  transition:
    transform var(--t) var(--e),
    box-shadow var(--t) var(--e),
    opacity var(--t) var(--e),
    background var(--t) var(--e);
  will-change: transform, opacity;

  /*box-shadow: 0 0 0 rgba(0,0,0,0);*/
  opacity: 1;
}

/* Phone pill */
.phone-pill{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.phone-pill i{ color: var(--link-color-hover-andy); }
.phone-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(136,204,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* =========================================================
   FULL SCREEN BOOTSTRAP 5 MOBILE MENU (OFFCANVAS)
   ID: #mobileMenu (NOT #navbarOffcanvas)
   ========================================================= */
.offcanvas-full{
  width: 100vw !important;
  max-width: 100vw !important;
  background: rgba(7,11,18,.96);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255,255,255,.10);
}
.mobile-link{
  color: var(--link-color-andy) !important;
  font-weight: 900;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .2s ease;
  text-decoration: none;
  display: block;
}

.mobile-link:hover{
  color: var(--link-color-hover-andy) !important;
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
}

.mb-andy-link{
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.mb-andy-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(.15);
  transform-origin: left;
  transition: transform .22s ease;
  background: linear-gradient(90deg, #88ccff, #4488ff);
  opacity: .95;
}

.mb-andy-link:hover::after{
  transform: scaleX(1);
}

/* Reduce phone size in side menu ~75% */
.phone-pill-sm{
  font-size: .85rem;
  padding: .6rem .9rem;
}

/* Hero */
.hero{
  position: relative;
  /*min-height: 58vh;*/
  background: #000;
  overflow:hidden;
  padding-top: 150px;
}
.hero video{
  width: 100%;
  object-fit: contain;
  display:block;
  filter: contrast(1.02) saturate(1.05);
}

/* Textured sections */
.section-texture{
  position: relative;
  background-image: url("https://www.3dbillboardtrucks.com/assets/img/texture-3.png");
  background-repeat: repeat;
  background-position: 50% 0%;
  background-size: auto;
}
.section-texture::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 18, 0.55) 0%,
    rgba(10, 19, 34, 0.78) 55%,
    rgba(7, 11, 18, 0.92) 100%
  );
  pointer-events:none;
  z-index:0;
}
.section-texture::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 280px at 20% 10%, rgba(136,204,255,.12), transparent 60%),
              radial-gradient(700px 280px at 80% 30%, rgba(68,136,255,.10), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.section-texture > .container{ position:relative; z-index:1; }

.nobg {
  background-color: white;
  color: black;
}

/* Panels */
.panel{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 26px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, rgba(136,204,255,.55), rgba(68,136,255,.15), rgba(255,255,255,.06));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.panel::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  z-index: 0;
}
.panel > *{ position: relative; z-index: 1; }

.panel.panel-hover{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-color: var(--stroke);
}
.panel.panel-hover:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(136,204,255,.18);
  border-color: var(--stroke2);
}
.panel.panel-hover:hover::before{ opacity: .25; }

.panel2 {
  min-height: 1199px;
}

.section-pad{ padding: 30px 0; }

.divider-line{
  height: 1px;
  width: 100%;
  margin: 18px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(136,204,255,.35), rgba(255,255,255,.10), rgba(68,136,255,.35), transparent);
}

a.andy-link{
  color: var(--link-color-andy);
  position: relative;
  text-decoration: none;
  font-weight: 800;
}
a.andy-link:hover{ color: var(--link-color-hover-andy); }
a.andy-link::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  width:100%;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(.15);
  transform-origin: left;
  transition: transform .22s ease;
  background: linear-gradient(90deg, #88ccff, #4488ff);
  opacity: .95;
}

/*a.andy-link:hover::after{ transform: scaleX(1); }*/

@media (hover:hover) and (pointer:fine){
  a.andy-link:hover::after,
  a.andy-link:focus-visible::after{
    transform: scaleX(1);
  }
}

@media (hover:none), (pointer:coarse){
  .mb-andy-link::after, a.andy-link::after{
    transform: scaleX(1);
    transition:none;
  }
}

.nav-link.andy-link::after {
  left: 9px;
  width: 82%;
}

.advertiseheading {
  z-index: 9;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.chip i{ color: #88ccff; }
.chip:hover{
  transform: translateY(-3px);
  border-color: rgba(136,204,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.img-soft{
  border-radius: 16px;
  border: 3px solid white;
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}
.img-soft:hover{
  transform: scale(1.02);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(136,204,255,.16);
  filter: saturate(1.05) contrast(1.05);
}

.btn-glow{
  background: linear-gradient(90deg, #88ccff, #4488ff);
  border: 0;
  box-shadow: 0 16px 40px rgba(68,136,255,.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  font-weight: 900;
  z-index: 9999;
}
.btn-glow:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(68,136,255,.35);
  filter: brightness(1.05);
}

footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}

@media (max-width: 576px){
  .hero video{ height: 30vh; }
  .hero{
    /*min-height: 42vh; */
    padding-top: 68px;
     }
  .navbar-brand img{ width: 150px !important; }

  .jumbarlink {
    margin-bottom: 20px;
  }

}


/* Jumpbar */
.jumpbar{ padding: 14px 16px; }
.jumpbar a{ font-weight: 900; margin-right: 10px; }

/* Media Card + Popup Modal */
.media-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  max-width: 720px;
  margin-inline: auto;
}
.media-card img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
}
.play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.45));
  opacity: 1;
  transition: opacity .22s ease, transform .22s ease;
}


.play-btn {
  width: 60px; /* Set size */
  height: 60px; /* Set size */
  background-color: #FF0000; /* Red background, same as YouTube */
  border: none;
  border-radius: 50%; /* Round button */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
  transition: all 0.3s ease;
}

.play-btn i {
  color: white; /* White play icon */
  font-size: 36px; /* Icon size */
}

.play-btn:hover {
  transform: scale(1.1); /* Slightly grow on hover */
}

.play-btn:focus {
  outline: none; /* Remove outline on focus */
}


/* popup size ~1024px */
.modal-dialog.modal-media{ max-width: 1024px; }
.modal-content.media-modal{
  background: rgba(7,11,18,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
}

.media-modal .modal-body{
  border: 3px solid white;
  padding: 0;
  border-radius: 18px;
}

.media-modal video{
  width: 100%;
  height: auto;
  display:block;
  background: #000;
  border-radius: 18px;
}


@media screen {
  html:not(.no-js) [data-aos^="zoom"][data-aos^="zoom"] {
    opacity: 1 !important;
 }
}

.video-wrapper {
  position: relative;
  max-width: 100%;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px;
  border: 4px solid #ccc;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}