/* ------------------------------------------------
  Project:   Reincon - Construction WordPress Theme
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Text color
  4. Background color
  5. Banner Slider
  6. List Icon
  7. Contact Form
  8. Extra
  9. Responsive Css
------------------------*/



:root {
  --themeht-primary-color: #fcdc31;
  --themeht-secondary-color: #041c40;
  --themeht-text-color: #05152d;
  --themeht-body-color: #777777;
  --themeht-white-color: #ffffff;
  --themeht-rgba-color: rgba(255, 255, 255, 0.9);
  --themeht-bg-dark-color: #000000;
  --themeht-bg-light-color: #f9f9f9;
  --themeht-border-light-color: #cfcfcf;
  --themeht-border-dark-color: #1c1c1c;
  --themeht-typography-body-font-family: "DM Sans", sans-serif;
  --themeht-typography-secondary-font-family: "Wix Madefor Display", sans-serif;
}

/* ------------------------
    General
------------------------*/

body {
  scroll-behavior: smooth;
  font-family: var(--themeht-typography-body-font-family);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: var(--themeht-body-color);
  overflow-x: hidden;
}

.page-wrapper {
  overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 20px;
  color: var(--themeht-text-color);
  font-family: var(--themeht-typography-secondary-font-family);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 70px;
  font-style: normal;
  line-height: 80px;
  font-weight: 500;
}

h2 {
  font-size: 54px;
  font-style: normal;
  line-height: 64px;
  font-weight: 500;
  position: relative;
}

h3 {
  font-size: 36px;
  font-style: normal;
  line-height: 46px;
  font-weight: 600;
}

h4 {
  font-size: 26px;
  font-style: normal;
  line-height: 36px;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 34px;
  font-weight: 600;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 30px;
  font-weight: 600;
}

ul {
  margin-left: 0;
}

.z-index-0 {
  z-index: 0;
  position: relative;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

section {
  padding: 120px 0;
  position: relative;
}

label {
  display: inline-block;
  font-weight: 500;
  color: var(--themeht-text-color);
  font-size: 14px;
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
  color: var(--themeht-primary-color) !important;
}

.text-black {
  color: var(--themeht-text-color) !important;
}

.text-grey {
  color: var(--themeht-body-color);
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
  background-color: var(--themeht-white-color);
}

.primary-bg {
  background-color: var(--themeht-primary-color);
}

.secondary-bg {
  background-color: var(--themeht-secondary-color);
}

.light-bg {
  background-color: var(--themeht-bg-light-color);
}

.dark-bg {
  background-color: var(--themeht-bg-dark-color);
}

.border-light {
  border-color: var(--themeht-border-light-color) !important;
}

/* ------------------------
    Cursor
------------------------*/
#magic-cursor {
  position: absolute;
  display: none;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
  display: block;
}

#ball {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--themeht-text-color);
  pointer-events: none;
  border-style: solid;
  border-radius: 50%;
  border-color: var(--themeht-white-color);
  background: var(--themeht-bg-dark-color);
}

#ball.ball-view {
  background-color: var(--themeht-bg-dark-color);
  font-size: 18px;
  font-weight: 400;
  color: var(--themeht-primary-color);
  line-height: 24px;
  text-align: center;
  width: 150px !important;
  height: 150px !important;
  padding-top: 50px;
}

#ball.ball-view::before {
  content: "\f11a";
  position: absolute;
  top: 15px;
  font-size: 50px;
  line-height: 1;
  font-family: flaticon_mycollection !important;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px var(--themeht-primary-color);
  color: transparent;
}

#ball .ball-view-inner {
  padding: 0 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

#ball.ball-drag-slider {
  background-color: var(--themeht-bg-dark-color);
  font-size: 18px;
  color: var(--themeht-white-color);
  line-height: 1;
  width: 70px !important;
  height: 70px !important;
}

#ball.ball-drag-slider::before {
  content: "\F284";
  position: absolute;
  top: 50%;
  left: 15px;
  font-family: bootstrap-icons !important;
  display: inline-block;
  transform: translateY(-50%);
}

#ball.ball-drag-slider::after {
  content: "\F285";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: bootstrap-icons !important;
  display: inline-block;
  transform: translateY(-50%);
}

#ball.ball-close-enabled {
  opacity: 1 !important;
}

#ball .ball-close {
  position: absolute;
  padding: 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--themeht-text-color);
  line-height: 1;
  text-align: center;
}

