@charset "UTF-8";
/*
[Master Stylesheet]
Theme Name:     Factory360 – Multipurpose Industry & Factory HTML5 Template
Version:        1.0
Author:         cmBThemes

>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#1.0	Template Default - Factory & Industry

*/
/*==============================
Text colors
==============================*/
.text-cus-primary {
  color: var(--primary-color) !important;
}

.text-cus-orange {
  color: var(--orange-color) !important;
}

.text-cus-steel-gray {
  color: var(--steel-gray-color) !important;
}

.text-cus-iron-gray {
  color: var(--iron-gray-color) !important;
}

.text-cus-light {
  color: var(--light-color) !important;
}

.text-cus-light-blue {
  color: var(--light-blue-color) !important;
}

/*==============================
Background colors
==============================*/
.bg-cus-primary {
  background-color: var(--primary-color) !important;
}

.bg-cus-orange {
  background-color: var(--orange-color) !important;
}

.bg-cus-steel-gray {
  background-color: var(--steel-gray-color) !important;
}

.bg-cus-iron-gray {
  background-color: var(--iron-gray-color) !important;
}

.bg-cus-light {
  background-color: var(--light-color) !important;
}

.bg-cus-light-blue {
  background-color: var(--light-blue-color) !important;
}

/*==============================
Border colors
==============================*/
.border-cus-primary {
  border-color: var(--primary-color) !important;
}

.border-cus-orange {
  border-color: var(--orange-color) !important;
}

.border-cus-steel-gray {
  border-color: var(--white-color) !important;
}

.border-cus-iron-gray {
  border-color: var(--iron-gray-color) !important;
}

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

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

/*==============================
Border radius
==============================*/
.border-cus-radius {
  border-radius: var(--border-radius);
}

.border-cus-radius-lg {
  border-radius: var(--border-radius-lg);
}

.border-cus-radius-sm {
  border-radius: var(--border-radius-sm);
}

/*==============================
Section padding
==============================*/
.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-padding-top {
  padding-top: var(--section-padding);
}

.section-padding-bottom {
  padding-bottom: var(--section-padding);
}

.section-padding-sm {
  padding-top: var(--section-padding-sm);
  padding-bottom: var(--section-padding-sm);
}

.section-padding-lg {
  padding-top: var(--section-padding-lg);
  padding-bottom: var(--section-padding-lg);
}

/*==============================
Text style
==============================*/
/* eye brow */
.text-eyebrow {
  display: inline-block;
  padding: 6px 15px;
  background: var(--steel-gray-color);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--light-color);
  border: 1px solid rgba(var(--steel-gray-color-rgb), 0.08);
}

