/* ------------------------
    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
------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');
:root {
    /* --themeht-primary-color: #FF5E15; */
    --themeht-primary-color: #f55631;
    --themeht-secondary-color: #009B4D;
    --themeht-text-color: #0E0E0E;
    --themeht-body-color: #5E5E5E;
    --themeht-white-color: #FFFFFF;
    --themeht-bg-dark-color: #010101;
    --themeht-bg-light-color: #f4f9fd;
    --themeht-border-light-color: #DADADA;
    --themeht-white-color:#fff;
    --themeht-rgba-color: rgba(255, 255, 255, 0.9);
    --themeht-typography-body-font-family: "Inter", sans-serif;
    --themeht-typography-secondary-font-family: "Host Grotesk", sans-serif;

}


/* ------------------------
    General
------------------------*/

body {
    scroll-behavior: smooth;
    font-family: var(--themeht-typography-body-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    color: var(--themeht-body-color);
    overflow-x: hidden;
}

.page-wrapper {
    overflow-x: hidden;
}


/* ------------------------
    Typography
------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--themeht-typography-secondary-font-family);
    font-weight: normal;
    margin-top: 0px;
    font-style: normal;
    margin-bottom: 20px;
    color: var(--themeht-text-color);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

.h1,
h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
}

.h2,
h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
}

.h3,
h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.h4,
h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
}

.h5,
h5 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.h6,
h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

ul {
    margin-left: 0;
}

label {
    display: inline-block;
    color: var(--themeht-text-color);
    font-size: 16px;
    margin-bottom: 7px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
}


/* ------------------------
    Helper class
------------------------*/

p {
    line-height: 1.7;
}

.lead {
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-1 {
    z-index: 1;
    position: relative;
}

section,
.section {
    padding: 100px 0;
    position: relative;
}

.img-border {
    border: 10px solid var(--themeht-white-color);
}


/* ------------------------
    Text color
------------------------*/

.text-theme {
    color: var(--themeht-primary-color);
}

.text-black {
    color: var(--themeht-text-color) !important;
}

.text-grey {
    color: var(--themeht-body-color);
}

.text-muted {
    color: #979797 !important;
}


/* ------------------------
    Background color
------------------------*/

.white-bg {
    background-color: var(--themeht-white-color) !important;
}

.dark-bg {
    background-color: var(--themeht-bg-dark-color);
}

.light-bg {
    background-color: var(--themeht-bg-light-color);
}

.primary-bg {
    background-color: var(--themeht-primary-color);
}

.secondary-bg {
    background-color: var(--themeht-secondary-color);
}

.transparent-bg {
    background-color: inherit !important;
}

.border-light {
    border-color: var(--themeht-border-light-color) !important
}


/* ------------------------
    Banner
------------------------*/

[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: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;

}

.slider-img::before {
    position: absolute;
    content: '';
    background: var(--themeht-secondary-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 9;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    transform: scale(0);
    width: 50px;
    height: 50px;
    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: 20px;
    color: var(--themeht-white-color);
    line-height: 50px !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 h6,
.banner-slider .banner-large-text {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider h1 {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider p,
.banner-top a {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
}

.banner-slider .btn-box {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider .swiper-slide-active h6 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 500ms;
}

.banner-slider .swiper-slide-active h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1000ms;
}

.banner-slider .swiper-slide-active p,
.banner-slider .swiper-slide-active .banner-top a {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1500ms;
}

.banner-slider .swiper-slide-active .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 2000ms;
}

.banner-slider .swiper-slide-active .banner-large-text {
    opacity: 0.2;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1000ms;
}

.banner-content {
    padding: 200px 0 200px 150px;
    position: relative;
    z-index: 9;
}

.banner-slider h6 {
    color: var(--themeht-white-color);
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 6px 10px 6px 6px
}

.banner-slider h1 {
    font-weight: 700;
    font-size: 90px;
    /* font-size: 110px; */
    line-height: 120px;
    color: var(--themeht-white-color);
}

.banner-slider h1 span {
    font-weight: 600;
    display: block;
}

.banner-content p {
    max-width: 80%;
    margin: 0;
    color: var(--themeht-white-color);
}

.banner-slider-one .banner-content {
    padding: 80px 0 150px 150px;
    position: relative;
    z-index: 9;
}

.slider-overlay {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #000000 70%, #FFFFFF 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.banner-slider-one .banner-content .banner-text {
    width: 65%;
}

#banner-pagination {
    bottom: 100px;
    position: absolute !important;
    left: inherit;
    right: 50px;
    width: auto;
    transform: translateY(-50%);
    margin: 0;
}

.banner-top {
    position: relative;
    display: inline-block;
}

.banner-large-text {
    font-size: 300px;
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--themeht-white-color);
    font-weight: 800;
    font-family: var(--themeht-typography-secondary-font-family);
    opacity: 0.2;
}

.banner-top a {
    position: absolute;
    right: 100px;
    top: 50%;
    margin-top: -50px;
}

.banner-top .video-btn-icon>i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 40px;
}

.banner-slider .banner-content h6 span {
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    padding: 2px 8px;
    /* margin-right: 15px; */
    display: inline-block;
}

.banner-3::before {
    position: absolute;
    content: '';
    background: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
    z-index: -1;
}

.banner-slider-two .banner-content {
    padding: 200px 0 200px 150px;
    position: relative;
    z-index: 9;
}

.banner-slider-two .banner-content .banner-text {
    /* width: 50%; */
    width: 60%;
}

.banner-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.banner-btn .video-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.video-btn-icon {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.video-btn-icon:after,
.video-btn-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--themeht-white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.video-btn-icon:after,
.video-btn-icon:before {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}

.video-btn-icon:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.video-btn-icon>i {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--themeht-primary-color);
    color: var(--themeht-white-color);
    font-size: 30px;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.video-btn span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: var(--themeht-white-color);
}

.video-large .video-btn-icon>i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 50px;
}