#ball.magnetic-active {
  opacity: 0;
}

.magnetic-wrap {
  display: inline-block;
}

#ball.ball-view.video-play {
  text-transform: uppercase;
  background-color: var(--themeht-white-color);
  font-family: var(--themeht-typography-secondary-font-family);
  font-size: 20px;
  font-weight: 600;
  color: var(--themeht-text-color);
  line-height: 24px;
  text-align: center;
  width: 120px !important;
  height: 120px !important;
}

#ball.ball-view.video-play::before {
  content: "\f106";
  top: 25px;
  font-size: 34px;
  font-weight: normal;
  color: var(--themeht-text-color);
  -webkit-text-stroke: inherit;
}

/* ------------------------
    Banner Slider
------------------------*/
[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-slider {
  background-color: var(--themeht-bg-dark-color);
}

.banner-slider .slider-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}

.banner-content {
  padding: 200px 0;
  position: relative;
  z-index: 9;
}

.slider-img::before {
  position: absolute;
  content: "";
  background-color: var(--themeht-bg-dark-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 9;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  transform: scale(0);
  width: 60px;
  height: 60px;
  background-image: none !important;
  border-radius: 100%;
  line-height: inherit;
  background: var(--themeht-primary-color);
  border: none;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
  background: var(--themeht-bg-dark-color);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
  font-size: 24px;
  color: var(--themeht-secondary-color);
  line-height: 60px !important;
}

.banner-slider .swiper-button-next:hover:after,
.banner-slider .swiper-button-prev:hover:after {
  color: var(--themeht-white-color);
}

.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
  transform: scale(1);
}

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

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

#banner-pagination {
  position: absolute !important;
  right: 150px;
  left: inherit;
  margin: 0;
  text-align: right;
  width: auto;
  bottom: 50px;
  font-size: 18px;
  color: var(--themeht-white-color);
}

.banner-slider .themeht-btn + .themeht-btn {
  margin-left: 20px;
}

.banner-slider .swiper-slide-active h1 {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1s;
}

.banner-slider .swiper-slide-active .banner-btn {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1s;
}

.banner-slider .swiper-slide-active p {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1s;
}

.banner-slider .swiper-slide-active .dark-btn {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1s;
}

.banner-slider .swiper-slide-active .white-btn {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1s;
}

.banner-content h1 {
  color: var(--themeht-white-color);
  font-size: 85px;
  line-height: 95px;
  font-weight: 700;
}

.banner-content h1 span {
  display: block;
  color: var(--themeht-primary-color);
}

.banner-content p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--themeht-white-color);
  margin-bottom: 0;
}

.banner-text-inner {
  display: flex;
  align-items: center;
}

.banner-content .banner-btn {
  flex-shrink: 0;
  margin-right: 40px;
  position: relative;
  display: inline-block;
}

.banner-btn-bg svg {
  fill: var(--themeht-white-color);
  stroke: var(--themeht-white-color);
  transition: 0.5s;
}

.banner-btn:hover .banner-btn-bg svg {
  animation: rotate 10s linear infinite;
}

.banner-btn-text svg {
  fill: var(--themeht-secondary-color);
  margin-bottom: 15px;
  transition: 0.5s;
  width: 20px;
  height: 20px;
}

