/* Footer legal links: ensure visible on dark background */
footer a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: underline;
  transition: color 0.2s;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Feature carousel: ensure controls/indicators are visible */
#featuresCarousel .carousel-control-prev,
#featuresCarousel .carousel-control-next {
  opacity: 1;
}

#featuresCarousel .carousel-control-prev-icon,
#featuresCarousel .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  background-size: 55% 55%;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

#featuresCarousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
}

#featuresCarousel .carousel-indicators .active {
  background-color: rgba(255, 255, 255, 0.95);
}
/* Responsive countdown: fit all units on one screen */
@media (max-width: 768px) {
  .wsize1 {
    padding: 10px 2vw;
    max-width: 98vw;
  }
  .flex-w.flex-c-m.cd100.wsize1 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 0 10px 0;
  }
  .flex-col-c-m.size2.bor1 {
    width: 70px;
    height: 70px;
    min-width: 60px;
    min-height: 60px;
    margin: 4px 4px 8px 4px;
    padding: 0;
  }
  .l1-txt3 {
    font-size: 20px;
  }
  .s1-txt2 {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .flex-col-c-m.size2.bor1 {
    width: 48vw;
    max-width: 90px;
    min-width: 56px;
    height: 56px;
    min-height: 48px;
    margin: 2vw 2vw 8px 2vw;
    padding: 0;
  }
  .l1-txt3 {
    font-size: 16px;
  }
  .s1-txt2 {
    font-size: 7px;
  }
  .wsize1 {
    padding: 6px 1vw;
  }
}
/*------------------------------------------------------------------
Project:  ComingSoon
Version:  
Last change:  
Assigned to:  Bach Le
Primary use:  
-------------------------------------------------------------------*/



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Lato-Regular;
  src: url('../fonts/Lato/Lato-Regular.ttf'); 
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Now you can use them in your styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

p, body, span, li {
    font-family: 'Open Sans', sans-serif;
}




/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/
/*---------------------------------------------*/
.container {max-width: 1200px;}



/*//////////////////////////////////////////////////////////////////
[ Form ]*/

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  max-width: 100%;
  width: 490px;
  z-index: 1;
}

.input100 {
  display: block;
  width: 100%;
  background: #fff;
  height: 50px;
  padding: 0 25px;
}

.focus-input100 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.6);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 0px;
  padding: 5px 30px 6px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/

