/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--opensans-regular);
}

:root {
  --theme-color: #074D9B;
  --blue-color:#063EE6;
  --black-color: #000000
  --opensans-regular: 'opensans-regular';
  --opensans-semibold: 'opensans-semibold';
  --poppins-bold: 'poppins-bold';
  --poppins-semi-bold: 'poppins-semi-bold';
  --poppins-regular: 'poppins-regular';
  --poppins-regular: 'poppins-light';
}

@font-face {
  font-family: "opensans-regular";
  src: url("../fonts/opensans-regular.woff2") format("woff2"), url("../fonts/opensans-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "opensans-semibold";
  src: url("../fonts/opensans-semibold.woff2") format("woff2"), url("../fonts/opensans-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/poppins-bold.woff2") format("woff2"), url("../fonts/poppins-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-semi-bold";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-regular";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppins-light";
  src: url("../fonts/Poppins-Light.ttf") format("truetype"), url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 84%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

.body-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.body-overlay.is-active {
  display: block;
}

.custom-border {
  border-right: 1px solid #dee2e6;
}

@media (max-width: 575px) {
  .custom-border {
    border-right: 0;
  }
}
.heading {
  font-size: 64px;
  font-family: var(--poppins-bold);
  line-height: 60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 540px) {
  .heading {
    font-size: 35px;
    line-height: 40px;
  }
}
.heading span {
  color: var(--theme-color);
  font-family: var(--poppins-bold);
}

.sub-heading {
  font-family: var(--opensans-semibold);
  color: #7697A0;
  font-size: 18px;
}
@media screen and (max-width: 540px) {
  .sub-heading {
    font-size: 14px;
  }
}

.theme-btn {
  text-decoration: none;
  border: 1px solid #727272;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--poppins-semi-bold);
  color: #5F5F5F;
}
.theme-btn.blue {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.cont-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--theme-color);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--theme-color) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  /* background slide */
}
.cont-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--theme-color);
  transition: width 0.4s ease;
  z-index: 0;
}
.cont-btn {
  /* Keep content above */
}
.cont-btn span, .cont-btn i {
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
  color: inherit !important; /* IMPORTANT */
}
.cont-btn i {
  font-size: 14px;
}
.cont-btn:hover {
  color: #fff !important;
}
.cont-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.cont-btn:hover span, .cont-btn:hover i {
  color: #fff !important; /* FORCE WHITE */
}
.cont-btn:hover i {
  animation: arrowMove 0.6s infinite alternate ease-in-out;
}

/* Arrow animation */
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
  }
}
.theme-btn.down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 6px; /* space between text & arrow */
}

.theme-btn.down .arrow {
  display: block;
  animation: bounce 1.5s infinite;
  position: absolute;
  top: 50px;
}

/* Optional animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: all 0.4s ease;
}

/* Sticky Header */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.5s ease;
  z-index: 99999;
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar {
  z-index: 9999;
  transition: all 0.6s ease;
}
@media (max-width: 540px) {
  .navbar {
    background-color: #FFFFFF;
  }
}
@media screen and (max-width: 991px) {
  .navbar .container {
    max-width: 100%;
    padding: 0;
  }
}
.navbar .navbar-brand {
  display: flex;
  justify-content: end;
  width: 20%;
  padding: 0;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-brand {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 30%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    width: 60%;
  }
}
.navbar .navbar-toggler {
  border: none;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    padding-right: 5%;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 20px;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: 0 10px;
  font-family: var(--opensans-semibold);
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: unset;
    padding: 10px 5%;
    margin: unset;
  }
}
.navbar .navbar-nav .nav-item .nav-link.cont-btn {
  border: 1px solid var(--theme-color);
  border-radius: 50px;
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}