.banner-btn-text {
  transition: 0.5s;
  color: var(--themeht-text-color);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-btn-text span {
  display: block;
}

.hero-title h1 {
  font-size: 130px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-title i {
  font-size: 80px;
  line-height: 1;
  margin-left: 30px;
  color: var(--themeht-text-color);
  animation: rotate 10s linear infinite;
}

.hero-title1 {
  display: flex;
  align-items: center;
}

.hero-title2 h1 {
  color: transparent;
  -webkit-text-stroke: 2px var(--themeht-text-color);
  text-align: center;
}

.hero-title3 {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-title3 i {
  margin-left: 0;
  margin-right: 30px;
}

.banner-slider-two .slider-img::before {
  background-color: var(--themeht-primary-color);
  width: 70%;
  height: 100%;
  left: -10%;
  opacity: 0.8;
  transform: skew(15deg);
}

.banner-slider-two .banner-content h1 {
  color: var(--themeht-secondary-color);
  font-size: 100px;
  line-height: 110px;
  font-weight: 800;
}

/* ------------------------
    List Icon
------------------------*/
.list-icon li {
  position: relative;
  color: var(--themeht-text-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.list-icon li:last-child {
  margin-bottom: 0;
}

.list-icon li i {
  flex-shrink: 0;
  color: var(--themeht-text-color);
  font-size: 12px;
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-right: 10px;
  background: var(--themeht-primary-color);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.secondary-bg .list-icon li {
  color: var(--themeht-white-color);
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
  margin: 50px 0;
  padding: 50px 0;
  width: 100%;
  border-top: 2px dashed var(--themeht-border-light-color);
  border-bottom: 2px dashed var(--themeht-border-light-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.countdown > li {
  font-family: var(--themeht-secondary-font-family);
  font-weight: 700;
  text-align: center;
  list-style-type: none;
  display: block;
  width: auto;
  flex: 1 1 150px;
}

.countdown > li span {
  font-size: 70px;
  font-weight: 700;
  line-height: 60px;
  display: inline-block;
}

.countdown > li p {
  font-size: 20px;
  display: inline-block;
  line-height: 30px;
  margin-bottom: 0;
  color: var(--themeht-text-color);
}

.coming-soon .subscribe-form {
  margin: 0 auto;
}

/* ------------------------
    Error
------------------------*/
.error-text {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.error-text h1 {
  font-size: 200px;
  color: var(--themeht-primary-color);
  position: relative;
  line-height: 1;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid var(--themeht-secondary-color);
  border-left-color: transparent;
  position: relative;
  animation: 1s infinite cir;
  margin-top: 30px;
  margin-left: 20px;
  margin-right: 20px;
}

.cir2 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid var(--themeht-primary-color);
  border-right-color: transparent;
  position: absolute;
  top: 5px;
  left: 5px;
  animation: 2s infinite cir2;
  bottom: 5px;
  right: 5px;
}

/* ------------------------
    Round Text
------------------------*/
.center .round-text {
  margin-left: auto;
  margin-right: auto;
}

.right .round-text {
  margin-left: auto;
}

.round-text {
  position: relative;
  width: 180px;
  overflow: hidden;
  height: 180px;
  display: inline-block;
}

.round-text text {
  font-family: var(--themeht-typography-secondary-font-family);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  fill: var(--themeht-text-color);
}

.round-text svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 20s;
  -ms-animation-duration: 20s;
  -o-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

.text-btn-icon {
  font-size: 60px;
  color: var(--themeht-text-color) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ------------------------
    Contact
------------------------*/
.contact-media {
  background: var(--themeht-white-color);
  padding: 40px 25px;
  border: 1px solid var(--themeht-border-light-color);
}

.contact-media i {
  line-height: 100px;
  font-size: 70px;
  background: var(--themeht-primary-color);
  color: var(--themeht-text-color);
  margin-bottom: 30px;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
}

.contact-media span {
  font-size: 20px;
  color: var(--themeht-secondary-color);
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.contact-media p {
  margin-bottom: 0;
  line-height: 24px;
}

.contact-media p,
.contact-media a {
  color: var(--themeht-text-color);
  font-size: 18px;
}

.contact-media a:hover {
  color: var(--themeht-secondary-color);
}

.quote-media .contact-media {
  background: none;
  padding: 0;
  border: none;
}

.quote-media .contact-media li {
  display: flex;
  align-items: center;
}

.quote-media .contact-media i {
  line-height: 1;
  background: none;
  margin-bottom: 0;
  width: auto;
  height: auto;
  margin-right: 20px;
}

.quote-media .contact-media span {
  font-size: 15px;
  margin-bottom: 5px;
}

.quote-media .contact-media a {
  font-weight: 700;
}

.quote-media p {
  color: var(--themeht-text-color);
  font-size: 17px;
  font-weight: 500;
}

.contact-img {
  margin-top: -110px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

label {
  font-size: 14px;
  line-height: 1;
  color: var(--themeht-text-color);
}

.form-control {
  padding: 16px 24px;
  height: 55px;
  border-radius: 0;
  font-size: 13px;
  color: var(--themeht-body-color);
  background-color: var(--themeht-white-color);
  border: 1px solid var(--themeht-border-light-color);
}

textarea.form-control {
  height: 150px;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  background: none;
  border-color: var(--themeht-primary-color);
}

select.form-control {
  height: 55px !important;
  color: var(--themeht-body-color);
}

iframe {
  width: 100%;
  border: none;
  pointer-events: auto;
}

.iframe-h {
  height: 300px !important;
}

.iframe-h-2 {
  height: 600px !important;
}

.map iframe {
  border: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.help-block.with-errors {
  position: absolute;
  color: red;
  right: 15px;
  font-size: 10px;
  line-height: 14px;
}

.form-control::-webkit-input-placeholder {
  color: var(--themeht-body-color);
}

.form-control::-moz-placeholder {
  color: var(--themeht-body-color);
}

.form-control:-ms-input-placeholder {
  color: var(--themeht-body-color);
}

.form-control:-moz-placeholder {
  color: var(--themeht-body-color);
}

p {
  margin: 0 0 25px;
  line-height: 1.6;
}

/* ------------------------
    Responsive Css
------------------------*/
@media (max-width: 992px) {
  .navbar-toggler {
    background: var(--themeht-primary-color);
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-left: auto;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .ht-toggler svg {
    width: 40px;
    height: 40px;
    display: inline-block;
  }

  .ht-toggler .line {
    fill: none;
    stroke: var(--themeht-secondary-color);
    stroke-width: 6;
    transition:
      stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ht-toggler .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 3;
  }

  .ht-toggler .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 3;
  }

  .ht-toggler .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 3;
  }

  .ht-toggler[aria-expanded="true"] .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 3;
  }

  .ht-toggler[aria-expanded="true"] .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 3;
  }

  .ht-toggler[aria-expanded="true"] .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 3;
  }

  .navbar-collapse {
    background: var(--themeht-bg-dark-color);
    max-height: 400px;
    left: 0;
    padding: 20px;
    position: absolute;
    z-index: 99;
    top: 100%;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .navbar-nav .dropdown-submenu .dropdown-toggle::after {
    top: 18px;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar-nav .nav-link {
    padding: 20px 0 !important;
    color: var(--themeht-white-color);
    box-shadow: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-item .nav-link.active,
  .navbar-nav .nav-item .nav-link:focus,
  .navbar-nav .nav-link.show {
    box-shadow: none;
    color: var(--themeht-primary-color);
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--themeht-text-color);
    display: block;
  }

  /*Banner*/
  .logo img {
    max-height: 70px;
  }

  .logo .logo-flag {
    max-height: 50px !important;
    /* Scale down video on mobile */
  }

  .themeht-sidebar {
    margin-top: 80px;
  }

  .post-card .post-bottom li {
    font-size: 14px;
  }

  .slider-img::before {
    width: 100%;
    left: 0;
  }

  .banner-content {
    padding: 200px 0;
  }

  .banner-slider p {
    max-width: inherit;
  }

  .footer-logo {
    font-size: 100px;
    top: 70px;
    transform: inherit;
    width: 50%;
  }

  .bg-img-sec {
    min-height: 300px !important;
  }

  .step-content {
    padding: 50px;
  }

  .header-number {
    display: none;
  }

  .header-top .topbar-link li {
    font-size: 13px;
  }

  .ht-bg-move-effect {
    clip-path: inherit !important;
  }

  #header-wrap {
    padding: 10px 20px;
  }

  .main-header-inner {
    padding-left: 0;
  }

  .header-top {
    padding: 10px 15px;
  }

  .social-icons {
    display: none;
  }

  .header .themeht-btn {
    padding: 12px 20px;
  }

  .primary-footer-btm > [class*="col-"]:nth-child(2) {
    padding-right: 0;
    border-right: none;
  }

  .primary-footer-btm > [class*="col-"]:nth-child(3) {
    padding-left: 0;
  }

  .ht-img-split-scroller {
    display: block;
  }

  .pin-spacer-ht-img-split-scroller,
  .split_texts {
    width: 100% !important;
  }

  .split_images {
    display: none;
  }

  .split-mobile-img {
    display: block;
    margin-bottom: 30px;
  }

  .split_texts {
    padding: 0 3rem 3rem 3rem;
  }

  .split_texts .split-text-block {
    min-height: auto;
    padding: 0;
    margin-bottom: 70px;
  }

  .sticky-panel-content {
    display: block;
    height: auto;
    overflow: inherit;
  }

  .sticky-panel {
    height: auto;
    display: block;
  }

  .sticky-panel-img {
    width: 100%;
    height: 400px;
  }

  .sticky-panel-text {
    width: 100%;
    padding: 3rem;
  }

  .hero-title h1 {
    font-size: 80px;
  }

  .service-item.style-2 .service-title h4 {
    font-size: 20px;
    line-height: 30px;
    padding: 10px 10px;
  }

  .service-item.style-2 .service-icon {
    font-size: 30px;
  }

  .award-title span {
    font-size: 70px;
  }

  .award-desc {
    font-size: 15px;
  }

  .award-items {
    display: block;
  }

  .award-title,
  .award-desc {
    width: 100%;
  }

  .ht-tab .tab-menu {
    display: block;
  }

  .ht-tab-content .counter {
    margin-bottom: 20px;
  }

  .banner-slider-two .slider-img::before {
    width: 100%;
    left: 0;
    opacity: 0.6;
    transform: inherit;
  }

  .contact-img {
    margin-top: 40px;
  }

  .counter.style-2 .counter-desc span {
    font-size: 70px;
  }

  .counter.style-2 .counter-desc span {
    font-size: 70px;
  }

  .post-card.style-1 .post-desc,
  .post-card.post-classic .post-desc {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 60px !important;
    line-height: 70px !important;
  }

  .theme-title h2 {
    font-size: 42px !important;
    line-height: 52px !important;
  }

  .theme-title p {
    font-size: 16px;
  }

  .page-title h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .header-top {
    display: none;
  }

  .counter.style-2 .counter-desc span {
    font-size: 70px;
  }

  .counter.style-3 .counter-desc span {
    font-size: 70px;
  }

  .banner-content {
    padding: 120px 0;
  }

  .banner-text-inner {
    display: block;
  }

  .banner-text-inner .banner-btn-bg {
    margin-bottom: 20px;
  }

  .portfolio-meta-info {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: auto;
  }

  .footer-logo {
    top: inherit;
    position: inherit;
    margin-bottom: 50px;
    width: 100%;
  }

  .featured-item.style-3 .featured-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .featured-item.style-3 .featured-top {
    display: block;
  }

  .primary-footer-btm > [class*="col-"] {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-item.style-1 .portfolio-desc {
    display: block;
  }

  .portfolio-name {
    width: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .portfolio-item.style-1 h4 {
    line-height: 40px;
    font-size: 30px;
  }

  .split_texts {
    padding: 2rem;
  }

  .split-number {
    font-size: 60px;
  }

  .split_texts .split-text-block {
    padding: 2rem 1rem;
  }

  .split-content-counter .counter {
    margin-bottom: 30px;
  }

  .hero-title h1 {
    font-size: 42px !important;
  }

  .hero-title i {
    font-size: 30px;
  }

  .service-list {
    padding-right: 0;
  }

  .service-list .service-item.style-2 .service-image {
    top: 10%;
    right: 0;
    width: 50%;
    height: 20%;
  }

  .service-item.style-2 .service-desc {
    justify-content: flex-start;
  }

  .service-item.style-2 .service-title h4 {
    font-size: 26px;
    line-height: 36px;
    padding: 30px;
  }

  .subscribe-form button {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
  }

  .tab .nav-tabs .nav-link {
    width: 100%;
  }
}

/* Global Social Icons for Footer */
.social-icons.footer-social li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons.footer-social li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--themeht-white-color);
  border-radius: 5px;
  /* Rounded corners here */
  display: block;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.social-icons.footer-social li a:hover {
  background-color: var(--themeht-primary-color);
  color: var(--themeht-text-color) !important;
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  h1,
  .h1 {
    font-size: 50px !important;
    line-height: 60px !important;
  }

  .theme-title h2 {
    font-size: 37px !important;
    line-height: 47px !important;
  }

  /*Other*/
  .social-icons.footer-social li a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 26px;
  }
}

/* Custom Header Styles */
#site-header .header-top {
  font-size: 13px;
  background-color: var(--themeht-secondary-color);
  color: #fff;
  padding: 8px 0;
}

#site-header .header-top .row {
  align-items: center;
}

/* Navbar container padding and alignment */
#site-header .container {
  padding-left: 15px;
  padding-right: 15px;
}

#site-header .navbar {
  padding: 0;
  width: 100%;
}

#site-header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 5px 0;
  margin-right: 1rem;
}

#site-header .logo .logo-flag {
  height: 60px;
  width: auto;
  object-fit: cover;
  margin-right: 8px;
  transition: all 0.3s ease;
}

#site-header .logo img {
  max-height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

#site-header .nav-link {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--themeht-text-color) !important;
  padding: 20px 8px !important;
  transition: all 0.3s ease;
}

#site-header .nav-link:hover,
#site-header .nav-link.active {
  color: var(--themeht-primary-color) !important;
}

#site-header .btn-quote {
  background-color: var(--themeht-primary-color);
  color: var(--themeht-secondary-color);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  padding: 8px 18px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
  white-space: nowrap;
}