.banner-slider-two .video-btn-icon:after,
.banner-slider-two .video-btn-icon:before {
    background-color: var(--themeht-primary-color);
}

.about-sec1-box {
    position: relative;
    display: block;
}

.about-sec1-box .shape1 {
    position: absolute;
    top: -5px;
    right: 0;
    z-index: -1;
}

.about-sec1-box .shape2 {
    position: absolute;
    top: 135px;
    right: 0;
    z-index: -1;
}

.about-sec1-box .shape3 {
    position: absolute;
    left: -90px;
    bottom: -30px;
    z-index: -1;
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.about-sec1.img1 {
    position: relative;
    display: block;
    max-width: 430px;
    width: 100%;
}

.about-sec1.img1 img,
.about-sec1.img2 .about-sec1-inner img {
    width: 100%
}

.about-sec1.img2 {
    position: absolute;
    bottom: -180px;
    right: 0;
    z-index: 2;
}

.about-sec1.img2:before {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: 0;
    right: 0;
    background: var(--themeht-white-color);
    content: "";
    z-index: -1;
}

.round-text {
    width: 180px;
    height: 180px;
    z-index: 9;
    position: absolute;
    bottom: 80px;
    left: -80px;
    border-radius: 50%;
    background-color: var(--themeht-white-color);
    z-index: 5;
    -webkit-filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
    filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
}

.round-text text {
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: 1px;
    font-weight: 500;
    fill: var(--themeht-text-color);
}

.round-text svg {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.10);
    border-radius: 50%;
    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: 40s;
    -moz-animation-duration: 40s;
    -ms-animation-duration: 40s;
    -o-animation-duration: 40s;
    animation-duration: 40s;
    -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: 45px;
    color: var(--themeht-white-color) !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--themeht-primary-color);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-sec1-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.overlay-icon-box {
    position: absolute;
    top: 40px;
    left: 40px;
    bottom: 40px;
    right: 40px;
    background-color: var(--themeht-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    line-height: 1;
    color: var(--themeht-white-color);
}

.about-section-2 .people {
    background: var(--themeht-primary-color);
    padding: 25px;
    position: absolute;
    right: 19px;
    top: -9px;
    z-index: 1;
}

.about-section-2 .people:before {
    background: var(--themeht-bg-dark-color);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    content: "";
    height: 30px;
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
}

.about-section-2 .people h2 {
    color: var(--themeht-white-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
}

.about-section-2 .people h2 span {
    color: var(--themeht-white-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 33px;
}

.about-section-2 .people p {
    color: var(--themeht-white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}

.form-section {
    position: relative;
    overflow: hidden;
}

.form-section:after {
    background: #ebebeb;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    z-index: -1;
}

.form-section:before {
    /* background: var(--themeht-bg-dark-color); */
    background: var(--themeht-secondary-color);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 60%;
    z-index: -1;
    content: "";
}

.form-section2:after {
    background: var(--themeht-bg-dark-color);
}

.form-section2:before {
    background: var(--themeht-bg-light-color);
}

.form-border {
    border: 13px solid #FFFFFF;
    z-index: 9;
}

.ht-image-right {
    position: absolute;
    bottom: -50px;
    right: -100px;
}

.image-title {
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: var(--themeht-typography-secondary-font-family);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 150px;
    /* font-size: 160px; */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 150px;
    /* line-height: 160px; */
}

.gear-anim {
    animation-name: rotateme-two;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme-two;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme-two;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme-two;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme-two;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    position: absolute;
    left: -25px;
    top: -25px;
    line-height: 1em;
    font-size: 230px;
    color: var(--themeht-white-color);
    z-index: -1;
}


/* ------------------------
    Error
------------------------*/

.error-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: dash 5s linear alternate infinite;
}

.error-path path {
    stroke: var(--themeht-primary-color)
}

.error-path path:nth-child(2) {
    stroke: var(--themeht-primary-color)
}

.error-path path:nth-child(3) {
    stroke: var(--themeht-secondary-color)
}


/* ------------------------
    Timeline
------------------------*/

.main-timeline:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border-right: 2px dashed var(--themeht-primary-color);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.timeline_item {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.timeline-order-1 {
    order: 3;
}

.timeline-order-2 {
    order: 2;
    left: 30px;
}

.timeline-order-3 {
    order: 1;
}

.main-timeline .timeline-icon {
    width: 60px;
    height: 60px;
    position: relative;
    right: 30px;
    font-size: 30px;
    background: var(--themeht-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeht-white-color);
    border-radius: 50%;
    z-index: 9;
}

.main-timeline .date-content {
    width: 50%;
    position: relative;
}

.main-timeline .date-content:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--themeht-border-light-color);
    margin: auto 0;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
}

.main-timeline .timeline-order-1:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--themeht-border-light-color);
    position: absolute;
    padding-right: 30px;
    margin-right: 50% !important;
}

