@font-face {
    font-family: BaseNeueTrial;
    src: url('../assets/fonts/BaseNeueTrial-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: BaseNeueTrialMedium;
    src: url('../assets/fonts/BaseNeueTrial-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: BaseNeueTrialSemiBold;
    src: url('../assets/fonts/BaseNeueTrial-SemiBold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: BaseNeueTrialBold;
    src: url('../assets/fonts/BaseNeueTrial-Bold.woff2') format('woff2');
    font-weight: 400;
}

* {
    font-family: BaseNeueTrial;
    font-weight: 400;
}

.bg-black {
    background-color: #000000 !important;
}

.offcanvas-body {
    background: #000;
    text-align: start;
}


.navbar {
    backdrop-filter: blur(35px) brightness(75%) saturate(70%);
    padding: 15px 10px;
}



.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-size: 18px;
    font-weight: 500px;
}

.navbar-toggler-icon {
    color: #fff;
}

.icon-links i {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.primary-button {
    color: #fff;
    background-color: #626262;
    border-radius: 10px;
    padding: 10px 25px;
    border: 1px solid #fff;
    font-size: 17px;
    font-weight: 500px;
    transition: box-shadow 0.3s ease;
}

.primary-button:hover {
    background-color: #626262;
    color: #fff;
    box-shadow: inset -15px 0 5px rgba(49, 255, 253, 0.5), inset 15px 0 5px rgba(49, 255, 253, 0.5);
}

.hero-video {
    object-fit: fill;
    height: 100%;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.main-logo {
    width: 25% !important;
}


hr {
    background: #fff;
    padding: 1px 0px;
    font-family: BaseNeueTrial;
}

.text-gradient {
    background: -webkit-linear-gradient(#F9021D, #ff4343);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: BaseNeueTrial;
}

.about-section-span {
    font-size: 6rem !important;
    font-family: BaseNeueTrialMedium;
}

h1 {
    font-size: 6rem !important;
    font-family: BaseNeueTrialMedium;
}

h2 {
    color: #fff;
    font-size: 3rem !important;
    padding: 25px 0px;
    font-family: BaseNeueTrialSemiBold;
}

h3 {
    color: #fff;
    font-size: 2rem !important;
    padding: 25px 20px;
    font-family: BaseNeueTrialMedium;
}

h4 {
    color: #fff;
    font-size: 1.5rem !important;
    font-family: BaseNeueTrialMedium;
}

h5 {
    color: #fff;
    font-size: 1.25rem !important;
    font-family: BaseNeueTrialMedium;
}

h6 {
    color: #fff;
    font-size: 1rem !important;
    font-family: BaseNeueTrialMedium;
}

.signp-text-color {
    color: #31FFFD;
    font-weight: 600;
}

.cards {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.section-bg {
    background: #202020;
}

.border-top {
    background: #5a5a5a;
}

.border-bottom {
    background: #5a5a5a;
}

/* our client images */

.clients-logos img {
    max-height: 60px;
    margin: 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.text-color {
    color: #31FFFD;
}

/* image Hover overlay */
.image-hover-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 35px;
}

.image-hover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 0, 0.3));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover-wrapper:hover .image-hover-overlay {
    opacity: 1;
}

.image-hover h3 {
    position: absolute;
    bottom: 20px;
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, z-index 0.3s ease;
    z-index: 1;
}

.image-hover-caption {
    position: absolute;
    bottom: 20px;
    padding: 0px 20px;
    font-size: 16px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 0;
}

.image-hover-caption h3 {
    bottom: 100%;
}

.image-hover-wrapper:hover .image-hover-caption {
    opacity: 1;
    transform: translateY(0);
}

.image-hover-wrapper:hover h3 {
    transform: translateY(-100%);
    z-index: 2;
}


.text-on-image-left {
    position: absolute;
    top: 50px;
    left: 50px;
}

.text-on-image-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Product Cards */

.solution-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-item {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.solution-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-wrapper:hover .solution-overlay {
    opacity: 1;
}

.solution-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    color: white;
    padding: 0 20px;
}

.solution-caption h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.solution-wrapper:hover .solution-caption h3 {
    transform: translateY(-20px);
}

.solution-wrapper:hover .solution-caption {
    opacity: 1;
}


/* animation */

.animation {
    display: flex;
    align-items: center;
}

.animation .anm_mod.full {
    width: 100%;
}

.animation .anm_mod.delay {
    transition: all 0.75s ease;
}

.animation .anm_mod.delay1 {
    transition: all 1s ease;
}

.animation .anm_mod.delay2 {
    transition: all 1.25s ease;
}

.animation .anm_mod.delay3 {
    transition: all 1.5s ease;
}

.animation .anm_mod.delay4 {
    transition: all 1.75s ease;
}

.animation .anm_mod.delay5 {
    transition: all 2s ease;
}

.animation .anm_mod.delay6 {
    transition: all 2.25s ease;
}

.animation .anm_mod {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: all 0.5s ease;
}

.animation .anm_mod.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.custom-card {
    height: 400px;
    width: 100%;
    background-color: #333;
    color: white;
    border-radius: 35px;
    border: 1px solid #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-top: 25px;
}

.custom-card img {
    width: 100%;
    height: auto;
    margin-top: -40px;
}

.custom-card .card-title {
    margin-top: 10px;
    font-weight: 700px;
}

.custom-card .card-price {
    color: #bbb;
}

.custom-card-bottom {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 80%;
}

button a {
    color: #fff;
    text-decoration: none;
}

button a:hover {
    text-decoration: none;
    color: #31FFFD;
}


/* Footer */

.footer {
    background-color: #202020;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #31FFFD;
}

.footer .logo img {
    max-width: 100px;
}

.footer hr {
    border-top: 1px solid #555;
}

/* Peoduct Page css */

.product-card {
    background-color: #222;
    border: none;
    border-radius: 8px;
}

.product-image {
    height: auto;
}

/* Shop Side Bar */

.sidebar {
    background-color: #000;
    color: #fff;
    padding: 20px;
    width: 300px;
}

.sidebar h5 {
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.show-button-text {
    font-size: 0.75rem;
}

/* About us */

.video-flex {
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.row.align-items-stretch > .col-md-8,
.row.align-items-stretch > .col-md-4 {
    display: flex;
    align-items: stretch;
}

.about-section {
    margin-top: 150px;
}

.product-secion-span {
    font-size: 18px;
    font-family: BaseNeueTrialMedium;
}

.about-description {
    line-height: 1.8;
}

.about-images img {
    border-radius: 15px;
}

.about-border {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid #31FFFD;
}

.about-us-section-text {
    font-size: 6rem;
}

.why-choose-us {
    position: relative;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.why-choose-us .why {
    font-size: 5rem;
    color: #fff;
    font-weight: semi-bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.why-choose-us .choose {
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    color: #fff;
    padding: 0 0;
}

.why-choose-us .us {
    font-size: 11rem;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translateY(-50%);
    white-space: nowrap;
    margin-top: 12px;
}

/*Traking order*/

.tracking-container {
    margin: 5% auto;
    height: fit-content;
    background-color: #202020;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #fff;
}

.tracking-title {
    padding: 0 0;
}

.tracking-content {
    text-align: start;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding-right: 50px;
}

.form-label {
    color: #fff;
}

.form-control {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 15px !important;
    border-radius: 0.75rem !important;
}

.form-control:focus {
    background-color: #444;
    color: #fff;
    border-color: #e63946;
    box-shadow: none;
}


/* Contact */


.login-container {
    backdrop-filter: blur(15px) brightness(75%) saturate(70%);
    border: 1px solid #fff;
    border-radius: 45px;
    height: 100%;
}

.signup-img-container {
    border: 1px solid #fff;
    border-radius: 45px;
    height: 100%;
}

.signup-img-container img{
    border-radius: 45px;
    height: 100%;
}

.text-gray {
    color: #AFAFAF;
}


/* Product Detail Page */


.product-image img {
    width: 100%;
    border-radius: 8px;
}

.thumbnails img {
    width: 100%;
    cursor: pointer;
}


/* Cart */



.progress-bar-step {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    text-align: center;
    color: #999;
}

.step.active {
    color: #fff;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #222;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 10px;
    margin-bottom: 25px;
    justify-content: space-between;
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-left-section {
    padding-right: 30px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    padding: 10px;
}

.card-summary {
    background-color: #222;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid #fff;
}

.btn-danger {
    color: #fff;
    background-color: #f00;
    border: 1px solid #f00;
}

.btn-danger:hover {
    background-color: #b30000;
    border: 1px solid #f00;
}


/* checkout */

.table {
    color: #fff;
}

.checkout-container {
    background: #202020;
    border: 1px solid #fff;
    border-radius: 45px;
    height: 100%;
}

.checkout-padding {
    padding-right: 30px;
}


/* card Slider  */

.center-slider {
    position: relative;
    width: 100%;
    height: 550px;
}

.center-slider .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.center-slider .slick-center .slick-slide {
    opacity: 1;
    transform: scale(1);
}

.center-slider .slick-slide>div {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slick-dots {
    position: absolute !important;
    bottom: 10px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li button {
    font-size: 20px !important;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: red !important;
    border: 0;
    outline: 0;
    background: 0 0;
}

.slick-dots li.slick-active button {
    color: #31FFFD !important;
}

.slick-dots li button:before {
    font-size: 20px;
}

.center-slider-2 {
    position: relative;
    width: 100%;
    height: 550px;
}

.center-slider-2 .slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.center-slider-2 .slick-center .slick-slide {
    opacity: 1;
    transform: scale(1);
}

.center-slider-2 .slick-slide>div {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slick-dots {
    position: absolute !important;
    bottom: 10px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li button {
    font-size: 20px !important;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: red !important;
    border: 0;
    outline: 0;
    background: 0 0;
}

.slick-dots li.slick-active button {
    color: #31FFFD !important;
}

.slick-dots li button:before {
    font-size: 20px;
}


.img-3d-prop {
    margin-top: 0px;
}

/* SideBar */

#sidebar-wrapper {
    position: fixed;
    z-index: 2;
    top: 75px;
    bottom: 0px;
    width: 250px;
    left: -250px;
    background-color: #222;
	  transition: left .3s ease;
    overflow-y: auto;
}

#sidebar-wrapper.active {
	left: 0px;
}

#sidebar-wrapper .sidebar-header {
    padding: 10px 20px;
}

.sidebar-header{
	display: none;
}

#header-nav{
	z-index: 2;	
}

.navbar-header .toggle-btn {
	padding-top: 10px;
	padding-left: 20px;
}

/*** Menu Items***/
.sidebar-menu {
    margin: 0px;
    list-style: none;
}


.overlay {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
}

.quantity {
    display: flex;
    border: 1px solid #31FFFD;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .quantity button {
    background-color: #31FFFD;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
  }
  
  .quantity button:hover {
    background-color: #31FFFD;
  }
  
  .input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
  }
  
  .input-box::-webkit-inner-spin-button,
  .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .input-box[type="number"] {
    -moz-appearance: textfield;
  }