.bg{           
    background: #0B0D10;
            background-attachment: fixed;
            min-height: 100vh;
    z-index: 1;
 }
body{font-family: "area-normal", sans-serif;
font-weight: 400;
font-style: normal;}


h1 {font-family: "allumi-std", sans-serif;
font-weight: 800;
  font-size:40px;
font-style: bold;}
@media (min-width: 768px) {
 h1 {
   font-size:60px;
  }
}
 
.extralarge {font-family: "allumi-std", sans-serif;
font-weight: 600; font-size:40px !important;
font-style: normal;}

h3 {font-family: "allumi-std", sans-serif;
font-weight: 300;
font-style: normal;}

  .footerlogo {
            
            width: 80px; 
         height:auto !important;
        }

      .navbar {
            transition: all 0.3s ease-in-out;
        }

        /* Logo styling with smooth transition */
        .navbar-brand .logo {
            transition: all 0.3s ease-in-out;
            width: 80px; 
         height:auto !important;
        }

        /* Scrolled state - smaller logo */
        .navbar.scrolled .navbar-brand .logo {
            width: 50px;
        }

        /* Optional: reduce navbar padding when scrolled */
        .navbar.scrolled {
            padding-top: 0.25rem;
            padding-bottom: 0.25rem;
        }

.offcanvas {
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
}
.bkvideo {
  background: url("https://fvcdigital.com/assets/video/fvcvideo2.gif") no-repeat top center;
  background-size: cover;
  filter: brightness(2);
  opacity: 0.1;
  width: 100%;
  height: 800px;
  position: absolute;
  top: 0;
  z-index: 0;

  /* multiple fades using mask layers */
  -webkit-mask-image:
      /* bottom fade */
      linear-gradient(to bottom, black 40%, transparent 100%),
      /* top-left fade affecting only top 10% */
      linear-gradient(to bottom right, transparent 0%, black 60%);
  mask-image:
      linear-gradient(to bottom, black 40%, transparent 100%),
      linear-gradient(to bottom right, transparent 0%, black 60%);

  /* combine both masks using "intersect" (AND) */
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}
/* Slide IN */
.offcanvas.show {
    transform: translateX(0);
}

/* Slide OUT */
.offcanvas.hiding {
    transform: translateX(-100%);
}

/* Optional: support right-side offcanvas */
.offcanvas.offcanvas-end {
    transform: translateX(100%);
}
.offcanvas.offcanvas-end.show {
    transform: translateX(0);
}
.offcanvas.offcanvas-end.hiding {
    transform: translateX(100%);
}

.main-timeline {
  position: relative;
}

.main-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #6A70E4;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  animation: growLine 2s ease-out forwards;
  transform-origin: top;
}

@keyframes growLine {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline:nth-child(1) { animation-delay: 0.2s; }
.timeline:nth-child(2) { animation-delay: 0.4s; }
.timeline:nth-child(3) { animation-delay: 0.6s; }
.timeline:nth-child(4) { animation-delay: 0.8s; }
.timeline:nth-child(5) { animation-delay: 1s; }
.timeline:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px; /* Changed from -13px to -12.5px for perfect centering */
  background-color: #6A70E4;
  border: 5px solid #6A70E4;
  top: 30px; /* Adjusted to align with card content */
  border-radius: 50%;
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(106, 112, 228, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(106, 112, 228, 0);
  }
}

.left {
  padding: 0px 40px 20px 0px;
  left: 0;
}