.main-timeline .date {
    font-family: var(--themeht-typography-secondary-font-family);
    line-height: 1;
    font-weight: 700;
    font-size: 60px;
    color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--themeht-white-color);
    z-index: 1;
    padding: 0 15px;
    -webkit-text-stroke: 1px var(--themeht-primary-color);
}

.main-timeline .timeline-content {
    padding: 30px;
    background: var(--themeht-white-color);
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}

.main-timeline .timeline-content p {
    margin-bottom: 0
}

@media (max-width:640px) {
    .timeline {
        flex-direction: column !important;
    }
    .main-timeline:before {
        margin-left: 1px;
    }
    .main-timeline .timeline-icon {
        margin: auto 2px;
    }
    .main-timeline .timeline-content {
        padding: 40px 30px;
    }
    .timeline-order-1 {
        order: 2;
    }
    .timeline-order-2 {
        order: 1;
        left: -1em;
    }
    .timeline-order-3 {
        order: 3;
    }
    .timeline-order-1b {
        order: 2;
    }
    .timeline-order-2b {
        order: 1;
        left: -1em;
    }
    .timeline-order-3b {
        order: 3;
    }
    .main-timeline .timeline-order-1:before {
        width: 100%;
    }
    .main-timeline .timeline-order-1b:before {
        width: 100%;
    }
    .main-timeline .timeline-order-1b:before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--themeht-border-light-color);
        position: absolute;
        top: 0;
        padding-right: 30px;
        bottom: 0;
        margin-right: 50% !important;
    }
    .main-timeline .date {
        width: 70px;
        height: 70px;
    }
}

