@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
	
	* {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	  list-style: none;
	  font-family: "Poppins", sans-serif;
	}
	
	a {
	  text-decoration: none !important;
	  display: inline-block !important;
	}
	img {
	  width: 100%;
	  display: block;
	}
	ul {
	  padding: 0;
	  margin: 0;
	}
	p {
	  padding: 0;
	  margin: 0;
	  line-height: 23px;
	  font-family: var(--f3);
	  font-size: 15px;
	}
	
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
	  padding: 0;
	  margin: 0;
	  font-family: var(--f2);
	  /* text-transform:uppercase; */
	  color: var(--c1);
	}
	
	:root {
	  --c1: #000; /* Black */
	  --c2: #fff; /* White */
	  --c3: #FF5722; /* Primary-Color */
	  --c4: #0A1F44; /* Sec-Color */
	  --c5: #EFFCFF; /* Background Color */
	  --c6: #8e8e8e;
	
	  --f1: 'Poppins', sans-serif;
	  --f2: "Roboto", sans-serif; 
	  --f3: "Inter", sans-serif; 
	  --f4: "Montserrat", sans-serif; 
	
	}
	::selection {
	  background: var(--c3);
	  color: var(--c2);
	}

	::-webkit-scrollbar {
	width: 10px;
	}


	::-webkit-scrollbar-track {
	background: var(--c4);
	}


	::-webkit-scrollbar-thumb {
	background: var(--c3);
	width: 10px;
	border-radius: 10px;
	}

	
	::-webkit-scrollbar-thumb:hover {
	background: #be2f03;
	}
		.wrapper {
	  position: relative;
	  overflow: hidden;
	}
	.spacing {
	    padding: 100px 0px;
	}
	
	
	/* inner-wrapper */
	
	.inner-header {
	  height: 400px;
	  background-position: center !important;
	  background-attachment: fixed !important;
	  position: relative;
	  display: flex;
	  align-items: center;
	  text-align: center;
	}
	.inner-header:before {
	  width: 100%;
	  height: 100%;
	  content: "";
	  background: rgb(0 0 0 / 60%);
	  position: absolute;
	  left: 0;
	  top: 0;
	}
	.inner-header .container {
	  position: relative;
	}
	.inner-header .inner-header-title h2 {
	  color: #fff;
	  font-size: 50px;
	  font-weight: 700;
	}
	
	/* end inner-wrapper */
	
	/*Navigation animations*/
	.menu-nav ul li a {
	  text-decoration: none;
	  position: relative;
	  overflow: hidden;
	  z-index: 1;
	   padding:5px 0px;
	}
	
	.menu-nav ul li a::before,
	.menu-nav ul li a::after {
	  content: "";
	  position: absolute;
	  background: linear-gradient(to left, #000000, #A6A6A6);
	  width: 100%;
	  height: 2px;
	  transform: scaleX(0);
	  transition: transform 0.4s;
	}
	.menu-nav ul li a::after {
		background: linear-gradient(to left,#A6A6A6, #000000);
	}
	
	.menu-nav ul li a::before {
	  top: 0;
	  left: 0;
	  transform-origin: left;
	}
	
	.menu-nav ul li a::after {
	  bottom: 0;
	  right: 0;
	  transform-origin: right;
	}
	
	.menu-nav ul li a:hover::before,
	.menu-nav ul li a:hover::after {
	  transform: scaleX(1);
	}
	
	/* ___BUTTON_ANIMATION____ */
	
	.dswipe a {
	    position: relative;
	    overflow: hidden;
	    z-index: 1;
	    transition: transform 0.6s ease-in-out, box-shadow 0.5s ease-in-out, color 0.3s ease-in-out;
		border: 1px solid var(--c3);
	}
	.dswipe a::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  right: -50px;
	  bottom: 0;
	  left: 0;
	  border-right: 50px solid transparent;
	  border-bottom: 50px solid var(--c1) ; 
	  transform: translateX(-100%);
	  transition: transform 0.6s ease-in-out;
	  z-index: -1; 
	}
	.dswipe a:hover {
	  color:var(--c3);
	  box-shadow: 0px 0px 4px var(--c4);
	}
	.dswipe a:hover::before {
	  transform: translateX(0);
	}
	
	/* _____ */
	
	/* Responsive Menu */
	
	.responsive-btn a {
	  display: block !important;
	}
	.responsive-menu {
	  position: fixed;
	  top: 0;
	  left: -100%;
	  width: 100%;
	  height: 100%;
	  background-color: var(--c1);
	  z-index: 9999;
	  transition: all 0.5s;
	}
	.responsive-links ul li ul {
	  display: none;
	}
	.responsive-links ul li i {
	  transition: transform 0.3s ease;
	}
	
	.responsive-menu.active {
	  left: 0;
	}
	.responsive-links ul li ul li {
	  list-style: disc;
	  color: var(--c3);
	}
	.responsive-menu-main {
	  height: 100%;
	  padding: 30px;
	  position: relative;
	  background: var(--c2);
	}
	.responsive-logo {
	  width: 173px;
	  margin: 26px 0px;
	}
	.responsive-links ul li a {
	  color: var(--c1);
	  padding: 17px 0px;
	  display: block !important;
	  font-weight: 500;
	}
	.responsive-links ul li {
	  border-bottom: 1px solid #8080803d;
	  position: relative;
	}
	.resp-social {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  background-color: var(--c3);
	  padding: 6px 0px;
	}
	.responsive-icon a i {
	  display: block;
	}
	.responsive-icon {
	  position: absolute;
	  top: 50px;
	  right: 30px;
	}
	.responsive-icon a {
	  color: var(--c1);
	  font-size: 30px;
	}
	.responsive-links ul li:last-child {
	  border: 0;
	}
	body.scroll-stop {
	  overflow: hidden;
	}
	.resp-social ul {
	  display: flex;
	  gap: 10px;
	  justify-content: center;
	}
	.resp-social ul li a i {
	  display: block;
	}
	.resp-social ul li a {
	  padding: 10px;
	  color: var(--c2);
	  font-size: 24px;
	}
	.responsive-links ul li i {
	  position: absolute;
	  right: 0;
	  top: 13px;
	  color: var(--c3);
	}
	.responsive-links ul li ul {
	  padding-left: 30px;
	  border-top: 1px solid #8080803d;
	}
	.responsive-links ul li i.active::before {
	  content: "\f068";
	}
	.responsive-btn a {
	    color: var(--c2);
	    font-size: 31px;
	    text-align: end;
	}
	
	/* ___ */
	
	/************************************/
	/***       Loader         	  ***/
	/************************************/
	
	.loader-wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: var(--c4);
		z-index: 9999;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.loader {
		width: 70px;
		height: 70px;
		border-radius: 50%;
		display: inline-block;
		position: relative;
		border: 3px solid var(--c3);
		border-color: var(--c3) var(--c3) transparent transparent;
		box-sizing: border-box;
		animation: rotation 1s linear infinite;
	}
	
	.loader::after,
	.loader::before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		border-radius: 50%;
		border: 3px solid;
		box-sizing: border-box;
	}
	
	.loader::after {
		width: 58px;
		height: 58px;
		border-color: transparent transparent var(--c2) var(--c2);
		animation: rotationBack 0.5s linear infinite;
	}
	
	.loader::before {
		width: 48px;
		height: 48px;
		border-color: var(--c3) var(--c3) transparent transparent;
		animation: rotation 1.5s linear infinite;
	}
	
	@keyframes rotation {
		0% {
			transform: rotate(0deg);
		}
	
		100% {
			transform: rotate(360deg);
		}
	}
	
	@keyframes rotationBack {
		0% {
			transform: rotate(0deg);
		}
	
		100% {
			transform: rotate(-360deg);
		}
	}
	
	/* Card H-Effect */
	
	.crad-hover {
	    position: relative;
	    overflow: hidden;
	    border-radius: 15px;
	    transition: 0.5s;
	}
	
	.crad-hover::before {
	    content: "";
	    position: absolute;
	    top: -50%;
	    left: -50%;
	    width: 200%;
	    height: 200%;
	    background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.88));
	    transform: rotate(-45deg);
	    transition: 0.7s ease-in-out;
	    opacity: 0;
	}
	
	.crad-hover:hover {
	    transform: scale(1.03) translateY(-10px);
	    box-shadow: rgba(39, 39, 39, 0.5) 0px 0px 20px;
	    padding: 10px;
	}
	
	.crad-hover:hover::before {
	    opacity: 1;
	    transform: rotate(-45deg) translateY(100%);
	}
	
	/* Header Css */
    .top-bar {
    background: vaR(--c4);
    padding: 12px 0px;
}