#site-header .btn-quote:hover {
  background-color: var(--themeht-secondary-color);
  color: #fff;
}

#site-header .btn-quote svg {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 3;
}

@media (max-width: 1199px) {
  #site-header .nav-link {
    padding: 25px 10px !important;
    font-size: 14px;
  }

  #site-header .navbar-brand img {
    max-height: 100px;
  }

  #site-header .logo .logo-flag {
    height: 60px;
  }
}

@media (max-width: 991px) {
  #site-header .header-top {
    display: none;
  }

  #site-header .navbar {
    padding: 10px 0;
  }

  #site-header .navbar-collapse {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  #site-header .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f5f5f5;
  }

  #site-header .btn-quote {
    margin: 20px 0 0;
    width: 100%;
    justify-content: center;
  }

  #site-header .logo .logo-flag {
    height: 50px;
  }

  #site-header .navbar-brand img {
    max-height: 80px;
  }
}

#site-header .navbar-brand {
  margin-right: 0;
  gap: 5px !important;
}

/* ------------------------
    Responsive Typography & Layout fixes
------------------------*/
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-title h1 {
    font-size: 50px;
    line-height: 1.1;
  }

  .banner-content h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .banner-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .banner-slider .themeht-btn + .themeht-btn {
    margin-left: 0;
    margin-top: 15px;
    display: inline-flex;
  }

  .banner-content .banner-btn {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .banner-content {
    padding: 100px 0;
  }
}