@media (max-width:350px) {
    .timeline-icon {
        visibility: hidden;
    }
    .main-timeline .date-content:before {
        visibility: hidden;
    }
    .date-content {
        left: -15px;
    }
}


/* ------------------------
    List Icon
------------------------*/

.list-icon li {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.list-icon li:last-child {
    margin-bottom: 0
}

.list-icon li i {
    color: var(--themeht-primary-color);
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
    flex-shrink: 0;
}


/* ------------------------
 Marquee Text
------------------------*/

.marquee-wrap {
    width: 100%;
    position: relative;
}

.marquee-wrap {
    overflow: hidden;
    display: flex;
}

.marquee-inner {
    display: flex;
    will-change: transform;
    animation: marquee 50s linear infinite;
}

.marquee-text {
    position: relative;
    white-space: nowrap;
}

.marquee-text span {
    font-size: 8.125rem;
    line-height: 122%;
    color: var(--themeht-secondary-color);
    font-family: var(--themeht-typography-secondary-font-family);
    font-weight: 900;
    vertical-align: middle;
    text-transform: uppercase;
}

.marquee-text i {
    font-size: 40px;
    display: inline-block;
    line-height: 1;
    margin: 0 30px;
    color: var(--themeht-secondary-color);
    vertical-align: middle;
}

.marquee-text:nth-child(2n+2) span {
    color: var(--themeht-white-color);
    text-shadow: -1px -1px 0 var(--themeht-text-color), 1px -1px 0 var(--themeht-text-color), -1px 1px 0 var(--themeht-text-color), 1px 1px 0 var(--themeht-text-color);
}

.marquee-text.text-white span {
    color: var(--themeht-white-color);
}

.marquee-text.text-white i {
    color: var(--themeht-white-color);
}

.marquee-text.text-white:nth-child(2n+2) span {
    color: var(--themeht-primary-color);
    text-shadow: -1px -1px 0 var(--themeht-white-color), 1px -1px 0 var(--themeht-white-color), -1px 1px 0 var(--themeht-white-color), 1px 1px 0 var(--themeht-white-color);
}

.marquee-wrap.style-2:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    z-index: 9;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 1) 98%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

.marquee-wrap.style-2:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 99%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

.marquee-wrap.style-2 .marquee-text {
    margin: 0 30px
}

.marquee-wrap.style-2 .marquee-text span {
    text-shadow: none;
    opacity: 0.2;
    color: white;
    font-size: 15rem;
    font-weight: 700;
}


/* ------------------------
    Countdown
------------------------*/

.countdown {
    margin: 50px 0;
    padding: 50px 0;
    display: table;
    width: 100%;
    border-top: 2px dashed var(--themeht-border-light-color);
    border-bottom: 2px dashed var(--themeht-border-light-color);
}

.countdown>li {
    font-weight: 700;
    text-align: center;
    list-style-type: none;
    display: table-cell;
    width: auto;
}

.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;
}


/* ------------------------
 Clients Logo
------------------------*/

.clients-logo {
    text-align: center;
}

.clients-logo img {
    width: 100px;
    /* -webkit-filter: contrast(0%);
    filter: contrast(0%); */
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}

.clients-logo:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.client-text {
    text-align: center;
    position: relative;
}

.client-text:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    background: var(--themeht-border-light-color);
    width: 70%;
    height: 1px;
}

.client-text span {
    background: var(--themeht-white-color);
    padding: 5px 40px;
}

.client-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
    align-items: center;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
    width: auto !important;
    padding: 0 50px;
}


/* ------------------------
Extra
------------------------*/

.contact-info {
    padding: 50px 30px 30px;
    position: relative;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-info i {
    position: absolute;
    left: 50%;
    top: 0;
    line-height: 24px;
    font-size: 40px;
    color: var(--themeht-white-color);
    text-align: center;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--themeht-primary-color);
    margin-left: -45px;
    margin-top: -45px;
    /* border-radius: 50%; */
    border: 5px solid white;
}