/* Hightlight */
.text-highlight {
  background: linear-gradient(90deg, var(--primary-color), var(--light-blue-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* subheadline */
.text-subheadline {
  margin-bottom: 1rem;
  color: rgba(var(--steel-gray-color-rgb), 0.55);
  font-weight: 600;
}

/* Text CTA Linear Gradient style 1 */
.text-cta-lg {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.85), rgba(var(--primary-color-rgb), 0.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text Outline */
.text-outline {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
}

/* Text vertical */
.text-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* small */
.text-small {
  font-size: 0.875rem;
}

/*==============================
Head badge
==============================*/
.head-badge {
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  background-color: var(--light-color);
  border-radius: var(--border-radius-lg);
  padding: 0.5rem 1rem;
}

/*==============================
Grid Pattern
==============================*/
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/*==============================
Iframe
==============================*/
.ifCus {
  width: 100%;
  height: 100%;
}

/*==============================
Responsive video
==============================*/
.responsive-video {
  width: 100%;
  height: auto;
}

/*==============================
List Unordered
==============================*/
.list-unordered {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.list-unordered li {
  padding: 5px;
}

/*==============================
List Ordered
==============================*/
.list-ordered {
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 0;
}
.list-ordered li {
  counter-increment: circle-counter;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}
.list-ordered li::before {
  content: counter(circle-counter);
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color);
}

/*==============================
List Icon
==============================*/
.list-icon {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.list-icon li {
  padding: 5px;
}
.list-icon li::before {
  font-family: "bootstrap-icons";
  content: "\f27b";
  margin-right: 8px;
  line-height: 1px;
  font-size: 0.7rem;
}

/*==============================
Blockquote comment style
==============================*/
.blockquote-comment {
  border-radius: var(--border-radius);
  padding: 2rem;
  font-size: 1.125rem;
  background-color: var(--light-color);
  box-shadow: var(--box-shadow-sm);
}
.blockquote-comment .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.55;
}

/*==============================
Keyframe
==============================*/
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.75;
    border-width: 5px;
  }
  60% {
    transform: scale(1.6);
    opacity: 0.6;
    border-width: 3px;
  }
  100% {
    transform: scale(3.6);
    opacity: 0;
    border-width: 0.8px;
  }
}
/*==============================
// Css variables
==============================*/
:root {
  /* Color */
  --primary-color: #0A4D8C;
  --orange-color: #FF7A00;
  --steel-gray-color: #1E1E1E;
  --iron-gray-color: #2F2F2F;
  --light-color: #F3F4F6;
  --light-blue-color: #4DA3FF;
  --primary-color-rgb: 10,
  77,
  140;
  --orange-color-rgb: 255,
  122,
  0;
  --steel-gray-color-rgb: 30,
  30,
  30;
  --iron-gray-color-rgb: 47,
  47,
  47;
  --light-color-rgb: 243,
  244,
  246;
  --light-blue-color-rgb: 77,
  163,
  255;
  --mask-color: rgba(0, 0, 0, 0.15);
  /* Fonts */
  --font-head: Montserrat, sans-serif;
  --font-text: Inter, sans-serif;
  --font-size: 16px;
  /* Line height */
  --line-height: 1.6;
  --line-height-lg: 2;
  --line-height-sm: 1.4;
  /* Section padding */
  --section-padding: clamp(4rem, 6vw, 6rem);
  --section-padding-lg: clamp(5rem, 8vw, 8rem);
  --section-padding-sm: clamp(3rem, 4vw, 4rem);
  /* Border radius */
  --border-radius: 16px;
  --border-radius-lg: 32px;
  --border-radius-sm: 8px;
  /* Box shadow */
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  --box-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.55);
  --box-shadow-sm: 0 5px 10px rgba(0, 0, 0, 0.35);
  /* Font size icon */
  --font-size-icon: 1.5rem;
  --font-size-icon-sm: 1.3rem;
  --font-size-icon-lg: 2.5rem;
}

/*============================== 	
Scrollbar Format
==============================*/
*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: var(--light-color);
}

*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--orange-color);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-color);
}

/*==============================
Body & a
==============================*/
body {
  font-family: var(--font-text);
  font-size: var(--font-size);
  color: var(--steel-gray-color);
  line-height: var(--line-height);
}
body ::selection {
  background: var(--orange-color);
  color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}
a:hover {
  color: var(--orange-color);
}

/*==============================
Heading h1-h6
==============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 1rem 0;
}

h1 {
  font-size: clamp(2.2rem, 2.2rem + (3rem - 2.2rem) * (100vw - 575px) / (1400px - 575px), 3rem);
}

h2 {
  font-size: clamp(1.8rem, 1.8rem + (2.5rem - 1.8rem) * (100vw - 575px) / (1400px - 575px), 2.5rem);
}

h3 {
  font-size: clamp(1.4rem, 1.4rem + (2rem - 1.4rem) * (100vw - 575px) / (1400px - 575px), 2rem);
}

h4 {
  font-size: clamp(1.25rem, 1.25rem + (1.5rem - 1.25rem) * (100vw - 575px) / (1400px - 575px), 1.5rem);
}

h5 {
  font-size: clamp(1.15rem, 1.15rem + (1.35rem - 1.15rem) * (100vw - 575px) / (1400px - 575px), 1.35rem);
}

h6 {
  font-size: clamp(1.05rem, 1.05rem + (1.15rem - 1.05rem) * (100vw - 575px) / (1400px - 575px), 1.15rem);
}

/*==============================
Blockquote
==============================*/
blockquote {
  font-style: italic;
  font-size: 1.25rem;
  border-left: 4px solid rgba(var(--primary-color-rgb), 0.55);
  padding-left: 1rem;
  color: var(--iron-gray-color);
  margin: 1.5rem 0;
}