.right {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

.left::before {
  content: " ";
  position: absolute;
  top: 33px; /* Adjusted to match dot position */
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
  opacity: 0;
  animation: fadeIn 0.3s ease-out 0.3s forwards;
}

.right::before {
  content: " ";
  position: absolute;
  top: 33px; /* Adjusted to match dot position */
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  opacity: 0;
  animation: fadeIn 0.3s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.right::after {
  left: -12.5px; /* Changed from -12px to -12.5px for perfect centering */
}

.card {
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}

@media screen and (max-width: 600px) {
  .main-timeline::after {
    left: 31px;
  }
  
  .timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .left::after, .right::after {
    left: 18.5px; /* Adjusted for mobile centering */
  }
  
  .left::before {
    right: auto;
  }

  .right {
    left: 0%;
  }
}
.accordion-container {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
    transition: all 1s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
   
}

.accordion-button {
    padding: 20px 25px;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    background: white;
}

.accordion-button:not(.collapsed) {
    color: #6A70E4;transition: color 2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(255, 255, 225, 0.1);;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 225, 0.5);
}

.accordion-button::after {
    background-image: none !important;
    content: "\f282"; /* Bootstrap Icons chevron-down */
    font-family: "bootstrap-icons";
    font-size: 1.2rem;
    color: #6c757d;
    transition: transform 1s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #6A70E4;
}

.accordion-body {
    padding: 20px 25px;
    color: #000;
    line-height: 1.6;
  
}
.accordion-collapse {
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-icon {
    margin-right: 12px;
    color: #6A70E4;
    font-size: 1.2rem;
}

.badge-custom {
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}
.glass-effect {
    background: linear-gradient(135deg, rgba(11, 13, 16, 0.8) 0%, rgba(106, 112, 228, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(35, 38, 45, 0.2), rgba(106, 112, 228, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@media (max-width: 576px) {
 .glass-effect 
  p { font-size: 10px; }
}
.progress {
    background: rgba(0,0,0,0.8); border:1px solid #222;
    height: 8px;
    margin-top: 15px;
    border-radius: 4px;
}

.list-group-item {
    border: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.status-icon {
    margin-right: 10px;
}

.image-preview {
    border-radius: 8px;
    margin-top: 15px;
}

/* Timer number containers need overflow hidden */
#days, #hours, #minutes, #seconds {
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.card-reveal-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 25px; /* rounded corners */
}

/* Thin gradient border using pseudo-element */
.card-reveal-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px; /* match wrapper radius */
    padding: 1px; /* thinner border */
    background: linear-gradient(135deg, #69d5ff, #9312cf);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.card-reveal {
    position: relative;
    transition: transform 0.4s ease-in-out;
    background: rgba(11,13,16, 0.15) !important; /* glass effect */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 24px; /* slightly smaller to fit inside gradient border */
    z-index: 10;
}

.card-reveal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card-reveal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 15;
color:#ffffff;
    background: rgba(106, 112, 228, 1) !important; /* glass effect */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px; /* slightly smaller to fit inside gradient border */
}

.card-reveal-wrapper:hover .card-reveal-content {
    transform: translateY(0);
}

/* Top-left icon slide to center on hover */
.card-reveal-wrapper .bi-file-earmark-check {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
    font-size: 2rem;
    z-index: 100;
    transition: left 0.4s ease-in-out, transform 0.4s ease-in-out;
    transform: none; /* start with no transform */
}

.card-reveal-wrapper:hover .bi-file-earmark-check {
    left: 50%; /* move horizontally to center */
    transform: translateX(-50%); /* center icon based on its width */
    color: white;
}
.card-img-top {
            height: 200px;
            object-fit: cover;
        }
/* Apply to all Bootstrap buttons */
/* Base transition for all buttons */
.btn {
  transition: background-color 300ms ease, color 300ms ease;
}

/* Gentle brighten on hover */
.btn-primary:hover {
  background-color: #6EB8F7; /* slightly brighter than default #7f34cd */
  border-color: #6EB8F7;
}

.btn-secondary:hover {
  background-color: #999999; /* slightly brighter than default #868686 */
  border-color: #999999;
}

.btn-success:hover {
  background-color: #28c73f; /* slightly brighter than default */
  border-color: #28c73f;
}

.animate-col {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Different animation directions */
.animate-col.from-left {
    transform: translateX(-100px);
}

.animate-col.from-right {
    transform: translateX(100px);
}

.animate-col.from-bottom {
    transform: translateY(100px);
}

/* Visible state when in viewport */
.animate-col.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Staggered animation delays for multiple columns */
.animate-col:nth-child(1) { transition-delay: 0.1s; }
.animate-col:nth-child(2) { transition-delay: 0.2s; }
.animate-col:nth-child(3) { transition-delay: 0.3s; }
.animate-col:nth-child(4) { transition-delay: 0.4s; }

.progress-milestones {
  position: relative;
  padding-bottom: 28px;
}
.progress-milestones .progress {
  overflow: visible;
}
.ms-marker {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ms-marker .ms-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}
.ms-marker.active .ms-line {
  background: #fff;
}
.ms-marker .ms-label {
  font-size: 11px;
  margin-top: 5px; font-weight:bold;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.ms-marker.active .ms-label {
  color: #fff;
  font-weight: 500;
}
.hashlock{width:150px}
/* Bar glow */
#animatedProgressBar {
  position: relative;
  overflow: hidden; /* keep this — clips the shimmer to the bar edge */
}

.bar-shimmer {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(169,144,246,0.5), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}