.contact-info h4 {
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--themeht-body-color);
    max-width: 300px;
    margin: 0 auto;
}

.contact-info a {
    color: var(--themeht-body-color);
    font-size: 18px;
    line-height: 26px;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.contact-info a:hover {
    color: var(--themeht-primary-color);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-size: 14px;
    line-height: 1;
    color: var(--themeht-text-color)
}

.form-control {
    height: 55px;
    border-radius: 0;
    font-size: 14px;
    color: var(--themeht-text-color);
    background-color: var(--themeht-white-color);
    border: 1px solid var(--themeht-border-light-color);
}

textarea.form-control {
    height: 120px;
}

.form-control:focus {
    box-shadow: none;
    background: none;
    border-color: var(--themeht-primary-color);
}

select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 55px !important;
    color: var(--themeht-body-color);
}

iframe {
    width: 100%;
    border: none;
    pointer-events: auto;
}

.iframe-h {
    height: 500px !important;
}

.iframe-h-2 {
    height: 600px !important;
}

.map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-filter: brightness( 100%) contrast( 100%) saturate( 50%) blur( 0px) hue-rotate( 0deg);
    -moz-filter: brightness( 100%) contrast( 100%) saturate( 50%) blur( 0px) hue-rotate( 0deg);
    -ms-filter: brightness( 100%) contrast( 100%) saturate( 50%) blur( 0px) hue-rotate( 0deg);
    -o-filter: brightness( 100%) contrast( 100%) saturate( 50%) blur( 0px) hue-rotate( 0deg);
    filter: brightness( 100%) contrast( 100%) saturate( 50%) blur( 0px) hue-rotate( 0deg);
}

.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);
}


/* -------------------------------
   Background Position & Size
-------------------------------*/

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-pos-l {
    background-position: left;
}

.bg-pos-r {
    background-position: right;
}

.bg-pos-rt {
    background-position: right top;
}

.bg-pos-cr {
    background-position: center right;
}

.bg-pos-cl {
    background-position: center left;
}

.bg-pos-lt {
    background-position: left top;
}

.bg-pos-rb {
    background-position: right bottom;
}

.bg-pos-lb {
    background-position: left bottom;
}

.bg-fix {
    background-attachment: fixed;
}

.border-15 {
    border-width: 15px !important;
}

.border-primary {
    border-color: var(--themeht-primary-color) !important;
}

.section-p-custom {
    padding: 120px 120px 120px 250px;
}

.image-video-sec {
    padding: 400px 0 120px;
}

.bg-dark-gradient-overlay {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.bg-dark-gradient-overlay:before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #141622), to(transparent));
    background: linear-gradient(to top, #141622 7%, transparent 100%);
    opacity: .75;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
}

.ht-video {
    position: absolute;
    object-fit: cover;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -9
}

.testimonial-left-sec .featured-item {
    width: 55%;
    background: var(--themeht-secondary-color);
    padding: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 15px solid var(--themeht-white-color);
    border-right: 15px solid var(--themeht-white-color);
}

.testimonial-left-sec .featured-item.style-2 .featured-icon {
    font-size: 90px;
}

.testimonial-left-sec .video-large {
    transform: translate(-50%, -50%);
}

.p-6 {
    padding: 2.5rem !important;
}

.mb-7,
.my-7 {
    margin-bottom: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 2rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.mt-6,
.my-6 {
    margin-top: 2.5rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.mb-8,
.my-8 {
    margin-bottom: 3.5rem !important;
}

.loader_img {
    max-width: 60px;
}

.service-img {
    max-height: 270px;
    overflow: hidden;
}

.about-sec1-inner img {
    max-width: 250px;
}

.footer {
    background-image: url(../images/footer.png);
}

.ft-contact {
    background: var(--themeht-primary-color);
    border-radius: 10px;
    display: flex;
    margin-top: -76px;
    z-index: 9;
    position: relative;
}

.ft-contact .ft-contact-bx {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;
    padding: 25px 40px 25px 120px;
    z-index: 1
}

.ft-contact .ft-contact-bx .title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
    color: #fff
}

.ft-contact .ft-contact-bx:last-child:after {
    content: none
}

.ft-contact .ft-contact-bx:after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: -1;
    background-image: url(../images/ftr_saperator.png);
    background-size: contain;
    background-position: 100%;
    background-repeat: no-repeat;
    opacity: .5
}

.ft-contact .ft-contact-bx p {
    color: #fff;
    line-height: 28px;
    margin-bottom: 0;
    font-size: 16px
}

.ft-contact .ft-contact-bx img {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 45px;
    top: 36px;
    transition: all .8s;
    -moz-transition: all .8s;
    -webkit-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s
}

.ft-contact .ft-contact-bx:hover img {
    transform: none;
}

.custom-py-2 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
}

