/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

body {
  /* font-family: "Open Sans", sans-serif; */
  color: #000;
  font-size: 16px;
  height: 100%;
  /* width: 100%; */
  background-color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-family: "Jost", sans-serif; */
  font-weight: 400;
  font-style: normal;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

.main {
  height: 100vh;
  width: 100%;
  position: relative;
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(238, 26, 59, 0.9);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
  background: rgba(238, 26, 59, 1);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-down-btn i {
  font-size: 20px;
  animation: arrowBounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(3px);
  }
  60% {
    transform: translateY(1px);
  }
}
.header {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: background-color 0.5s ease-in-out;
}
.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}
.headerInner {
  display: flex;
  align-items: center;
}
.headerInner .logo img {
  width: 90px;
  transition: width 0.5s ease-in-out;
}

.commonBtn {
  color: #fff;
  padding: 12px 30px;
  background-color: #ee1a3b;
  border: 2px solid #ee1a3b;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(238, 26, 59, 0.3);
}

.commonBtn:hover {
  color: #ee1a3b;
  background-color: #fff;
  border-color: #ee1a3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 26, 59, 0.4);
  text-decoration: none;
}

.commonBtn:focus {
  outline: 2px solid #ee1a3b;
  outline-offset: 2px;
}

.btn-warning {
  background-color: #ee1a3b;
  border: 1px solid #ee1a3b;
  color: #fff;
}

.btn-warning:hover {
  background-color: #ee1a3b;
  border: 1px solid #fff;
  color: #fff;
}

.bannerMob {
  height: 100vh;
  width: 100%;
}
.bannerMob img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.customInputFile {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#custom-button {
  padding: 5px 10px;
  min-width: 55px;
  color: white;
  background-color: #ffc107;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

#custom-button:hover {
  background-color: #ffc107;
}

#custom-text {
  margin-left: 10px;
  /* font-family: sans-serif; */
  color: #aaa;
  white-space: nowrap;
}
/*************************************** MODAL CSS ************************************/
.modal-body {
  background-color: #fff;
  padding: 45px 40px;
  border-radius: 0;
  -webkit-box-shadow: 15px 15px 49px #000000a8;
  box-shadow: 15px 15px 49px #000000a8;
}

.modal-content {
  border-radius: 0;
}

.modal-body p {
  font-size: 13px;
}

.modal-content .close {
  width: 40px;
  height: 40px;
  /* background-color: #003421; */
  color: #000;
  position: absolute;
  right: 0;
  z-index: 9;
  font-size: 15px;
  opacity: 1;
  text-shadow: none;
  padding: 0px;
  /* filter: invert(1); */
}

form .col-12 {
  margin-bottom: 20px;
}

.modal h2 {
  color: #000;
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.modal h3 {
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding-bottom: 10px;
}

.error_msg {
  display: none;
}

.error {
  color: red;
  font-size: 12px;
  padding-top: 5px;
}

.form-control:focus,
.form-select:focus {
  border-color: #141a2a;
  -webkit-box-shadow: 0 0 0 0.1rem #141a2a;
  box-shadow: 0 0 0 0.1rem #141a2a;
}

.modal-dialog {
  max-width: 400px;
}

/*************************************** MODAL CSS ************************************/

.mainForm {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  gap: 30px;
}

.mainForm h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  padding-bottom: 50px;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #ee1a3b !important;
  border-color: #ee1a3b !important;
}
.visibleHidden {
  visibility: hidden !important;
}

.form-control,
.btn-warning {
  height: 40px;
  box-sizing: border-box;
}

.btn-warning {
  font-size: 18px;
  text-transform: uppercase;
}

.templateDivInner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.templateDivInner .container-fluid,
.templateDivInner .container-fluid .row {
  height: 100%;
}

.leftDiv {
  width: 47.5%;
}
.rightDiv {
  width: 52.5%;
  position: relative;
}

.userInfo {
  margin: 20px;
}

.confittie {
  inset: 0;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.userDetails {
  position: absolute;
  top: 58%;
  left: 6%;
  padding: 10px 10px;
  padding-left: 26px;
  border-left: 1px solid #fff;
  color: #fff;
  background-color: #000;
}

.userDetails h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

.userDetails h3 {
  font-weight: 500;
  font-size: 25px;
  margin: 0;
  line-height: 1;
}
.highlightSection {
  padding: 50px 0;
  text-align: center;
  background-color: #000;
}

.highlightSection h2 {
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  margin: 0;
}

.highlightSection h2 span {
  color: #fef200;
}
.form-label {
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}

.formSection {
  /* min-height: 100vh; */
  /* display: flex; */
  /* align-items: center; */
}

.bannerImg {
  height: 100vh;
  overflow: hidden;
}

.bannerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #ee1a3b;
  box-shadow: 0 0 0 0.2rem rgba(238, 26, 59, 0.25);
}