/*==============================
Pre
==============================*/
pre {
  background: var(--steel-gray-color);
  color: var(--light-color);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  overflow: auto;
}

/*==============================
Form
==============================*/
input[type=text],
input[type=number],
input[type=email],
input[type=password],
select,
textarea {
  border: 1px solid rgba(var(--primary-color-rgb), 0.55) !important;
  padding: 0.5rem 1rem;
  width: 100%;
  transition: all 0.3s;
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--orange-color) !important;
  box-shadow: 0 0 0 0.35rem rgba(var(--orange-color-rgb), 0.25) !important;
}
input[type=text]:focus-visible,
input[type=number]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  /* Firefox */
}
.select-wrapper::after {
  font-family: "bootstrap-icons";
  content: "\f282";
  position: absolute;
  font-size: 15px;
  right: 1rem;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

input[type=range] {
  outline: none;
}

input[type=checkbox] {
  margin: 5px;
  accent-color: var(--primary-color);
  width: 16px;
  height: 16px;
}
input[type=checkbox]:focus {
  border: 1px solid var(--orange-color) !important;
  box-shadow: 0 0 0 0.35rem rgba(var(--orange-color-rgb), 0.25);
}
input[type=checkbox]:focus-visible {
  outline: none;
}

/* Track */
input[type=range]::-webkit-slider-runnable-track {
  background: rgba(var(--primary-color-rgb), 0.15);
}

/* Thumb */
input[type=range]::-webkit-slider-thumb {
  background: rgba(var(--primary-color-rgb), 0.75);
  border-color: rgba(var(--primary-color-rgb), 0.15);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.35);
  cursor: pointer;
}

/* Firefox */
input[type=range]::-moz-range-thumb {
  background: rgba(var(--primary-color-rgb), 0.75);
  border-color: rgba(var(--primary-color-rgb), 0.15);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.35);
  cursor: pointer;
}