.portfolio-img img {
    max-height: 400px;
}

.mt-8,
.my-8 {
    margin-top: 3.5rem !important;
}

.request_quote_form .form-control:focus {
    box-shadow: none;
    background: #fff;
    border-color: var(--themeht-primary-color);
}

/* =======mobile=fottor== */

.mobile-menu-footer{
    display: none;
}


/* ------------------------
    Dummy Static Banner
------------------------*/

.dummy-banner {
    background: linear-gradient(135deg, #f55631 0%, #ff7a59 100%);
    border-radius: 15px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(245, 86, 49, 0.25);
}

.dummy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.dummy-banner-content {
    position: relative;
    z-index: 2;
}

.dummy-banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.dummy-banner-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dummy-banner-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.dummy-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #f55631;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dummy-banner-btn:hover {
    background: #009B4D;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.dummy-banner-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.dummy-banner-btn:hover i {
    transform: translateX(5px);
}

.dummy-banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.dummy-banner-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.dummy-banner-shapes .shape-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.dummy-banner-shapes .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.dummy-banner-shapes .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -30px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .dummy-banner {
        padding: 40px 35px;
    }
    
    .dummy-banner-title {
        font-size: 28px;
    }
    
    .dummy-banner-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .dummy-banner {
        padding: 35px 25px;
        text-align: center;
    }
    
    .dummy-banner-title {
        font-size: 24px;
    }
    
    .dummy-banner-subtitle {
        font-size: 14px;
    }
    
    .dummy-banner-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}


/* ------------------------
    Static Banner Placeholder
------------------------*/

.static-banner-placeholder {
    background: linear-gradient(135deg, #f4f9fd 0%, #e8f4f8 100%);
    border: 3px dashed #009B4D;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.static-banner-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 155, 77, 0.03) 10px,
        rgba(0, 155, 77, 0.03) 20px
    );
    pointer-events: none;
}

.static-banner-placeholder:hover {
    border-color: #f55631;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 86, 49, 0.1);
}

.banner-placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 155, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.static-banner-placeholder:hover .placeholder-icon {
    background: rgba(245, 86, 49, 0.1);
    transform: scale(1.1);
}

.placeholder-icon i {
    font-size: 40px;
    color: #009B4D;
    transition: all 0.3s ease;
}

.static-banner-placeholder:hover .placeholder-icon i {
    color: #f55631;
}

.placeholder-title {
    color: #0E0E0E;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--themeht-typography-secondary-font-family);
}

.placeholder-text {
    color: #5E5E5E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-dimensions {
    display: inline-block;
    background: #009B4D;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.static-banner-placeholder:hover .placeholder-dimensions {
    background: #f55631;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .static-banner-placeholder {
        padding: 40px 20px;
    }
    
    .placeholder-icon {
        width: 60px;
        height: 60px;
    }
    
    .placeholder-icon i {
        font-size: 30px;
    }
    
    .placeholder-title {
        font-size: 22px;
    }
    
    .placeholder-text {
        font-size: 14px;
    }
    
    .placeholder-dimensions {
        font-size: 12px;
        padding: 6px 15px;
    }
}


/* ------------------------
    Icon Visibility on Light Backgrounds
------------------------*/