.header-left {
    display: flex;
    gap: 11px;
}

.header-phone {
    display: flex;
    gap: 15px;
}

.phone-icon i {
    color: vaR(--c3);
    font-size: 22px;
}

.phone-address a {
    color: vaR(--c2);
    color: #eeee;
    font-size: 15px;
}
.social-media {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-media ul {
    display: flex;
    gap: 9px;
}

.social-media span {
    color: var(--c2);
}

.header-right.align-items-center {}

.social-media ul li a {
    background: var(--c3);
    color: vaR(--c2);
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    border-radius: 50%;
}

.header-currency span {
    display: flex;
    align-items: center;
    color: vaR(--c2);
    gap: 9px;
}
.header-search-bar input:focus {
    border: none;
    outline: none;
    box-shadow: 0px 7px 1px #ff5722ab;
}
.header-currency span img {
    width: 20px;
}
	.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}
nav.header-menu ul {
    display: flex;
}

nav.header-menu ul li a {
    font-family: var(--f2);
    color: var(--c1);
    margin: 0px 8px;
    font-weight: 500;
}

nav.header-menu {
    padding: 22px 0px;
}

header.main-header {
    position: relative;
}

.site-logo {
    position: absolute;
    top: 0;
    width: 280px;
    background: vaR(--c2);
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 87% 100%, 17% 100%);
    padding: 0px 60px;
}
.header-account {
    display: flex;
    align-items: center;
    gap: 19px;
    justify-content: end;
}