.hmsec01 {
  position: relative;
  margin-top: 180px;
}
.hmsec01 .content {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 100px 50px;
}
@media (max-width: 540px) {
  .hmsec01 .content {
    padding: 50px 25px;
  }
}
.hmsec01 .carousel-indicators {
  position: unset;
}
.hmsec01 .carousel-indicators button {
  background-color: #d9d9d9;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
}
.hmsec01 .carousel-indicators button.active {
  background-color: var(--theme-color);
}
.hmsec01 .product-banner-content {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 100px 100px;
}
@media (max-width: 540px) {
  .hmsec01 .product-banner-content {
    padding: 40px 10px;
  }
}
.hmsec01 .product-banner-content .product-heading {
  font-size: 64px;
  font-family: var(--poppins-bold);
  padding-bottom: 50px;
}
@media (max-width: 540px) {
  .hmsec01 .product-banner-content .product-heading {
    font-size: 35px;
    padding-bottom: 15px;
  }
}
.hmsec01 .product-banner-content .product-heading span {
  color: var(--theme-color);
  font-family: var(--poppins-bold);
}
.hmsec01 .product-banner-content .product-sub-heading {
  font-size: 18px;
  font-family: var(--opensans-regular);
  color: #7697A0;
  font-weight: 600;
}
@media (max-width: 540px) {
  .hmsec01 .product-banner-content .product-sub-heading {
    font-size: 14px;
  }
}
.hmsec01 .about-content {
  background-color: var(--theme-color);
  border-radius: 20px;
  padding: 100px 100px;
  background-image: url(../images/about-texture-des.png);
  background-size: contain;
  background-position: -30px;
  background-repeat: no-repeat;
}
@media (max-width: 540px) {
  .hmsec01 .about-content {
    padding: 40px 10px;
  }
}
.hmsec01 .about-heading {
  font-size: 96px;
  color: #FFFFFF;
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .hmsec01 .about-heading {
    font-size: 45px;
    margin-bottom: 20px;
  }
}