/* Make icons visible on light/white backgrounds - but NOT on homepage About section or company info section */
.light-bg i[class^="bi-"]:before,
.light-bg i[class*=" bi-"]:before {
    color: #f55631 !important;
    -webkit-text-stroke: 2px #f55631 !important;
    text-stroke: 2px #f55631 !important;
}

/* Exception: Keep company info section icons white */
.company-info-section .info-icon i:before {
    color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    font-weight: 400 !important;
}

/* Keep globe icon custom styling on light backgrounds */
.light-bg .globe-icon-custom:before {
    color: #f55631 !important;
    -webkit-text-stroke: 2px #ffffff !important;
    text-stroke: 2px #ffffff !important;
}

/* Featured icons on light backgrounds */
.light-bg .featured-icon i:before {
    color: transparent !important;
    -webkit-text-stroke: 2px #f55631 !important;
    text-stroke: 2px #f55631 !important;
}


/* ------------------------
    Contact Page Icon Overrides
------------------------*/

/* Force white color for icons on contact page form section */
.form-section .featured-icon i:before,
.form-section i.text-white:before {
    color: transparent !important;
    -webkit-text-stroke: 2px #ffffff !important;
    text-stroke: 2px #ffffff !important;
}

/* White divider for contact page sections */
.form-section .title-divider-separator {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%) !important;
}

.form-section .title-divider-separator:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>') !important;
}

/* White divider for primary-bg sections */
.primary-bg .title-divider-separator {
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 35%, transparent 65%, #ffffff 65%, #ffffff 100%) !important;
}

.primary-bg .title-divider-separator:before {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>') !important;
}


/* Product specification tables */
.product-spec-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.product-spec-table th {
    background: linear-gradient(135deg, #009B4D 0%, #00b359 100%);
    color: #ffffff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border: none;
    border-right: 2px solid rgba(255,255,255,0.1);
}

.product-spec-table td {
    padding: 10px 15px;
    border: 1px solid #e8e8e8;
    background-color: #ffffff;
}

.product-spec-table tr:nth-child(even) td {
    background-color: #f8fdf9;
}

.product-spec-table tr:hover td {
    background-color: #f0f9f4;
}

.product-price {
    color: #009B4D;
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-left: 4px solid #f55631;
    display: inline-block;
    border-radius: 4px;
}

.product-variant {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e6eaf5;
}

.product-variant-title {
    color: #2d3142;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description {
    margin-top: 25px;
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 15px;
    color: #4f5d75;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.product-description ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #4f5d75;
}

.product-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009B4D;
    font-weight: bold;
    font-size: 18px;
}

.product-description strong {
    color: #2d3142;
    font-weight: 600;
}

.product-variant:last-child {
    border-bottom: none;
}

/* Product Images */
.product-variant img {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-variant img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,155,77,0.15);
}

/* Product Page Header */
.light-bg .theme-title h1 {
    color: #2d3142;
    margin-bottom: 20px;
}

.light-bg .theme-title .lead {
    color: #4f5d75;
    font-size: 18px;
    line-height: 1.7;
}

/* Product Details Heading */
.product-variant h5 {
    color: #2d3142;
    font-weight: 600;
    border-bottom: 2px solid #009B4D;
    padding-bottom: 8px;
    display: inline-block;
}

.product-variant-title {
    color: #4f5d75;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4f5d75;
    margin: 20px 0;
}

.product-features {
    margin: 20px 0;
}

.product-features h5 {
    color: #4f5d75;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.product-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009B4D;
    font-weight: bold;
}


/* ===================================
   Company Info Section
====================================== */
.company-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,155,77,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.company-info-section .container {
    position: relative;
    z-index: 1;
}

.company-info-section .welcome-text {
    color: #4f5d75;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-info-section .company-name {
    color: #009B4D;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.company-info-section .company-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f55631, transparent);
}

.info-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,155,77,0.08);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #009B4D 0%, #00b359 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.info-box:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,155,77,0.15);
    border-color: rgba(0,155,77,0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #009B4D 0%, #00b359 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,155,77,0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-box:hover .info-icon::before {
    opacity: 1;
}

.info-box:hover .info-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,155,77,0.35);
}