/* Custom Certificate Styles */
.hover-translate {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-translate:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.certificate-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------
    Multi-Select Dropdown
------------------------*/
.multi-select-dropdown {
  position: relative;
  width: 100%;
}

.multi-select-dropdown .dropdown-toggle {
  text-align: left !important;
  background: #fff !important;
  border: 1px solid var(--themeht-border-light-color) !important;
  padding: 12px 15px !important;
  width: 100% !important;
  color: var(--themeht-body-color) !important;
  border-radius: 4px !important;
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-right: 35px !important;
  box-shadow: none !important;
}

.multi-select-dropdown .dropdown-toggle::after {
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-left: 0 !important;
}

.multi-select-dropdown .dropdown-menu {
  width: 100%;
  padding: 10px;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--themeht-border-light-color);
}

.multi-select-dropdown .dropdown-item {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  white-space: normal;
}

.multi-select-dropdown .dropdown-item:active,
.multi-select-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--themeht-text-color);
}

.multi-select-dropdown .form-check-input {
  margin-top: 0;
  cursor: pointer;
}

.multi-select-dropdown .form-check-input:checked {
  background-color: var(--themeht-secondary-color);
  border-color: var(--themeht-secondary-color);
}

.multi-select-dropdown .form-check-label {
  cursor: pointer;
  width: 100%;
  margin-bottom: 0;
  color: var(--themeht-text-color);
  font-size: 14px;
  font-weight: 500;
}

