/* Universal Css Start Here */
body {
	background-color: var(--body-color);
	font-family: var(--font-default);
	color: var(--text-color);
	overflow-x: hidden;
}

.over-hidden {
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--extra-color-3);
}

a:hover {
	color: var(--extra-color-3);
}

button {
	font-family: var(--font-btn);
	border: 0;
}

figure {
	margin-bottom: 0;
}

.primary-btn {
}

.secondary-btn {
}

/* Universal Css End Here */

/* Typography Start Here */
.larger-heading {
	font-family: var(--font-montserrat-bold);
	font-size: 53px;
	line-height: 63px;
}

.deafult-heading {
	font-family: var(--font-heading);
	font-size: 40px;
	line-height: 50px;
}

.paragraph-family {
	font-family: var(--font-paragraph);
	font-size: 15px;
	line-height: 25px;
}

/* Typography End Here */

/* Header Css Start Here */
@media (max-width: 581px) {
	.header-top .navbar-brand img,.footer_logo img{
		width: 150px;
	}
	.position-reserve{
		position: unset !important;
	}
}
@media (max-width: 990px) {
	.header-top .navbar-brand img,.footer_logo img{
		width: 200px;
	}
}
/* sec */
.banner-video video{
	mix-blend-mode: exclusion;
    margin-top: 35px;
}
.counter_box {
    background: #000000de;
}
.counter-wrapper {
    bottom: -91px;
}
.counter_box {
    /* Existing styles */

    /* Animation styles */
    animation: wave 4s ease-in-out infinite;
    transition: transform 0.3s ease;
  }

  .counter_box:hover {
    transform: scale(1.1);
  }

  /* Add keyframes for animation */
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-20px);
    }
    50% {
      transform: translateY(10px);
    }
    75% {
      transform: translateY(-20px);
    }
  }
  /* pricing sec  */
  .pricing_box {
    min-height: 400px;
}
/* how its work sec */
/* Custom CSS for Image-Perfect "How It Works" Section */
/* .how-it-works-match-section {
    background-color: #161616;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDA0IiBoZWlnaHQ9IjQwNCIgdmlld0JveD0iMCAwIDQwNCA0MDQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcuNCAzNDAuN0wxMjAuNiAzNTMuNUwzNTMuNSA0MC4yTDM0MC43IDcuNEw3LjQgMzQwLjdaIiBmaWxsPSIjRjI1NzU3IiBmaWxsLW9wYWNpdHk9IjAuMiIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.how-it-works-match-section .display-4 {
    font-size: 2.8rem;
} */

/* Central Red Line */
.central-red-line {
    position: absolute;
    top: 0;
    left: 45px;
    width: 2px;
    height: 100%;
    background-color: var(--btn-color);
    z-index: 0;
}

.step-item {
    position: relative;
    padding-left: 80px;
}


.step-num-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--btn-color);
    position: absolute;
    left: 0;
    z-index: 1;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
    top: 0;
    margin-top: 5px;

}

.step-content-box {
    background-color: var(--color-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    min-height: 80px;
}

.step-content-box:hover {
    border-color: var(--btn-color);
    transform: translateY(-3px);
}
/* faq */
.faq_wrapper_box .accordion-item {
    border-radius: 10px;
    border: 1px solid;
}
/* cart */
/* cart css */

.cart_sec{
    min-height:500px ;
}

/* section.cart_sec .table tbody tr td {
  width: 15%;
} */

.quantity-input {
  width: 50px;
  text-align: center;
  height: 40px;
}

.btn-minus, .btn-plus {
  width: 33px;
  height: 33px;
}
.thead-radius {
  border-radius: 10px; /* Adjust the value as needed */
  overflow: hidden; /* Ensure the content within respects the border radius */
}

.thead-radius th:first-child {
  border-bottom-left-radius: 10px; /* Match the value used for .thead-radius */
}

.thead-radius th:last-child {
  border-bottom-right-radius: 10px; /* Match the value used for .thead-radius */
}


.product_quantity {
  width: 100px;
}

.product_img {
  width: 138px;
}

.product_image {
  display: flex;
  justify-content: center;
}
.cart_sec .table {
    border-collapse: collapse;
    overflow: hidden;
}

@media(max-width:600px){
  .product_img img {
    width: 71px;
    height: 60px;
}
section.cart_sec .table{
  width: 670px;
}
}
@media(max-width:880px){
  .product_img img {
    width: 103px;
    height: 54px;
}
}

/* cart css */
/* Responsive Adjustments */
@media (max-width: 768px) {

    .step-item {
        padding-left: 70px;
    }
    .step-num-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem !important;
        margin-top: 0;
    }
    .central-red-line {
        left: 25px; /* Adjust line position */
    }

}
/* footer */
.newsletter button {
    margin-left: -22px;
    padding: 9px 20px;
}
.footer_logo img {
    object-fit: contain;
    width: 276px;
    min-height: 100px;
}
a.social-icon-box {
    width: 41px;
    height: 42px;
}
.pricing-list{
    height: 405px;
}
/* ✅ Remove arrows from number input fields */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}
#newsForm  span.error {
    display: inline-block;
    color: #e72d42;
    font-size: 14px;
    margin-top: 42px;
    margin-bottom: 0;
    position: absolute;
}
.error{
    color: red;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    /* border-color: #dc3545; */
    /* padding-right: calc(1.5em + .75rem); */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(1.375em + .1875rem) center!important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
/* Fix for cart button */
.trolley-btn {
    background-color: #b91c1c !important; /* Red background */
    border: 1px !important;
    color: white !important;
    transition: all 0.3s ease;
}

.trolley-btn:hover {
    background-color: #000000 !important; /* Darker red on hover */
    color: white !important;
}

.trolley-btn i,
.trolley-btn span {
    color: white !important;
    transition: color 0.3s ease;
}

.trolley-btn:hover i,
.trolley-btn:hover span {
    color: white !important;
}

/* Remove any conflicting button styles */
.trolley-btn.c-button1 {
    background-color: #b91c1c !important;
}
.logo-wid{
    width:219px;
}
.new-img {
    height: 408px;
    width: 597px;
    object-fit: cover;
}