.video-option-card {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.video-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-option-card.active {
  border-color: #ee1a3b;
  box-shadow: 0 0 0 0.2rem rgba(238, 26, 59, 0.25);
}
.preview-note {
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}
/* Video Slider Styles */
.video-options {
  margin-top: 10px;
  position: relative;
  padding: 0 30px;
}

.swiper {
  width: 100%;
  height: 100%;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(238, 26, 59, 0.9);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(238, 26, 59, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
  color: #fff;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #0d6efd;
}

.swiper-pagination {
  /* margin-top: 10px; */
      bottom: 14px !important;
}
.video-thumbnail {
  height: 200px !important;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.video-thumbnail video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.video-option-details {
  padding: 15px;
  background: white;
}

.video-option-details .form-check {
  margin-bottom: 0;
}

.video-option-details .form-check-label {
  font-weight: 500;
  color: #333;
  cursor: pointer;
}
@media (max-width: 767px) {
  .headerInner .button a {
    padding: 8px 15px;
    font-size: 12px;
  }
  .main {
    /* background: url("../../assets/img/JK-MobileBanner.png") no-repeat #000; */
    background-size: 100% 100%;
    background-position: center center;
    height: auto;
    /* display: flex; */
    /* flex-direction: column; */
  }
  .headerInner .logo img {
    width: 50px;
  }
  .video {
    position: relative;
    /* margin: auto 0; */
    height: auto;
  }
  .video video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Scroll down button mobile responsiveness */
  .scroll-down-btn {
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
  
  .scroll-down-btn i {
    font-size: 16px;
  }
  
  /* Swiper navigation for mobile */
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
  
  .video-options {
    padding: 0 15px;
  }
  
  .video-thumbnail {
    height: auto !important;
  }
  .video-thumbnail video {
    width: 100% !important;
    height: 100% !important;
  }
  .mainForm {
    padding: 30px 20px;
  }
  
  .mainForm h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .userDetails {
    left: 6%;
    padding: 10px 10px;
    padding-left: 6px;
    top: 54%;
  }

  .userDetails h2 {
    font-size: 10px;
    margin-bottom: 0;
  }

  .userDetails h3 {
    font-size: 7px;
  }
  .buttonMobile {
    text-align: center;
    transform: translateY(10px);
  }
  .buttonMobile a {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
  }
  .header.scrolled .headerInner .logo img {
    width: 50px;
  }
  .highlightSection h2 {
    font-size: 22px;
  }
  .video iframe {
    width: 100%;
    height: fit-content;
    aspect-ratio: 16 / 9;
  }
  
  /* Form controls mobile responsiveness */
  .form-control,
  .form-select {
    font-size: 16px;
    padding: 12px;
  }
  
  .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .commonBtn {
    padding: 12px 20px;
    font-size: 16px;
    width: 80%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .userDetails {
    left: 6%;
    padding: 10px 10px;
    padding-left: 12px;
    top: 57%;
  }

  .userDetails h2 {
    font-size: 21px;
    margin-bottom: 0;
  }

  .userDetails h3 {
    font-size: 16px;
  }
  
  .mainForm {
    padding: 40px 30px;
  }
  
  .mainForm h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .highlightSection h2 {
    font-size: 26px;
  }
  
  /* Swiper navigation for tablet */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 15px;
  }
  
  .video-options {
    padding: 0 20px;
  }
  
  /* Form controls tablet responsiveness */
  .form-control,
  .form-select {
    font-size: 15px;
    padding: 10px;
  }
  
  .form-label {
    font-size: 15px;
    font-weight: 600;
  }
  
  .commonBtn {
    padding: 12px 25px;
    font-size: 15px;
  }
}
.swiper-wrapper{
  padding-bottom: 40px !important;
}
.mainForm{
  padding-top: 60px;
  padding-bottom: 60px;
}
.bg-black{
  background-color: #000 !important;
  color: #fff !important;
}
@media (min-width: 768px) {
  .video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}
@media (max-width: 767px) {
  .video-thumbnail {
    height: 205px !important;
  }
  .video-thumbnail video {
    object-fit: contain;
  }
}