/* ------------------------
    WhatsApp Floating Button
------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 140px;
  left: 50px;
  z-index: 999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  /* Main button pulse (keep slightly for focus) */
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: wa-pulse-border 1.5s infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  width: 60px;
  height: 60px;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  animation: wa-ripple 2s infinite;
  pointer-events: none;
}

.whatsapp-float::after {
  animation-delay: 0.5s;
}

@keyframes wa-pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes wa-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
}

/* ------------------------
    Call Floating Button
------------------------*/
.call-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 50px;
  left: 50px;
  z-index: 999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  /* Main pulse */
  box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.7);
  animation: call-pulse-border 1.5s infinite;
}

.call-float:hover {
  transform: scale(1.1);
}

.call-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
}

.call-float::before,
.call-float::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid #2979ff;
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  animation: wa-ripple 2s infinite;
  pointer-events: none;
}

.call-float::after {
  animation-delay: 0.5s;
}

@keyframes call-pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(41, 121, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(41, 121, 255, 0);
  }
}

@media (max-width: 991px) {
  .whatsapp-float {
    bottom: 125px;
    left: 30px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    width: 50px;
    height: 50px;
  }

  .call-float {
    width: 50px;
    height: 50px;
    bottom: 40px;
    left: 30px;
  }

  .call-float::before,
  .call-float::after {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 90px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    width: 40px;
    height: 40px;
  }

  .call-float {
    width: 40px;
    height: 40px;
    bottom: 30px;
    left: 20px;
  }

  .call-float::before,
  .call-float::after {
    width: 40px;
    height: 40px;
  }
}