/*==================================================================
[ Color ]*/
.cl0 {color: #fff;}




/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/

.s1-txt1 {
  font-family: Poppins-Regular;
  font-size: 12px;
  color: #e5e5e5;
  line-height: 1.333333;
}

.s1-txt2 {
  font-family: Poppins-Regular;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}



/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
.m1-txt1 {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #11816A;
  line-height: 1.333333;
}

.m1-txt2 {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.333333;
}


/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.l1-txt1 {
  font-family: Poppins-Regular;
  font-size: 36px;
  color: #fff;
  line-height: 1.333333;
}

.l1-txt2 {
  font-family: Poppins-Bold;
  font-size: 36px;
  color: #fff;
  line-height: 1.333333;
}

.l1-txt3 {
  font-family: Poppins-Bold;
  font-size: 40px;
  color: #fff;
  line-height: 1;
}

/*==================================================================
   SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE
==================================================================*/
/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size1 {
  width: 100%;
  min-height: 100vh;
}

.size2 {
  width: 137px;
  height: 137px;
}

.size3 {
  min-width: 170px;
  height: 50px;
}

.size4 {
  width: 36px;
  height: 36px;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.wsize1 {
  max-width: 700px;
}



/*//////////////////////////////////////////////////////////////////
[ Height ]*/




/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg0 {background-color: #fff;}

.bg-img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}




/*//////////////////////////////////////////////////////////////////
[ Border ]*/
.bor1 {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}




/*==================================================================
   WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE  
==================================================================*/
.where1 {
  margin: 0 5px 20px 5px;
}



/*==================================================================
 HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW 
==================================================================*/
.placeholder0::-webkit-input-placeholder { color: #999999;}
.placeholder0:-moz-placeholder { color: #999999;}
.placeholder0::-moz-placeholder { color: #999999;}
.placeholder0:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
.overlay1 {
  position: relative;
  z-index: 1;
}
.overlay1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #023668;
  background: -webkit-linear-gradient(bottom, #118169, #023668);
  background: -o-linear-gradient(bottom, #118169, #023668);
  background: -moz-linear-gradient(bottom, #118169, #023668);
  background: linear-gradient(bottom, #118169, #023668);
  opacity: 0.9;
}

/*---------------------------------------------*/
.how-btn1 {
  background-color: #11816A;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}

.how-btn1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #023668;
  background: -webkit-linear-gradient(top, #118169, #023668);
  background: -o-linear-gradient(top, #118169, #023668);
  background: -moz-linear-gradient(top, #118169, #023668);
  background: linear-gradient(top, #118169, #023668);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.how-btn1:hover {
  background-color: transparent;
}

.how-btn1:hover:before {
  opacity: 1;
}

/*---------------------------------------------*/
.wrappic1 {
  display: block;
  flex-grow: 1;
}

.wrappic1 img {
  max-width: 100%;
}

/*---------------------------------------------*/
.how-social {
  color: #999999;
  font-size: 18px;

  background-color: #fff;
  border-radius: 50%;
}

.how-social:hover {
  background: -webkit-linear-gradient(top, #118169, #023668);
  background: -o-linear-gradient(top, #118169, #023668);
  background: -moz-linear-gradient(top, #118169, #023668);
  background: linear-gradient(top, #118169, #023668);
  color: #fff;
}


/*//////////////////////////////////////////////////////////////////
[ Pseudo ]*/

/*------------------------------------------------------------------
[ Focus ]*/
.focus-in0:focus::-webkit-input-placeholder { color:transparent; }
.focus-in0:focus:-moz-placeholder { color:transparent; }
.focus-in0:focus::-moz-placeholder { color:transparent; }
.focus-in0:focus:-ms-input-placeholder { color:transparent; }


/*------------------------------------------------------------------
[ Hover ]*/
.hov-cl0:hover {color: #fff;}
.hov-bg0:hover {background-color: #fff;}

/*---------------------------------------------*/
#logo-img{
  width: 250px;
  height: 80px;
}






/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/


/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media (max-width: 1200px) {
  .m-0-xl {margin: 0;}
  .m-lr-0-xl {margin-left: 0; margin-right: 0;}
  .m-lr-15-xl {margin-left: 15px; margin-right: 15px;}
  .m-l-0-xl {margin-left: 0;}
  .m-r-0-xl {margin-right: 0;}
  .m-l-15-xl {margin-left: 15px;}
  .m-r-15-xl {margin-right: 15px;}

  .p-0-xl {padding: 0;}
  .p-lr-0-xl {padding-left: 0; padding-right: 0;}
  .p-lr-15-xl {padding-left: 15px; padding-right: 15px;}
  .p-l-0-xl {padding-left: 0;}
  .p-r-0-xl {padding-right: 0;}
  .p-l-15-xl {padding-left: 15px;}
  .p-r-15-xl {padding-right: 15px;}

  .w-full-xl {width: 100%;}

  /*---------------------------------------------*/
  #logo-img{
    width: 250px;
    height: 80px;
  }

}


/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media (max-width: 992px) {
  .m-0-lg {margin: 0;}
  .m-lr-0-lg {margin-left: 0; margin-right: 0;}
  .m-lr-15-lg {margin-left: 15px; margin-right: 15px;}
  .m-l-0-lg {margin-left: 0;}
  .m-r-0-lg {margin-right: 0;}
  .m-l-15-lg {margin-left: 15px;}
  .m-r-15-lg {margin-right: 15px;}

  .p-0-lg {padding: 0;}
  .p-lr-0-lg {padding-left: 0; padding-right: 0;}
  .p-lr-15-lg {padding-left: 15px; padding-right: 15px;}
  .p-l-0-lg {padding-left: 0;}
  .p-r-0-lg{padding-right: 0;}
  .p-l-15-lg {padding-left: 15px;}
  .p-r-15-lg {padding-right: 15px;}

  .w-full-lg {width: 100%;}

  /*---------------------------------------------*/
  #logo-img{
    width: 250px;
    height: 80px;
  }


}


/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media (max-width: 768px) {
  .m-0-md {margin: 0;}
  .m-lr-0-md {margin-left: 0; margin-right: 0;}
  .m-lr-15-md {margin-left: 15px; margin-right: 15px;}
  .m-l-0-md {margin-left: 0;}
  .m-r-0-md {margin-right: 0;}
  .m-l-15-md {margin-left: 15px;}
  .m-r-15-md {margin-right: 15px;}

  .p-0-md {padding: 0;}
  .p-lr-0-md {padding-left: 0; padding-right: 0;}
  .p-lr-15-md {padding-left: 15px; padding-right: 15px;}
  .p-l-0-md {padding-left: 0;}
  .p-r-0-md{padding-right: 0;}
  .p-l-15-md {padding-left: 15px;}
  .p-r-15-md {padding-right: 15px;}

  .w-full-md {width: 100%;}
  /*---------------------------------------------*/
  #logo-img{
    width: 250px;
    height: 80px;
  }

}


/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media (max-width: 576px) {
  .m-0-sm {margin: 0;}
  .m-lr-0-sm {margin-left: 0; margin-right: 0;}
  .m-lr-15-sm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-sm {margin-left: 0;}
  .m-r-0-sm {margin-right: 0;}
  .m-l-15-sm {margin-left: 15px;}
  .m-r-15-sm {margin-right: 15px;}

  .p-0-sm {padding: 0;}
  .p-lr-0-sm {padding-left: 0; padding-right: 0;}
  .p-lr-15-sm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-sm {padding-left: 0;}
  .p-r-0-sm{padding-right: 0;}
  .p-l-15-sm {padding-left: 15px;}
  .p-r-15-sm {padding-right: 15px;}

  .w-full-sm {width: 100%;}

  /*---------------------------------------------*/
  .respon1 {
    padding: 0 0px 65px 5px;
  }
  #logo-img{
    width: 220px;
    height: 80px;
  }
  
}


/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media (max-width: 480px) {
  .m-0-ssm {margin: 0;}
  .m-lr-0-ssm {margin-left: 0; margin-right: 0;}
  .m-lr-15-ssm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-ssm {margin-left: 0;}
  .m-r-0-ssm {margin-right: 0;}
  .m-l-15-ssm {margin-left: 15px;}
  .m-r-15-ssm {margin-right: 15px;}

  .p-0-ssm {padding: 0;}
  .p-lr-0-ssm {padding-left: 0; padding-right: 0;}
  .p-lr-15-ssm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-ssm {padding-left: 0;}
  .p-r-0-ssm{padding-right: 0;}
  .p-l-15-ssm {padding-left: 15px;}
  .p-r-15-ssm {padding-right: 15px;}

  .w-full-ssm {width: 100%;}
  /*---------------------------------------------*/
  #logo-img{
    width: 120px;
    height: 40px;
  }

  .size2 {
    width: 70px;
    height: 70px;
  }

  .l1-txt3 {
    font-family: Poppins-Bold;
    font-size: 24px;
    color: #fff;
    line-height: 1;
  } 

  .l1-txt2 {
    font-family: Poppins-Bold;
    font-size: 23px;
    color: #fff;
    line-height: 1.333333;
  }

  .s1-txt2 {
    font-family: Poppins-Regular;
    font-size: 8px;
    color: #fff;
    line-height: 1;
  }

  .l1-txt1 {
    font-family: Poppins-Regular;
    font-size: 23px;
    color: #fff;
    line-height: 1.333333;
  }

  .input100 {
    display: block;
    width: 100%;
    background: #fff;
    height: 37px;
    padding: 0 25px;
  }

  .size4 {
    width: 28px;
    height: 28px;
  }

}

/* =========================
   PIQUORA THEME OVERRIDES
   Colors: brandA #11816A, brandB #52C2AB, navy #023668
   Gradient: linear-gradient(90deg, #52C2AB, #11816A)
   ========================= */

:root{
  --piq-brandA:#11816A;
  --piq-brandB:#52C2AB;
  --piq-navy:#023668;
  --piq-white:#ffffff;

  --piq-surface: rgba(255,255,255,0.10);
  --piq-surface2: rgba(255,255,255,0.14);
  --piq-border: rgba(255,255,255,0.20);

  --piq-shadow: 0 18px 60px rgba(2,54,104,0.35);
  --piq-shadow-soft: 0 10px 30px rgba(2,54,104,0.22);

  --piq-grad: linear-gradient(90deg, var(--piq-brandB), var(--piq-brandA));
}

/* Make background feel premium */
.overlay1::before{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(82,194,171,0.35), transparent 55%),
              radial-gradient(900px 500px at 80% 30%, rgba(17,129,106,0.25), transparent 60%),
              linear-gradient(180deg, rgba(2,54,104,0.92), rgba(2,54,104,0.78));
  opacity: 1;
}

/* Header: logo + socials */
.respon1{
  /* padding-bottom: 120px !important; */
}

.how-social{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 18px rgba(2,54,104,0.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.how-social:hover{
  transform: translateY(-2px);
  background: var(--piq-grad);
  color: #fff;
  box-shadow: 0 14px 28px rgba(2,54,104,0.30);
}

/* Hero headline */
.l1-txt1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.12;
  /* text-shadow: 0 10px 40px rgba(0,0,0,0.30); */
}
.l1-txt2{
  background: var(--piq-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Make the main content area look like a glass card */
.wsize1{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 26px 18px;
  box-shadow: var(--piq-shadow-soft);
  backdrop-filter: blur(10px);
      margin-top: 10px;
}

/* Paragraph text */
.s1-txt1{
  opacity: .92;
  line-height: 1.55;
}

/* Input + Button modern styling */
.wrap-input100{
  width: min(540px, 92vw);
}
.input100{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 30px rgba(2,54,104,0.16);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.input100:focus{
  outline: none;
  border-color: rgba(82,194,171,0.75);
  box-shadow: 0 18px 45px rgba(2,54,104,0.24);
  transform: translateY(-1px);
}

/* Primary button */
.how-btn1{
  border-radius: 14px;
  background: var(--piq-grad);
  box-shadow: 0 14px 35px rgba(2,54,104,0.25);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
}
.how-btn1:hover{
  background: var(--piq-grad);
  transform: translateY(-1px);
}

/* Countdown circles -> cards */
.bor1{
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(2,54,104,0.22);
}