.account-fav a {
    color: var(--c1);
    font-size: 25px;
}

.account-login {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
}


.account-login-content {
    display: flex;
    flex-direction: column;
}

.account-login-icon a {
    font-size: 25px;
    color: var(--c1);
}

.account-login-content strong {
    font-family: var(--f2);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
}

.account-login-content span {
    line-height: 16px;
    font-size: 14px;
}
.header-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header-search-bar input {
    width: 340px;
    padding: 2px 31px;
    border: none;
    transition: all 0.6s ease-in-out;
}

.header-search::before {
    content: '';
    position: absolute;
    top: -10px;
    width: 409px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    left: 50%;
    transform: translateX(-50%);
}
.header-search-bar input::placeholder {
    text-align: center;
}

.header-search-bar {
    position: relative;
}

.header-search-bar::before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.3);
    height: 34px;
    width: 1px;
    transform: rotate(-30deg);
    top: -4px;
    left: 6px;
}
.header-search-bar::after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.3);
    height: 34px;
    width: 1px;
    transform: rotate(30deg);
    top: -4px;
    right: 6px;
}
.search-btn a {
    font-size: 23px;
    color: rgba(0, 0, 0, 0.5);
}
	/* Banner Css */
section.banner {
    padding: 100px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    background-size: cover !important;
    background-position: right!important;
    padding: 37px 36px;
    position: relative;
}

.banner-content h4 {
    color: var(--c3);
    font-size: 20px;
    font-family: var(--f2);
}

.banner-content h1 {
    color: vaR(--c2);
    padding: 10px 0px;
    font-size: 47px;
    font-weight: 600;
}

.banner-content h1 span {
    font-family: var(--f2);
    font-weight: 200;
    color: #ccc;
}

.banner-content p {
    color: #ccc;
}
.banner-btns {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-top: 12px;
}
.banner-btn-secondry a:hover {
    background: #000;
    color: vaR(--c2);
    border-color: var(--c2);
}
.main-btn a {
    background: vaR(--c3);
    color: vaR(--c2);
    padding: 10px 30px;
    font-family: vaR(--f2);
    font-weight: 500;
}