/* 
   Safe fix for counter alignment.
   Uses flexbox to center content and align items vertically.
   Reset margins on spans to prevent push-down.
*/
.fix-counter-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  /* Prevent wrapping */
}

.fix-counter-layout {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  line-height: normal !important;
}

.fix-counter-layout span {
  display: inline-block !important;
  margin: 0 2px !important;
  padding: 0 !important;
  line-height: normal !important;
  vertical-align: middle !important;
}

.fix-counter-layout span {
  display: inline-block !important;
  margin: 0 2px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* Footer Logo Synchronization (Matches Header) */
.footer-logo img {
  max-height: 90px;
  width: auto;
}

@media (max-width: 1199px) {
  .footer-logo img {
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .footer-logo img {
    max-height: 80px;
  }
}
/* =========================================
   CRITICAL FIXES - GLOBAL OVERRIDES (v1.2)
   ========================================= */

/* 1. Modal Enhancements */
.modal-content {
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  overflow: hidden !important;
}

.modal-header {
  background: #ffffff !important;
  border-bottom: 1px solid #f5f5f5 !important;
  padding: 20px 30px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-weight: 700 !important;
  color: #1a1a1a !important;
  letter-spacing: -0.5px !important;
  margin: 0 !important;
}

/* Close Button Styling */
.modal-header .btn-close {
  opacity: 0.5;
  transition: all 0.3s ease;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  box-sizing: content-box;
  border: 0;
  border-radius: 0.25rem;
}

.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Custom Inquiry Button - Updated Style */
.btn-inquiry {
  background: #ffc107 !important;
  color: #000000 !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 13px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  border: 2px solid #ffc107 !important;
  box-shadow: none !important;
}

.btn-inquiry:hover {
  background: #000000 !important;
  color: #ffc107 !important;
  border-color: #000000 !important;
  transform: translateY(-1px) !important;
}

.btn-inquiry i {
  font-size: 16px;
  line-height: 1;
}

/* 2. Counter Alignment & Visibility */
.fix-counter-layout {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.fix-counter-layout span {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 2px !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

@media (max-width: 991px) {
  .counter.style-3 .counter-desc span {
    font-size: 50px !important;
  }
}

@media (max-width: 575px) {
  .counter.style-3 .counter-desc span {
    font-size: 40px !important;
  }
}

/* 3. Product Cards */
.product-card {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border-radius: 16px !important;
}

.product-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: #ffc107 !important;
}

.product-card .card-img-top {
  transition: transform 0.6s ease !important;
}

.product-card:hover .card-img-top {
  transform: scale(1.08) !important;
}

/* 4. Footer Accordion */
.footer-accordion .accordion-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 0;
  border-radius: 0 !important;
}

.footer-accordion .accordion-item:last-child {
  border-bottom: none !important;
}

.footer-accordion .accordion-button {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 0 !important;
  background: transparent !important;
  color: #ffffff;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.footer-accordion .accordion-button:not(.collapsed) {
  color: #ffc107;
  padding-bottom: 10px !important;
}

.footer-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
  background-size: 12px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.footer-accordion .accordion-button:not(.collapsed)::after {
  opacity: 1;
  transform: rotate(180deg);
}

.footer-accordion .accordion-body {
  padding: 0 0 15px 0 !important;
}

.footer-product-link {
  display: block;
  padding: 3px 0;
  transition: all 0.3s ease;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.footer-product-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 15px;
}

/* 5. Modal Product Images */
.modal-product-image-container {
  padding: 24px !important;
  height: 100%;
}

.modal-product-image {
  border-radius: 12px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. Read More Button */
.read-more-btn {
  background: var(--themeht-primary-color);
  color: var(--themeht-secondary-color);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more-btn:hover {
  background: var(--themeht-secondary-color);
  color: white;
}

/* 7. Animations & Interactive */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

.modal-trigger-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-trigger-item:hover {
  color: #ffc107 !important;
  transform: translateX(5px);
}