.hmsec02 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 540px) {
  .hmsec02 {
    padding: 50px 0;
  }
}
.hmsec02 .heading-container {
  text-align: center;
}
.hmsec02 .heading-container h2 {
  font-size: 40px;
  font-family: var(--poppins-regular);
  font-weight: 400;
  letter-spacing: 5px;
}
@media (max-width: 540px) {
  .hmsec02 .heading-container h2 {
    font-size: 20px;
  }
}
.hmsec02 .heading-container h2 span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .hmsec02 .heading-container h2 span {
    font-size: 35px;
  }
}
.hmsec02 .about-text {
  font-size: 20px;
}
@media (max-width: 540px) {
  .hmsec02 .about-text {
    font-size: 14px;
  }
}
.hmsec02 .about-text {
  color: #5A5A5A;
  font-family: var(--opensans-regular);
}
.hmsec02 .charts_orb {
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
}
.hmsec02 .charts_orb .orb {
  padding-left: 100px;
}
.hmsec02 .charts_orb .orb .orb_label {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--opensans-semibold);
  line-height: 25px;
}
.hmsec02 .charts_orb .orb .orb_graphic {
  position: relative;
  background-color: #fff;
}
.hmsec02 .charts_orb .orb .orb_graphic .orb_value {
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-family: var(--poppins-bold);
  font-weight: bold;
}
.hmsec02 .charts_orb svg {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: -1;
}
.hmsec02 .charts_orb svg circle {
  transform: rotate(-40deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 380.16, 314.16;
  stroke-width: 5;
  fill: transparent;
  r: 60;
  cx: 70;
  cy: 70;
}
.hmsec02 .charts_orb svg circle.fill {
  stroke: #D3D3D3;
}
.hmsec02 .charts_orb svg circle.progress {
  stroke: var(--theme-color);
  transition: stroke-dashoffset 0.35s;
  stroke-dashoffset: 214.16;
  animation: circle-count 1.5s forwards;
  -webkit-animation: circle-count 1.5s forwards;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}
@keyframes circle-count {
  0% {
    stroke-dashoffset: 314.16;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.hmsec02 .btn-sec {
  margin-top: 100px;
  padding-left: 50px;
}
.hmsec02 .company-overview-holder {
  padding: 100px 100px 0px 100px;
}
@media (max-width: 540px) {
  .hmsec02 .company-overview-holder {
    padding: 10px 10px 0px 10px;
  }
}

.hmsec03 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 540px) {
  .hmsec03 {
    padding: 50px 0;
  }
}
.hmsec03 .heading {
  font-size: 64px;
  font-family: var(--poppins-light);
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 80px;
}
@media (max-width: 540px) {
  .hmsec03 .heading {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.hmsec03 .heading span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .hmsec03 .heading span {
    font-size: 35px;
  }
}
.hmsec03 .vision-content {
  padding: 40px 80px 80px 80px;
  background-color: #F3F6FF;
  position: relative;
  width: 100%;
}
.hmsec03 .content {
  padding: 40px 80px 80px 80px;
  background-color: #F3F6FF;
  position: relative;
  width: 100%;
  max-width: 1280px;
}
@media (max-width: 540px) {
  .hmsec03 .content {
    padding: 40px 10px 80px 10px;
  }
}
.hmsec03 .content p {
  font-size: 20px;
  color: #5A5A5A;
  font-family: var(--opensans-semibold);
  line-height: 40px;
  letter-spacing: 3px;
}
@media (max-width: 540px) {
  .hmsec03 .content p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
  }
}
.hmsec03 .content img {
  height: 200px;
  width: 200px;
  position: absolute;
  right: 20px;
  bottom: -100px;
}

.hmsec04 {
  position: relative;
  padding: 100px 0;
}
.hmsec04 .heading {
  font-size: 40px;
  font-family: var(--poppins-regular);
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 80px;
}
@media (max-width: 540px) {
  .hmsec04 .heading {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.hmsec04 .heading span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
.hmsec04 .floating-explore {
  position: absolute;
  right: 30px;
  top: 10px;
  transition: all 0.5s ease;
  z-index: 2;
}
.hmsec04 .floating-explore a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hmsec04 .floating-explore .explore-btn {
  background-color: #F2F1F1;
  color: #464646;
  padding: 6px 22px;
  font-family: var(--poppins-semi-bold);
  border-radius: 30px;
  transition: 0.3s ease;
  white-space: nowrap;
}
.hmsec04 .floating-explore svg {
  transition: 0.3s ease;
}
.hmsec04 .floating-explore svg path {
  fill: #5E5E5E;
}
.hmsec04 .carousel .carousel-inner {
  border: 1px solid #747474;
  border-radius: 50px;
  overflow: hidden;
}
.hmsec04 .carousel-indicators {
  position: unset;
  display: block;
  margin: 0;
}
.hmsec04 .carousel-indicators button {
  width: 100%;
  text-indent: unset;
  height: unset;
  text-align: left;
  margin: 0;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  opacity: 1;
  position: relative;
  background: transparent;
}
.hmsec04 .carousel-indicators button.active h5, .hmsec04 .carousel-indicators button:hover h5 {
  color: var(--theme-color) !important;
  transform: translateX(10px);
}
.hmsec04 .carousel-indicators button h5 {
  color: #7697A0;
  font-size: 54px;
  transition: all 0.6s ease;
  font-family: var(--poppins-light);
  margin-bottom: 0px;
  font-weight: 400;
  line-height: 1.2;
}
.hmsec04 {
  /* =========================
      1366px
  ========================== */
}
@media (max-width: 1366px) {
  .hmsec04 .carousel-indicators button h5 {
    font-size: 48px;
  }
  .hmsec04 .floating-explore {
    right: 10px;
  }
}
.hmsec04 {
  /* =========================
      1280px
  ========================== */
}
@media (max-width: 1280px) {
  .hmsec04 .heading {
    font-size: 34px;
  }
  .hmsec04 .heading span {
    font-size: 54px;
  }
  .hmsec04 .carousel-indicators button h5 {
    font-size: 42px;
  }
}
.hmsec04 {
  /* =========================
      1080px
  ========================== */
}
@media (max-width: 1080px) {
  .hmsec04 {
    padding: 80px 0;
  }
  .hmsec04 .heading {
    margin-bottom: 50px;
  }
  .hmsec04 .heading span {
    font-size: 46px;
  }
  .hmsec04 .carousel-indicators button h5 {
    font-size: 34px;
  }
  .hmsec04 .floating-explore {
    right: 0;
  }
  .hmsec04 .floating-explore .explore-btn {
    padding: 5px 18px;
    font-size: 14px;
  }
  .hmsec04 .carousel .carousel-inner {
    border-radius: 35px;
  }
}
.hmsec04 {
  /* =========================
      768px
  ========================== */
}
@media (max-width: 768px) {
  .hmsec04 {
    padding: 60px 0;
  }
  .hmsec04 .heading {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
  }
  .hmsec04 .heading span {
    font-size: 40px;
  }
  .hmsec04 .carousel-indicators {
    margin-bottom: 40px;
  }
  .hmsec04 .carousel-indicators button {
    text-align: center;
  }
  .hmsec04 .carousel-indicators button h5 {
    font-size: 28px;
  }
  .hmsec04 .floating-explore {
    position: relative;
    top: unset !important;
    right: unset;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .hmsec04 .carousel .carousel-inner {
    border-radius: 25px;
  }
}
.hmsec04 {
  /* =========================
      540px
  ========================== */
}
@media (max-width: 540px) {
  .hmsec04 {
    padding: 50px 0;
  }
  .hmsec04 .heading {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
  .hmsec04 .heading span {
    font-size: 32px;
  }
  .hmsec04 .carousel-indicators button h5 {
    font-size: 25px;
    line-height: 1.4;
  }
  .hmsec04 .floating-explore .explore-btn {
    font-size: 13px;
    padding: 5px 16px;
  }
  .hmsec04 .floating-explore svg {
    width: 7px;
  }
  .hmsec04 .carousel .carousel-inner {
    border-radius: 20px;
  }
}
.hmsec04 {
  /* =========================
      375px
  ========================== */
}
@media (max-width: 375px) {
  .hmsec04 .heading {
    font-size: 18px;
  }
  .hmsec04 .heading span {
    font-size: 26px;
  }
  .hmsec04 .carousel-indicators button h5 {
    font-size: 18px;
  }
  .hmsec04 .floating-explore .explore-btn {
    padding: 4px 14px;
    font-size: 12px;
  }
  .hmsec04 .floating-explore a {
    gap: 6px;
  }
  .hmsec04 .carousel .carousel-inner {
    border-radius: 15px;
  }
}
.hmsec04 .our-mission-holder {
  padding: 0px 250px;
}
@media (max-width: 540px) {
  .hmsec04 .our-mission-holder {
    padding: 0px 0px;
  }
}
.hmsec04 .our-mission-holder p {
  font-family: var(--opensans-regular);
  font-size: 20px;
  color: #5A5A5A;
}
@media (max-width: 540px) {
  .hmsec04 .our-mission-holder p {
    font-size: 16px;
  }
}
.hmsec04 .our-mission-holder .video-holder {
  padding: 20px 0px;
  background-color: #FFFFFF;
}
.hmsec04 .our-mission-holder .video-holder .image-holder {
  text-align: center;
}
.hmsec04 .our-mission-holder .video-holder .image-holder img {
  text-align: center;
  height: 50px;
}
.hmsec04 .our-mission-holder .content-holder .video-play-now-btn-holder {
  height: 230px;
  width: 100%;
  background: linear-gradient(135deg, #184EFF 0%, #0B1023 35%, #050008 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hmsec04 .our-mission-holder .content-holder .video-play-now-btn-holder .play-now-btn {
  background: #271F22;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 50px;
  color: #fff;
  font-size: 14px;
}
.hmsec04 .our-mission-holder .content-holder.cont {
  z-index: 99;
}

.hmsec05 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 540px) {
  .hmsec05 {
    padding: 50px 0px;
  }
}
.hmsec05 .heading {
  font-size: 40px;
  font-family: var(--poppins-regular);
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 80px;
}
@media (max-width: 540px) {
  .hmsec05 .heading {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.hmsec05 .heading span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .hmsec05 .heading span {
    font-size: 30px;
  }
}
.hmsec05 .heading .text-des {
  font-family: var(--poppins-regular);
  font-weight: 400;
}
.hmsec05 .content-container .content-holder {
  background-image: url("../images/about/Edge-cut-design.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 140px;
}
@media (max-width: 540px) {
  .hmsec05 .content-container .content-holder {
    padding: 10px;
  }
}
.hmsec05 .content-container .content-holder h4 {
  color: #FFFFFF;
  font-family: var(--poppins-regular);
}
@media (max-width: 540px) {
  .hmsec05 .content-container .content-holder h4 {
    margin-bottom: 15px;
  }
}
.hmsec05 .content-container .content-holder p {
  color: #FFFFFF;
  font-family: var(--poppins-regular);
  line-height: 20px;
  font-weight: 300;
  opacity: 80%;
}
@media (max-width: 540px) {
  .hmsec05 .content-container .content-holder p {
    font-size: 14px;
  }
}
.hmsec05 .content-container .image-holde {
  text-align: center;
}
.hmsec05 .content-container .image-holde img {
  height: 350px;
  width: auto;
}
@media (max-width: 540px) {
  .hmsec05 .content-container .image-holde img {
    margin-top: 50px;
    height: auto;
  }
}
.hmsec05 .item {
  transition: all 0.6s ease;
}
.hmsec05 .item:hover {
  transform: scale(1.1);
}
.hmsec05 .item .img {
  border-radius: 20px;
  overflow: hidden;
}
.hmsec05 .item .txt {
  padding: 10px;
  font-family: var(--opensans-semibold);
}
.hmsec05 .item .txt .small {
  font-size: 12px;
  color: #7697A0;
}

.hmsec06 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/home/Home-etheme-sec.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 100px;
}
.hmsec06 .heading {
  font-size: 64px;
  font-family: var(--poppins-regular);
  font-weight: 500;
}
@media (max-width: 540px) {
  .hmsec06 .heading {
    font-size: 27px;
  }
}
.hmsec06 p {
  font-size: 20px;
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 540px) {
  .hmsec06 p {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }
}
.hmsec06 .heading-chhose {
  font-size: 64px;
  font-family: var(--poppins-regular);
}
.hmsec06 .heading-chhose span {
  color: #fff;
}
.hmsec06 ul {
  padding-left: 0;
  margin-bottom: 0;
}
.hmsec06 ul li {
  margin: 10px 0;
}

#thank-you {
  background-color: #000;
  height: 100vh;
  display: flex;
  align-items: center;
}
#thank-you h3 {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
  color: #fff;
}
#thank-you p {
  color: #fff;
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: var(--theme-color);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
.product-card-section .product-card-section-container {
  padding: 100px 20px;
}
.product-card-section .product-card-section-container .heading-container {
  text-align: center;
}
.product-card-section .product-card-section-container .heading-container h2 {
  font-size: 40px;
  font-family: var(--poppins-regular);
  font-weight: 400;
  letter-spacing: 5px;
}
@media (max-width: 540px) {
  .product-card-section .product-card-section-container .heading-container h2 {
    font-size: 20px;
  }
}
.product-card-section .product-card-section-container .heading-container h2 span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .product-card-section .product-card-section-container .heading-container h2 span {
    font-size: 35px;
  }
}
.product-card-section .product-card-section-container .product-card-holder a {
  text-decoration: none;
}
.product-card-section .product-card-section-container .product-card-holder .card {
  border: 1px solid #E0E0E0;
  border-radius: 0px;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 2000px and above */
}
@media (min-width: 2000px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 700px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1920px */
}
@media (max-width: 1920px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 600px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1680px */
}
@media (max-width: 1680px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 550px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1600px */
}
@media (max-width: 1600px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 520px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1440px */
}
@media (max-width: 1440px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 480px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1366px */
}
@media (max-width: 1366px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 440px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1280px */
}
@media (max-width: 1280px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 400px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 1080px */
}
@media (max-width: 1080px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 360px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 992px */
}
@media (max-width: 992px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 320px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 768px */
}
@media (max-width: 768px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 280px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 540px */
}
@media (max-width: 540px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 240px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 480px */
}
@media (max-width: 480px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 220px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
  /* 375px */
}
@media (max-width: 375px) {
  .product-card-section .product-card-section-container .product-card-holder .card .card-body .image-holder {
    height: 200px;
  }
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .content-holder {
  padding: 0px;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .content-holder ul {
  padding: 0px;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .content-holder ul li {
  display: inline-block;
  list-style: none;
}
.product-card-section .product-card-section-container .product-card-holder .card .card-body .content-holder .product-name {
  font-size: 20px;
  font-family: var(--poppins-regular);
}

.contact-us-section {
  position: relative;
  margin-top: 180px;
  margin-bottom: 200px;
}
.contact-us-section .contact-us-section-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-image: url(../images/contact-texture-des.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
}
@media (max-width: 540px) {
  .contact-us-section .contact-us-section-container::after {
    top: 30%;
    width: 100%;
  }
}
.contact-us-section .contact-us-section-container .contact-us-section-holder {
  padding: 100px 100px;
}
@media (max-width: 540px) {
  .contact-us-section .contact-us-section-container .contact-us-section-holder {
    padding: 50px 0px;
  }
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-us-section-title {
  font-size: 44px;
  margin-bottom: 60px;
  font-family: var(--poppins-bold);
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-us-section-title .text-design {
  color: var(--theme-color);
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .form-group {
  margin-top: 20px;
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .input {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #5a5a5a;
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container {
  background-color: var(--blue-color);
  padding: 50px 20px;
}
@media (max-width: 540px) {
  .contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container {
    margin-top: 50px;
  }
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .card-one-middle {
  position: relative;
}
@media (max-width: 540px) {
  .contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .card-one-middle:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #e4e4e4;
    top: -25px;
  }
  .contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .card-one-middle:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #e4e4e4;
    bottom: -25px;
  }
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .content-holder {
  padding-left: 20px;
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .content-holder p {
  color: #FFFFFF;
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .content-holder p a {
  color: #FFFFFF;
  text-decoration: none;
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container .c-heading {
  font-size: 25px;
  font-family: var(--opensans-semibold);
}
.contact-us-section .contact-us-section-container .contact-us-section-holder .contact-details-container img {
  height: 60px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border: 2px solid #074D9B;
  border-radius: 50px;
  background: transparent;
  color: #074D9B;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  /* Smooth width expand */
  width: 200px;
  /* SVG */
}
.submit-btn svg {
  transition: 0.3s ease;
}
.submit-btn svg path {
  stroke: #074D9B;
  transition: 0.3s ease;
}
.submit-btn {
  /* Sliding Background */
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #074D9B;
  transition: width 0.4s ease;
  z-index: 0;
}
.submit-btn span, .submit-btn svg {
  position: relative;
  z-index: 1;
}
.submit-btn {
  /* Hover State */
}
.submit-btn:hover {
  color: #fff;
  width: 240px; /* expand */
}
.submit-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.submit-btn:hover svg path {
  stroke: #fff;
}
.submit-btn:hover {
  /* Arrow animation trigger */
}
.submit-btn:hover svg {
  animation: arrowMove 0.6s infinite alternate ease-in-out;
}

/* Arrow left-right animation */
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
  }
}
footer {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  padding: 50px 0;
}
footer p {
  margin-bottom: 0;
}
footer .logo-container img {
  width: 100%;
  max-width: 200px;
}
footer ul {
  padding: 0px;
  margin-top: 20px;
}
footer ul li {
  list-style: none;
  margin-bottom: 10px;
}
footer ul li a {
  text-decoration: none;
  color: #777777;
  font-weight: 500;
}
footer .email {
  margin-top: 20px;
}
footer .email a {
  color: #777777;
  text-decoration: none;
  font-weight: 500;
}
footer .address .address-p {
  color: #777777;
  font-weight: 500;
}
footer .number-holder a {
  color: #777777;
  text-decoration: none;
  font-weight: 500;
}
footer .sub-head {
  color: #505050;
}
footer .heading-footer {
  font-size: 20px;
  font-family: var(--opensans-semibold);
  color: #074D9B;
  font-weight: 600;
}
footer .Social-media-container ul li {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
  margin-top: 50px;
}
footer .Social-media-container ul li a svg {
  width: 20px;
  height: 20px;
  fill: #777777;
  transition: all 0.3s ease;
}
footer .copyrights-holder {
  margin-top: 50px;
  text-align: center;
}
footer .copyrights-holder p {
  color: #777777;
  font-weight: 500;
}

.absec03 {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 540px) {
  .absec03 {
    padding: 0px 0px;
  }
}
.absec03 .heading {
  font-size: 64px;
  font-family: var(--poppins-light);
  font-weight: 300;
  letter-spacing: 5px;
  margin-bottom: 80px;
}
@media (max-width: 540px) {
  .absec03 .heading {
    font-size: 20px;
  }
}
.absec03 .heading span {
  font-size: 64px;
  color: var(--black-color);
  font-family: var(--poppins-bold);
}
@media (max-width: 540px) {
  .absec03 .heading span {
    font-size: 35px;
  }
}
.absec03 .vision-content {
  padding: 40px 60px 50px 80px;
  background-color: #F3F6FF;
  position: relative;
  width: 100%;
}
@media (max-width: 540px) {
  .absec03 .vision-content {
    padding: 40px 20px 40px 20px;
  }
}
.absec03 .vision-content p {
  font-size: 18px;
  color: #5A5A5A;
  font-family: var(--opensans-regular);
  font-weight: 400;
}
@media (max-width: 540px) {
  .absec03 .vision-content p {
    font-size: 14px;
    margin-top: 30px;
  }
}
.absec03 .vision-content img {
  width: 100%;
}

.custom-placeholder {
  position: relative;
}

.custom-placeholder .input {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}

.custom-field .input {
  width: 100%;
  position: relative;
  background: transparent;
}

.fake-placeholder {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s;
  z-index: 3;
}

.fake-placeholder span {
  color: red;
}

/* Hide on focus */
.input:focus + .fake-placeholder {
  opacity: 0;
}

/* Hide after typing */
.input:not(:-moz-placeholder) + .fake-placeholder {
  opacity: 0;
}
.input:not(:placeholder-shown) + .fake-placeholder {
  opacity: 0;
}

.textarea-placeholder {
  top: 20px;
  transform: none;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 15px;
}/*# sourceMappingURL=style.css.map */