.banner-btn-secondry a {
    background: var(--c2);
    color: vaR(--c1);
    padding: 10px 30px;
    font-family: vaR(--f2);
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
}
.mascot-content span:hover {
    transform: translateX(10px);
    box-shadow: -10px 0px 1px vaR(--c4);
}
	section.banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 42%);
}

	
section.banner::after {
    width: 990px;
    height: 990px;
    content: '';
    position: absolute;
    background: rgba(255, 87, 34, 0.15);
    right: -210px;
    bottom: -340px;
    border-radius: 50%;
}
.banner-car-image {
    position: absolute;
    right: -240px;
    width: 1070px;
    top: 160px;
    z-index: 2;
    animation: floatUpDown 5s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
/* Abouit Us 03 Section  */
.about-images {
    position: relative;
}

.about-logo-image {
    position: absolute;
    top: 30px;
    left: 0;
    width: 296px;
}

.about-first-image {
    position: absolute;
    left: 0;
    top: 90px;
    width: 318px;
	transition: all 0.4s ease-in-out;

}

.about-second-image {position: absolute;right: 0;width: 300px;top: 30px;transition: all 0.4s ease-in-out;}

.about-third-image {position: absolute;right: 16px;top: 284px;width: 276px;transition: all 0.4s ease-in-out;}

.about-second-image:hover, .about-third-image:hover, .about-first-image:hover {
    transform: scale(92%);
}
.about-images::before {
    position: absolute;
    content: '';
    background: transparent;
    border: 5px solid vaR(--c3);
    width: 360px;
    height: 481px;
    left: 150px;
    top: 190px;
}

.main-title h4 {
    font-size: 18px;
    color: vaR(--c3);
    font-family: vaR(--f2);
    text-transform: capitalize;
    font-weight: 800;
}

.main-title h2 {
    font-size: 42px;
    font-weight: 900;
    padding-top: 6px;
    padding-bottom: 10px;
    /* text-transform: capitalize; */
}
.main-title h2 span {
    font-weight: 800;
    color: var(--c4);
}

.about-content p {
    color: #222;
    padding-bottom: 20px;
}
.about-content strong {
    color: #000;
    font-family: var(--f2);
    font-size: 24px;
    padding-bottom: 4px;
    display: inline-block;
}
.about-us-title {
    padding-top: 25px;
}

.about-us-image {
    position: relative;
}

.about-us-image::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    border-left: 10px solid var(--c3);
    height: 100%;
    width: 100%;
    border-bottom: 10px solid var(--c3);
}
section.why-choose-us {
    background: vaR(--c4);
}

.choose-us-box {
    text-align: center;
	position: relative;
}

.choose-us-box-icon img {
    width: 100px;
    margin: 0 auto;
    object-fit: scale-down;
}

.choose-us-box-content h3 {
    color: var(--c2);
    font-size: 21px;
    padding: 0px 30px;
    padding-top: 20px;
}
.choose-us-box::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
  right: -5px;
  top: 0;
}

.why-choose-us .row > .col-lg-3:last-child .choose-us-box::before {
  display: none;
}

/* Mascot 05 */
.moscot-images {
    display: flex;
    justify-content: space-between;
}

.mascot-image {
    background: var(--c4);
    position: relative;
}

.mascot-image img {
    width: 500px;
    margin: 0 auto;
    position: relative;
}

.mascot-image::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 100%;
    background: #FFE7DF;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

section.mascot-section .row {
    background: #FFE7DF;
}

.mascot-content {
    padding: 0px 27px;
}

.mascot-title h3 {}

.mascot-content h3 {
    font-family: var(--f4);
    font-weight: 600;
    text-transform: unset;
    padding: 12px 0px;
}

.mascot-content span {
    background: vaR(--c2);
    padding: 10px 43px;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    color: vaR(--c1);
    font-size: 18px;
    position: relative;
    margin: 10px 0px;
    transition: all 0.4s ease-in-out;
}

.mascot-content span::before {
    content: '';
    background: vaR(--c4);
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    width: 13px;
}



.moscot-images .moscot-img img {
    width: 160px;
    object-fit: contain;
    height: 210px;
}

/* How Its Work 06 */
section.how-its-work {
    background: #eee;
}

.how-its-work-title {
    text-align: center;
    padding-bottom: 20px;
}

.how-its-work-box {
    background: #fff;
    padding: 50px 20px;
    border-radius: 30px;
    margin: 0px 40px;
    text-align: center;
    position: relative;
}

.how-its-work-icon img {
    margin: 0 auto;
    width: 78px;
}

.how-its-work-content {
    padding-top: 20px;
}