/* Nav Main */
.nav-main .nav-item .nav-link {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/*==============================
Go To Top
==============================*/
.scroll-top {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  border-radius: 50px;
  background-color: rgba(var(--primary-color-rgb), 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 980;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.scroll-top svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.scroll-top .progress-pill__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
}

.scroll-top .progress-pill__progress {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background-color: var(--orange-color);
}

.scroll-top:hover i {
  animation-play-state: paused;
}

.scroll-top i {
  font-size: 0.8rem;
  z-index: 2;
  animation: arrow-bounce 1.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes arrow-bounce {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}
/* Scroll for more */
.scroll-cta {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  bottom: 20px;
  animation: fadeIn 2s ease-in-out;
  z-index: 99;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.scroll-cta p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.scroll-cta .mouse {
  width: 28px;
  height: 45px;
  border: 1px solid white;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  background-color: rgba(var(--orange-color-rgb), 0.55);
  transition: background-color 0.3s ease;
}

.scroll-cta .mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

.scroll-cta .scroll-arrow {
  font-size: 1.5rem;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
  color: var(--orange-color);
}

.scroll-cta:hover .mouse {
  background-color: rgba(var(--orange-color-rgb), 0.85);
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@media (min-width: 992px) {
  .scroll-cta {
    display: block;
  }
}
/*==============================
Preloader
==============================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preloader .gear {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 20px;
}

.preloader .gear::before, .preloader .gear::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--orange-color);
  border-bottom-color: var(--orange-color);
  animation: spin 3s linear infinite;
}

.preloader .gear::after {
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  animation-direction: reverse;
}

/*==============================
Button base
==============================*/
.btn-cus {
  position: relative;
  padding: 0.5rem 2rem;
  border: none;
  background-color: transparent;
  text-align: center;
  display: inline-block;
}

.btn-cus-lg {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

.btn-cus-sm {
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
}

/*==============================
Button cus primary
==============================*/
.btn-cus-primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-primary.active {
  border-color: var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-primary:hover {
  color: #fff;
  border: 1px solid var(--orange-color);
  background-color: var(--orange-color);
}

.btn-cus-primary:active {
  color: #fff;
  border: 1px solid rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

/*==============================
Button cus outline
==============================*/
.btn-cus-outline-primary {
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-outline-primary:hover {
  background-color: #fff;
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-outline-primary:active {
  color: #fff;
  border: 1px solid rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

/*==============================
Button cus outline circle
==============================*/
.btn-cus-outline-circle {
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  border-radius: 3rem;
  color: var(--primary-color);
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-outline-circle:hover {
  border: 1px solid var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-outline-circle:active {
  color: #fff;
  border: 1px solid rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

/*==============================
Button cus line
==============================*/
.btn-cus-line {
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  border-left: none;
  border-right: none;
  color: var(--primary-color);
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-line:hover {
  color: var(--orange-color);
  border-top: 1px solid var(--orange-color);
  border-bottom: 1px solid var(--orange-color);
}

.btn-cus-line:active {
  color: #fff;
  border-color: rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

/*==============================
Button cus circle effect
==============================*/
.btn-cus-circle-ripple {
  background-color: rgba(var(--light-color-rgb), 0.55);
  backdrop-filter: blur(20px);
  color: var(--primary-color);
  width: 5rem;
  height: 5rem;
  line-height: 0;
  font-size: 2rem;
  border-radius: 50%;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-circle-ripple:hover {
  backdrop-filter: blur(10px);
  color: var(--orange-color);
  background-color: rgba(var(--light-color-rgb), 0.75);
}

.btn-cus-circle-ripple i,
.btn-cus-circle-ripple span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}

.btn-cus-circle-ripple::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 0px solid rgba(var(--light-color-rgb), 0.75);
  animation: ripple 3s ease-out infinite;
  pointer-events: none;
  top: 0;
  left: 0;
}

/*==============================
Button cus gear
==============================*/
.btn-cus-gear {
  background-color: var(--orange-color);
  border: 1px solid var(--orange-color);
  padding: 0.5rem 2rem 0.5rem 3.5rem;
  color: #fff;
  border-radius: 3rem;
  margin-left: 1rem;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
}

.btn-cus-gear.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-cus-gear:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.btn-cus-gear:hover::before {
  animation: spin 5s linear infinite;
}

.btn-cus-gear:active {
  color: #fff !important;
  border: 1px solid var(--orange-color) !important;
}

.btn-cus-gear::before {
  font-family: "bootstrap-icons";
  content: "\f3e2";
  position: absolute;
  font-size: 3.5rem;
  color: var(--orange-color);
  left: -1.1rem;
  line-height: 0;
  top: 1.2rem;
  animation: spin 50s linear infinite;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn-cus-gear.btn-cus-lg {
  padding: 1rem 2rem 1rem 5rem;
}

.btn-cus-gear.btn-cus-lg::before {
  font-size: 5.5rem;
  left: -1.6rem;
  top: 1.7rem;
}

.btn-cus-gear.btn-cus-sm {
  padding: 0.3rem 1rem 0.3rem 3rem;
  font-size: 0.8rem;
}

.btn-cus-gear.btn-cus-sm::before {
  font-size: 3rem;
  left: -0.85rem;
  top: 0.9rem;
}

/*==============================
Button cus gradient
==============================*/
.btn-cus-gradient {
  border: 0;
  color: #eee;
  border-radius: 3rem;
  overflow: hidden;
  z-index: 0;
}

.btn-cus-gradient.active {
  color: #fff;
}

.btn-cus-gradient.active::before {
  opacity: 0;
}

.btn-cus-gradient.active::after {
  opacity: 1;
}

.btn-cus-gradient:hover {
  color: #fff;
}

.btn-cus-gradient:hover::before {
  opacity: 0;
}

.btn-cus-gradient:hover::after {
  opacity: 1;
}

.btn-cus-gradient:active {
  color: var(--light-color) !important;
}

.btn-cus-gradient::before, .btn-cus-gradient::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s;
}

.btn-cus-gradient::before {
  background-image: linear-gradient(90deg, var(--primary-color), var(--light-blue-color));
}

.btn-cus-gradient::after {
  background-image: linear-gradient(90deg, var(--light-blue-color), var(--orange-color));
  opacity: 0;
}

/*==============================
Button cus play
==============================*/
.btn-play {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn-play .bi-gear-wide {
  font-size: 6rem;
  color: var(--orange-color);
  line-height: 0;
  animation: spin 20s linear infinite;
}

.btn-play .bi-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--orange-color);
  transition: font-size 0.3s;
}

.btn-play:hover .bi-gear-wide {
  animation: spin 5s linear infinite;
}

.btn-play:hover .bi-play {
  font-size: 2.2rem;
}

/*==============================
Button cus play style 2
==============================*/
.btn-play-s2 {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 2rem;
  color: var(--orange-color);
  cursor: pointer;
}

.btn-play-s2:hover {
  background: rgba(255, 255, 255, 0.45);
}

/*==============================
Button cus left line
==============================*/
.btn-cus-left-line {
  border: 1px solid var(--primary-color);
  color: #fff;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
  z-index: 0;
}

.btn-cus-left-line.active {
  border-color: var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-left-line:hover {
  color: #fff;
  border: 1px solid var(--orange-color);
}

.btn-cus-left-line:hover::after {
  width: 11%;
}

.btn-cus-left-line:active {
  color: #fff;
  border: 1px solid rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

.btn-cus-left-line::before, .btn-cus-left-line::after {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  z-index: -1;
}

.btn-cus-left-line::before {
  width: calc(100% + 2px);
  background-color: var(--primary-color);
}

.btn-cus-left-line::after {
  width: 10px;
  background-color: var(--orange-color);
  transition: width 0.3s;
}

/*==============================
Button cus right line
==============================*/
.btn-cus-right-line {
  border: 1px solid var(--primary-color);
  color: #fff;
  transition: color 0.3s, border 0.3s, background-color 0.3s;
  z-index: 0;
}

.btn-cus-right-line.active {
  border-color: var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-right-line:hover {
  color: #fff;
  border: 1px solid var(--orange-color);
}

.btn-cus-right-line:hover::after {
  width: 11%;
}

.btn-cus-right-line:active {
  color: #fff;
  border: 1px solid rgba(var(--orange-color-rgb), 0.75);
  background-color: rgba(var(--orange-color-rgb), 0.75);
}

.btn-cus-right-line::before, .btn-cus-right-line::after {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  right: -1px;
  top: -1px;
  z-index: -1;
}

.btn-cus-right-line::before {
  width: calc(100% + 2px);
  background-color: var(--primary-color);
}

.btn-cus-right-line::after {
  width: 10px;
  background-color: var(--orange-color);
  transition: width 0.3s;
}

/*==============================
Button cus orange
==============================*/
.btn-cus-orange {
  background: var(--orange-color);
  border: none;
  color: #fff;
  transition: color 0.3s;
  font-weight: 600;
  overflow: hidden;
}

.btn-cus-orange.active {
  color: #fff;
}

.btn-cus-orange:hover {
  color: #f1f2f3;
}

.btn-cus-orange:hover::before {
  transform: translateX(0);
}

.btn-cus-orange:active {
  color: #fff;
  font-weight: 600;
}

.btn-cus-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  transform: translateX(-100%);
  transition: 0.4s;
}

/*==============================
Button cus light led
==============================*/
.btn-cus-light-led {
  position: relative;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue-color));
  box-shadow: 0 10px 30px rgba(var(--light-blue-color-rgb), 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.35s ease;
}

.btn-cus-light-led:hover {
  box-shadow: 0 14px 40px rgba(var(--light-blue-color-rgb), 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  color: #f1f2f3;
}

.btn-cus-light-led:hover::after {
  opacity: 1;
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

.btn-cus-light-led:active {
  transform: scaleX(1.05) scaleY(0.97);
}

.btn-cus-light-led::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
}

/*==============================
Button cus corner
==============================*/
.btn-cus-corner {
  background-color: #fff;
  background: linear-gradient(135deg, rgba(var(--orange-color-rgb), 0.35), var(--orange-color));
  color: white;
  border: none;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cus-corner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(var(--orange-color-rgb), 0.5);
}

.btn-cus-corner:hover span {
  transform: translateX(6px);
}

.btn-cus-corner span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/*==============================
Button cus Skew
==============================*/
.btn-cus-skew {
  background: var(--primary-color);
  color: white;
  overflow: hidden;
  transition: transform 0.4s;
}

.btn-cus-skew:hover {
  background: var(--orange-color);
  transform: skewX(-5deg);
  color: white;
}

/*==============================
Button cus zoom in
==============================*/
.btn-cus-zi {
  background: var(--orange-color);
  color: var(--light-color);
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s;
}

.btn-cus-zi:hover {
  background: rgba(var(--orange-color-rgb), 0.75);
  letter-spacing: 4px;
}

/*==============================
Button cus text cta (transition icon to right)
==============================*/
.btn-cus-text-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: var(--orange-color);
  transition: 0.3s;
}

.btn-cus-text-cta i {
  transition: 0.3s;
}

.btn-cus-text-cta:hover i {
  transform: translateX(5px);
}

/*==============================
Button cus text cta style 2 (border bottom Hover show width 100%)
==============================*/
.btn-cus-text-rm {
  position: relative;
}

.btn-cus-text-rm::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ffaa00;
  transition: 0.3s;
}

.btn-cus-text-rm:hover::after {
  width: 100%;
}

/*==============================
Button cus text cta style 3 (bottom line)
==============================*/
.btn-cus-text-s3 {
  position: relative;
  border-bottom: 2px solid var(--orange-color);
  padding-bottom: 0.5rem;
  letter-spacing: 3px;
}

/*==============================
Button cus text cta style 4 (letter spacing change)
==============================*/
.btn-cus-text-ls {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-cus-text-ls:hover {
  color: var(--orange-color);
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(var(--primary-color-rgb), 0.5), rgba(30, 30, 30, 0.8)), url("../images/hero/1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

/* Demo Cards */
.demo-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  margin-bottom: 30px;
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.demo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.demo-card:hover .demo-img {
  background-position: bottom center;
}
.demo-card .demo-img {
  height: 400px;
  background-size: cover;
  background-position: top center;
  transition: 2s ease-in-out;
}
.demo-card .demo-title {
  padding: 20px;
  text-align: center;
  background: white;
  border-top: 1px solid #eee;
}
.demo-card .badge-new {
  background: var(--orange-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Features */
.feature-box {
  padding: 40px;
  border-radius: 10px;
  background: #F3F4F6;
  height: 100%;
  transition: 0.3s;
}
.feature-box:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-box .feature-icon {
  font-size: 2.5rem;
  color: var(--orange-color);
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */