/********************* HOME STYLE *********************/
.home-bnr-video {
  position: relative;
  width: 100%;
  height: 87vh;
  overflow: hidden;
  background-image: url("../assets/images/home_bnr.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

.home-bnr-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(68 52 0 / 44%), rgb(45 25 0 / 80%));
  z-index: 2;
  transition: 0.3s ease;
}

.home-bnr-video video{
  object-fit: cover;
}

.home-bnr-content {
  position: absolute;
  top: 40%;
  z-index: 3;
}

.home-stagger-heading-top span {
  opacity: 0;
  transform: scale(0.6);
  animation: zoomIn 0.6s ease-out forwards;
}

/* stagger delay */
.home-stagger-heading-top span:nth-child(1) {
  animation-delay: 0.2s;
}
.home-stagger-heading-top span:nth-child(2) {
  animation-delay: 0.5s;
}
.home-stagger-heading-top span:nth-child(3) {
  animation-delay: 0.8s;
}

.home-stagger-heading-bottom span {
    
  opacity: 0;
  transform: scale(0.6);
  animation: zoomIn 0.6s ease-out forwards;
}

/* stagger delay */
.home-stagger-heading-bottom span:nth-child(1) {
  animation-delay: 1.1s;
}
.home-stagger-heading-bottom span:nth-child(2) {
  animation-delay: 1.4s;
}
.home-stagger-heading-bottom span:nth-child(3) {
  animation-delay: 1.7s;
}

/* zoom animation */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.home-pricing-plan {
  position: relative;
  margin-top: 100px;
  background: linear-gradient(
      180deg,
      rgba(210, 160, 0, 0.65),
      rgba(140, 80, 0, 0.65)
    ),
    url("../assets/images/home-pricing-bg.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.home-pricing-plan > .container {
  position: relative;
  z-index: 2;
}

.home-pricing-features li {
  list-style: none;
  line-height: 3.5;
}

/********************* ABOUT PAGE STYLE *********************/
.about-value-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-left: 4px solid var(--primary-dark-color);
  transition: 0.3s ease;
}

.about-value-item:hover {
  transform: translateX(10px);
  transition: 0.3s ease;
}

/********************* CONTACT PAGE STYLE *********************/

/* Contact form card */
.contact-form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.contact-form-card .form-label {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.contact-form-card .form-control {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white-color);
  border-radius: 4px;
  padding: 10px 12px;
}

.contact-form-card .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-dark-color);
  box-shadow: 0 0 0 0.2rem rgba(255,191,0,0.08);
  background: rgba(255,255,255,0.02);
  color: var(--white-color);
  outline: none;
}

.contact-form-card .text-muted {
  color: rgba(255,255,255,0.6) !important;
}

.contact-form-card .global-prime-btn-outline {
  border-color: var(--primary-dark-color);
  color: var(--white-color);
}
.contact-form-card .global-prime-btn-outline:hover {
  background: var(--primary-dark-color);
  color: #fff;
}

/**************************** GALLERY IMG CARD ************************/
.gallery-img-card:hover::after {
  background: none !important;
}