.how-its-work-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.how-its-work-content p {
    padding: 0px 40px;
    font-size: 17px;
    color: #000;
}
.shop-now-float-image {
    position: absolute;
    top: 50%;
    width: 240px;
    left: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
}

section.shop-now {
    position: relative;
    padding: 50px 0px;
    background-size: cover !important;
    background-position: center !important;
}

section.shop-now::before {
    background: #001235e6;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.shop-now-content {
    position: relative;
}

.shop-now-content h2 {
    color: vAR(--c2);
    font-weight: 500;
    font-size: 42px;
    text-transform: capitalize;
    text-shadow: 3px 1px 1px #aaa;
}

.shop-now-btn {
    text-align: end;
    position: relative;
}

/* FAQS 08 */

.faqs-title {
    text-align: center;
    padding-bottom: 30px;
}

/* ==============================
   Accordions Section (Left Column)
   ============================== */
.accordians-main .accordion-item {
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

/* Left color stripe */
.accordians-main .accordion-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 8px;
  width: 8px;
  background: #ff4d00; /* default orange */
  /* border-radius: 10px; */
  height: 100%;
}

/* First accordion left stripe color (blue) */
.accordians-main .accordion-item:first-child::before {
  background: #001f4d;
}

/* Accordion button styling */
.accordians-main .accordion-button {
  background: transparent;
  font-weight: 400;
  font-size: 17px;
  color: #000;
  box-shadow: none !important;
  padding: 22px 17px 22px 28px;
}

/* Remove Bootstrap default focus/active background */
.accordians-main .accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
  box-shadow: none;
}

/* Plus / minus icon styling */
.accordians-main .accordion-button::after {
  content: '+';
  font-weight: 700;
  font-size: 27px;
  color: #ff4d00;
  transform: none !important;
  background: none !important;
  margin-left: auto;
  margin-top: -10px;
}

.accordians-main .accordion-button:not(.collapsed)::after {
  content: '-';
  color: #001f4d;
}

/* Accordion body */
.accordians-main .accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}

/* Subtle hover effect */
.accordians-main .accordion-item:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

/* Optional responsive tweak */
@media (max-width: 767px) {
  .accordians-main .accordion-button {
    font-size: 15px;
  }
}

.faqs-btn {
    text-align: center;
    padding-top: 20px;
}



/* Testimonial 09 */
.testimonial-title {
    text-align: center;
    padding-bottom: 30px;
}
section.Testimonial {
    background: #eee;
}

.testimonail-box {
    background: #fff;
    margin: 0px 18px;
    padding: 30px 40px;
    border-radius: 9px;
    position: relative;
    box-shadow: -2px -2px 8px #00000033;
    transition: all 0.4s ease-in-out;
}

.testimonail-box h6 {
    font-size: 17px;
    text-transform: capitalize;
    padding-bottom: 10px;
    font-weight: 500;
}

.testimonail-box p {
    font-style: italic;
    padding-bottom: 10px;
    color: #000;
}

.testimonail-box ul {
    display: flex;
    gap: 4px;
    color: #ff7e00;
    font-size: 20px;
}
.testimonail-box:hover {
    transform: translate(-6px, -10px);
}
.customer-info {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 20px;
}

.customer-image {
    width: 70px;
    border-radius: 50%;
    overflow: hidden;
    height: 70px;
}

.customer-image img {
    height: 100%;
    object-fit: cover;
}

.customer-name h6 {
    font-size: 21px;
    font-weight: 700;
}
.testimonail-box-image {
    position: absolute;
    right: 55px;
    bottom: 100px;
}
.testimonail-box::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -7px;
    right: -7px;
    border-right: 3px solid var(--c3);
    border-bottom: 3px solid var(--c3);
    border-radius: 9px;
    z-index: -99;
}

.testimonial-slider  .slick-track {
    padding: 20px 0px;
}
/* ==============================
   Slick Slider Arrows (Testimonial Slider)
   ============================== */
.testimonial-slider {
  position: relative;
}

/* Base arrow styling */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Icons inside arrows */
.testimonial-slider .slick-prev i,
.testimonial-slider .slick-next i {
  font-size: 18px;
  color: #ff4d00; /* orange by default */
  transition: all 0.3s ease;
}