.info-icon i {
    font-size: 30px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.98;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.info-box:hover .info-icon i {
    transform: scale(1.08);
    opacity: 1;
}

.info-content {
    flex: 1;
}

.info-content h5 {
    color: #2d3142;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.info-box:hover .info-content h5 {
    color: #009B4D;
}

.info-content p {
    color: #4f5d75;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Add subtle animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box {
    animation: fadeInUp 0.6s ease-out backwards;
}

.info-box:nth-child(1) { animation-delay: 0.1s; }
.info-box:nth-child(2) { animation-delay: 0.2s; }
.info-box:nth-child(3) { animation-delay: 0.3s; }
.info-box:nth-child(4) { animation-delay: 0.4s; }
.info-box:nth-child(5) { animation-delay: 0.5s; }
.info-box:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .company-info-section .company-name {
        font-size: 36px;
    }
    
    .info-box {
        padding: 30px 25px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
    
    .info-icon i {
        font-size: 26px;
        font-weight: 300;
    }
}

@media (max-width: 767px) {
    .company-info-section .company-name {
        font-size: 32px;
    }
    
    .info-box {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .info-icon i {
        font-size: 24px;
        font-weight: 300;
    }
    
    .info-content h5 {
        font-size: 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* ------------------------
    Products Page - Product Cards
------------------------*/

.products-hero {
    background: linear-gradient(135deg, #f4f9fd 0%, #e8f5e9 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.products-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--themeht-text-color);
    margin-bottom: 10px;
}

.products-hero p {
    color: var(--themeht-body-color);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
    color: inherit;
    text-decoration: none;
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.04);
}

.product-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.product-card-img-wrap::after {
    content: 'View Details';
    position: absolute;
    inset: 0;
    background: rgba(245, 86, 49, 0.82);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-card:hover .product-card-img-wrap::after {
    opacity: 1;
}

.product-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--themeht-secondary-color);
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--themeht-text-color);
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: var(--themeht-typography-secondary-font-family);
}

.product-card-desc {
    font-size: 14px;
    color: var(--themeht-body-color);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--themeht-primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.product-card-link svg {
    transition: transform 0.2s ease;
}

.product-card:hover .product-card-link svg {
    transform: translateX(4px);
}

.products-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

/* ------------------------
    Individual Product Detail Page
------------------------*/
.product-detail-hero {
    background: #f4f9fd;
    padding: 30px 0 20px;
    border-bottom: 1px solid #e8e8e8;
}

.product-breadcrumb {
    font-size: 13px;
    color: var(--themeht-body-color);
    margin-bottom: 0;
}

.product-breadcrumb a {
    color: var(--themeht-body-color);
}

.product-breadcrumb a:hover {
    color: var(--themeht-primary-color);
}

.product-breadcrumb .separator {
    margin: 0 6px;
    opacity: 0.5;
}

.product-detail-section {
    padding: 50px 0 70px;
}

.product-detail-img-wrap {
    position: sticky;
    top: 100px;
}

.product-detail-img-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.product-detail-badge {
    display: inline-block;
    background: var(--themeht-secondary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.product-detail-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--themeht-text-color);
    line-height: 1.25;
    margin-bottom: 6px;
}

.product-detail-price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    background: #fff3ee;
    border-left: 4px solid #f55631;
    padding: 10px 16px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 20px;
}

.product-detail-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--themeht-body-color);
    display: block;
    margin-top: 2px;
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

.product-spec-table th,
.product-spec-table td {
    padding: 9px 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: top;
}

.product-spec-table th {
    background: #009B4D;
    font-weight: 600;
    color: #ffffff;
    width: 40%;
}

.product-spec-table td {
    background: #ffffff;
    color: var(--themeht-body-color);
}

.product-spec-table tr:nth-child(even) td {
    background: #f0faf5;
}

.product-detail-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--themeht-body-color);
    margin-bottom: 16px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--themeht-primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-enquire:hover {
    background: #d94520;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--themeht-text-color);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 6px;
    border: 2px solid #ddd;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-back:hover {
    border-color: var(--themeht-primary-color);
    color: var(--themeht-primary-color);
    text-decoration: none;
}