/* Hover effect */
.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
  background: #001f4d; /* dark blue background */
  border-color: #001f4d;
}

.testimonial-slider .slick-prev:hover i,
.testimonial-slider .slick-next:hover i {
  color: #fff;
}

/* Positioning */
.testimonial-slider .slick-prev {
  left: -55px; /* move outside container */
}

.testimonial-slider .slick-next {
  right: -55px;
}

/* Responsive positioning */
@media (max-width: 991px) {
  .testimonial-slider .slick-prev {
    left: -35px;
  }
  .testimonial-slider .slick-next {
    right: -35px;
  }
}

@media (max-width: 767px) {
  .testimonial-slider .slick-prev,
  .testimonial-slider .slick-next {
    width: 35px;
    height: 35px;
  }
  .testimonial-slider .slick-prev {
    left: -25px;
  }
  .testimonial-slider .slick-next {
    right: -25px;
  }
}

/* 	News Latter */
.news-latter-image {
    position: absolute;
    width: 280px;
    bottom: 0;
    left: 0;
}

.news-latter-image-2 {
    position: absolute;
    width: 300px;
    right: 0;
    top: 0;
}

section.news-latter {
    position: relative;
}

.news-latter-content {
    text-align: center;
}

.news-latter-content.main-title h2 {
    text-transform: capitalize;
}
.latter-field {
    margin: 30px 0px;
    position: relative;
}

.latter-field i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 227px;
    font-size: 22px;
}

.latter-field input {
    width: 430px;
    padding: 14px 0px 14px 50px;
    border: none;
    box-shadow: 2px 2px 5px #00000038;
    border-radius: 7px;
    font-size: 15px;
}

.latter-field button {
    position: absolute;
    right: 213px;
    top: 0;
    background: vaR(--c3);
    color: vaR(--c2);
    border: navajowhite;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 0px 6px 6px 0px;
    height: 100%;
}
.news-latter-content p {
    font-size: 18px;
    padding: 0px 230px;
    color: vaR(--c1);
}
.latter-field input:focus {
    border: none;
    outline: none;
    box-shadow: 0px 0px 10px var(--c3);
}
.news-latter-content p a {
    color: vaR(--c3);
    text-transform:capitalize;
    text-decoration: underline !important;
}
	/* Footer */
	footer.footer {
	    padding-top: 80px;
	    background: vaR(--c4);
	}
	.f-info p {
	    color: #000000f0;
	    font-family: var(--f3);
	    font-size: 17px;
	    padding: 20px 0px;
	    padding-right: 90px;
	}
	.f-social ul li a {
	    background: vaR(--c4);
	    width: 38px;
	    height: 38px;
	    text-align: center;
	    line-height: 40px;
	    color: vaR(--c2);
	    font-size: 22px;
	    transition: all 0.4s ease-in-out;
	}
	
	.f-social ul {
	    display: flex;
	    gap: 16px;
	}
	
	.f-links h3 {
	    text-transform: capitalize;
	    font-size: 26px;
	    position: relative;
	    padding-bottom: 20px;
	    color: vaR(--c2);
	}
	
	.f-links h3::before {
	    width: 36px;
	    height: 3px;
	    content: '';
	    position: absolute;
	    background: var(--c3);
	    bottom: 16px;
	    border-radius: 20px;
	}
	.f-contact-us {
	    display: flex;
	    align-items: center;
	    gap: 10px;
	    margin-bottom: 21px;
	}
	
	.contact-us-icon {
	    background: vaR(--c2);
	    width: 30px;
	    height: 30px;
	    text-align: center;
	    color: vaR(--c4);
	    line-height: 32px;
	    border-radius: 50%;
	    box-shadow: 0px 0px 10px #ffffff63;
	    transition: all 0.3s ease-in-out;
	}
	.f-social ul li a:hover {
		border-radius: 50%;
		background: vaR(--c3);
		color: vaR(--c4);
		box-shadow: 0px 0px 10px vaR(--c4);
	}

	.f-links ul li a:hover {
		color: var(--c3);
		transform: scale(1.1);
	}
	
	.contact-info p a {
	    color: #fff;
	}
	.f-logo a img {
    transition: all 0.4s ease-in-out;
	}

	.f-logo a img:hover {
		transform: scale(90%);
	}
	.f-links ul li a {
	    color: #f3f3f3fa;
	    line-height: 34px;
	    transition: all 0.3s ease-in-out;
	}
	.f-bottom {
	    background: vaR(--c3);
	    text-align: center;
	    padding: 10px 0px;
	}
	
	.copy-right-content p {
	    color: vaR(--c2);
	}
	
	.copy-right-image img {
	    width: 180px;
	}
	
	.f-bottom-main {
	    background: vaR(--c3);
	    margin-top: 40px;
	}
	.f-about-image {
		overflow: hidden;
	}
	.contact-us-icon:hover {
    background: vaR(--c3);
    color: vaR(--c2);
}
	.contact-info span {
    color: #eee;
}

	.f-about-image img:hover {
		transform: scale(0.9);
	}

	.f-about-image img {
		transition: all 0.3s ease-in-out;
	}


/* Product */

.products-title {
    text-align: center;
    margin-bottom: 60px;
}

.products-title h2 {
    color: var(--c2);
}

.product-item-image {
    background: var(--c2);
    padding: 30px;
    height: 330px;
    display: flex;
    align-items: center;
}

.product-item {
    margin: 0px 15px;
}

.products-slider .custom-arrow {
    position: absolute;
    top: 30%;
    z-index: 999;
}

.products-slider .custom-arrow i {
    color: var(--c2);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--c3);
    border-radius: 50%;
    cursor: pointer;
}
.product-item-btn a {
    width: 100%;
    text-align: center;
}
.products-slider .slick-prev {
    left: -60px;
}

.products-slider .slick-next {
    right: -60px;
}

.product-item-content h3 {
    color: var(--c2);
    font-size: 20px;
    margin: 30px 0px;
    text-transform: capitalize;
}


/* Responsive Menu */
	
	.responsive-btn a {
	  display: block !important;
	}
	.responsive-menu {
	  position: fixed;
	  top: 0;
	  left: -100%;
	  width: 100%;
	  height: 100%;
	  background-color: var(--c1);
	  z-index: 9999;
	  transition: all 0.5s;
	}
	.responsive-links ul li ul {
	  display: none;
	}
	.responsive-links ul li i {
	  transition: transform 0.3s ease;
	}
	
	.responsive-menu.active {
	  left: 0;
	}
	.responsive-links ul li ul li {
	  list-style: disc;
	  color: var(--c3);
	}
	.responsive-menu-main {
	  height: 100%;
	  padding: 30px;
	  position: relative;
	  background: var(--c2);
	}
	.responsive-logo {
	  width: 140px;
	  margin: 26px 0px;
	}
	.responsive-links ul li a {
	  color: var(--c1);
	  padding: 17px 0px;
	  display: block !important;
	  font-weight: 500;
	}
	.responsive-links ul li {
	  border-bottom: 1px solid #8080803d;
	  position: relative;
	}
	.resp-social {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  background-color: var(--c3);
	  padding: 6px 0px;
	}
	.responsive-icon a i {
	  display: block;
	}
	.responsive-icon {
	  position: absolute;
	  top: 50px;
	  right: 30px;
	}
	.responsive-icon a {
	  color: var(--c1);
	  font-size: 30px;
	}
	.responsive-links ul li:last-child {
	  border: 0;
	}
	body.scroll-stop {
	  overflow: hidden;
	}
	.resp-social ul {
	  display: flex;
	  gap: 10px;
	  justify-content: center;
	}
	.resp-social ul li a i {
	  display: block;
	}
	.resp-social ul li a {
	  padding: 10px;
	  color: var(--c2);
	  font-size: 24px;
	}
	.responsive-links ul li i {
	  position: absolute;
	  right: 0;
	  top: 13px;
	  color: var(--c3);
	}
	.responsive-links ul li ul {
	  padding-left: 30px;
	  border-top: 1px solid #8080803d;
	}
	.responsive-links ul li i.active::before {
	  content: "\f068";
	}
	.responsive-btn a {
	    color: var(--c2);
	    font-size: 31px;
	    text-align: end;
	}


/*  */
.banner-btn-primary a {
    display: block !important;
}
.accordion-item p {
    padding: 0px 20px 30px 30px;
}
.product-item-image img {
    height: 260px;
    object-fit: cover;
}