/*
font-family: "Source Sans 3", sans-serif;
family: "Barlow Condensed", sans-serif;
*/

:root {
    --main-theme-red: #D81324;  
    --main-theme-black: #14151B;
    --theme-gray: #E4E4E4;
    --gray-light: #EAEAEA;
    --dark-gray: #878787;
    --dark-gradient: linear-gradient(180deg, #14151B 0%, #000000 100%);
    --font-family: "Source Sans 3", sans-serif;
    --font-color: #2f344c;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-weight: 400;
    --line-height: 1.4;
    --letter-spacing: 0px;
    --heading-font-family: "Barlow Condensed", sans-serif;
    --heading-font-weight: 400;
    --h1-heading-font-size: 50px;
    --h2-heading-font-size: 30px;
    --h3-heading-font-size: 25px;
    --h4-heading-font-size: 20px;
    --h5-heading-font-size: 17px;
    --h6-heading-font-size: 15px;
  }

* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
}

body {
	font-family: var(--font-family);
	color: var(--main-theme-black);
	background: #fff;
    line-height: var(--line-height);
    font-size: var(--font-size-18);
}

@media  screen and (max-width: 767px) {
    body {
    font-size: var(--font-size-16);
}

}

img:not([src]):not([srcset]) {
  visibility: hidden
}

img.lazy {
  opacity: 0
}

img.lazy.initial, img.lazy.loaded, img.lazy.error {
  opacity: 1
}

button, input[type=submit] {
  transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out
}

textarea, button, input, input[type=checkbox] {
  outline: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -webkit-box-shadow: none
}

textarea:focus, button:focus, input:focus, input[type=checkbox]:focus {
  outline: none;
  box-shadow: none;
  -ms-box-shadow: none;
  -webkit-box-shadow: none
}

h1, h2, h3, h4, h5, h6 , .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--main-theme-red);
    font-family: var(--heading-font-family);
	font-weight: 500;
    line-height: var(--line-height);
    text-transform: uppercase;
}

h1,.h1 { font-size: 3rem; }
h2,.h2 { font-size: 2.8rem; }
h3,.h3 { font-size: 1.7rem; }
h4,.h4 { font-size: 1.3rem; }
h5,.h5 { font-size: 1.25rem; }
h6,.h6 { font-size: 1.1rem; }

@media screen and (max-width: 1440px) {
	h1,.h1 { font-size: 2.4rem; }
	h2,.h2 { font-size: 2.8rem; }
	h3,.h3 { font-size: 1.5rem; }
	h4,.h4 { font-size: 1.2rem; }
	h5,.h5 { font-size: 1.25rem; }
	h6,.h6 { font-size: 1.1rem; }
}

@media screen and (max-width: 1024px) {
h2,.h2 { font-size: 2.4rem; }
}



@media screen and (max-width: 991.98px) {
	h1,.h1 { font-size: 1.875rem; }
	h2,.h2 { font-size: 2rem; }
	h3,.h3 { font-size: 1.3rem; }
	h4,.h4 { font-size: 1.2rem; }
	h5,.h5 { font-size: 1.25rem; }
	h6,.h6 { font-size: 1rem; }
}

@media  screen and (max-width: 767px) {
	h1,.h1 { font-size: 1.375rem; }
	h2,.h2 { font-size: 1.7rem; }
	h3,.h3 { font-size: 1.2rem; }
	h4,.h4 { font-size: 1rem; }
	h5,.h5 { font-size: 1.25rem; }
	h6,.h6 { font-size: 0.9rem; }
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out
}

a {
text-decoration: none;
color: var(--main-theme-red);
transition: all 0.5s;
-ms-transition: all 0.5s;
-moz-transition: all 0.5s;
-webkit-transition: all 0.5s;
}

button {
transition: all 0.5s;
-ms-transition: all 0.5s;
-moz-transition: all 0.5s;
-webkit-transition: all 0.5s;
}

a:hover, a:focus, a.active {
text-decoration: none;
outline: none;
}

a:hover {
color: var(--theme-orange);
}

textarea, textarea:focus, button, button:focus, input, input:focus, input[type="checkbox"]:focus {
outline: none;
box-shadow: none;
-ms-box-shadow: none;
}

.bg-cover-image {
  background-size: cover;
  background-repeat: no-repeat
}

.bg-contain-image {
  background-size: contain;
  background-repeat: no-repeat
}

.bg-fix-image {
  background-attachment: fixed
}

.bg-overlay {
  position: relative;
  z-index: 1
}

.bg-overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  z-index: -1
}

.list-none {
  margin: 0;
  padding: 0
}

.list-none li {
  list-style-type: none
}



.text-red {
    color: var(--main-theme-red) !important;
}

/* coman-css */

.section-padding-lg {
    padding: 60px 0;
}

.section-padding-md {
    padding: 40px 0;
}

.section-padding-sm {
    padding: 32px 0;
}

@media screen and (max-width: 991.98px) {
    .section-padding-lg {
    padding: 40px 0;
}
}

@media  screen and (max-width: 767px) {
    .section-padding-lg {
    padding: 30px 0;
}
}





/* section-title-style1 */


.text-light-gray,
.title-gray h6 {
    color: var(--gray-light) !important;
}

.section-title-style1 .subtitle{
    color: #666;
    max-width: 700px;
    margin: 0px auto 0;
}

.section-title-style1 h6{
    color: var(--main-theme-black);
}

.section-title-style1 h6 span {
    font-weight: 600;
    display: inline-block;
    margin: 0 5px;
}

.section-title-style1 h6 img {
    position: relative;
    top: -2px;
}

.title-style-white h6 ,
.title-style-white h1,
.title-style-white .h1 
 {
    color: var(--theme-gray);
}

.title-style-white h1,
.title-style-white .h1{
    font-weight: 300;
}

.title-style-white h1 strong,
.title-style-white .h1 strong{
    font-weight: 600;
}

.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 0;
  border-radius: 0px;
  position: relative;
  overflow: hidden
}

.button::after, .button::before {
  position: absolute;
  content: "";
  transition: all .3s ease-in-out;
}

.button > span {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 24px;
    transition: all .3s ease-in-out;
}

.button > span .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    position: relative;
    top: -2px;
}

.button > span .dot.left{
    right: 5px;
}

.button > span .dot.right{
    left: 5px;
}





@media screen and (max-width: 1366px) {
    .button > span {
    font-size: 0.8rem;
    padding: 7px 20px;
}
.button > span .dot {
    top: 0;
}
}

@media screen and (min-width: 991.99px) and (max-width: 1199.98px) {
}

@media screen and (max-width: 991.98px) {
}



@media  screen and (max-width: 767px) {

}

.button-rounded {
  border-radius: 100px;
  -ms-border-radius: 100px;
  -webkit-border-radius: 100px
}

.button-rounded span {
  border-radius: 100px;
  -ms-border-radius: 100px;
  -webkit-border-radius: 100px
}

.button-block {
  width: 100%
}



/* button-red-dark */

.button-red-dark {
  background: var(--dark-gradient); 
}

.button-red-dark::before {
  background: linear-gradient(180deg, #D81324 0%, #B80B1A 100%);
}

.button-red-dark > span {
  color: var(--theme-gray);
}

.button-red-dark > span .dot {
  background-color: var(--main-theme-black);
  transition: all .3s ease-in-out;
   -ms-transition: all .3s ease-in-out;
}

.button-red-dark:hover > span .dot {
    background-color: #f7ea03;
}


/* button-red-gray */

.button-red-gray {
  background: var(--dark-gray); 
}

.button-red-gray::before {
  background: linear-gradient(180deg, #D81324 0%, #B80B1A 100%);
}

.button-red-gray > span {
  color: var(--theme-gray);
}

.button-red-gray > span .dot {
  background-color: var(--main-theme-black);
  transition: all .3s ease-in-out;
   -ms-transition: all .3s ease-in-out;
}

.button-red-gray:hover > span .dot {
    background-color: #f7ea03;
}

/* button-black-gray */

.button-black-gray {
  background: var(--dark-gray); 
}

.button-black-gray::before {
  
  background: linear-gradient(180deg, #14151B 0%, #000000 100%);
}

.button-black-gray > span {
  color: var(--theme-gray);
}

.button-black-gray > span .dot {
  background-color: var(--main-theme-red);
  transition: all .3s ease-in-out;
   -ms-transition: all .3s ease-in-out;
}

.button-black-gray:hover > span .dot {
    background-color: #f7ea03;
}


/* button-red-outline */

.button-red-outline {
    border: 1px solid var(--main-theme-red);
}

.button-red-outline::before {
  background: transparent; 
}

.button-red-outline > span {
  color: var(--main-theme-red);
}

.button-red-outline:hover > span {
  color: #fff;
}

.button-red-outline > span .dot {
  background-color: var(--main-theme-red);
  transition: all .3s ease-in-out;
   -ms-transition: all .3s ease-in-out;
}

.button-red-outline:hover > span .dot {
    background-color: #f7ea03;
}







.filled-slide-up::before {
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%
}

.filled-slide-up:hover::before {
  height: 0%
}

.filled-slide-left::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.filled-slide-left:hover::before {
  width: 0%
}

.filled-slide-right::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%
}

.filled-slide-right:hover::before {
  width: 0%
}

.opacity::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1
}

.opacity:hover::before {
  opacity: 0
}


.swiper-navigation-style2 {
  position: relative;
}

.swiper-navigation-style2 .swiper-button-next, .swiper-navigation-style2 .swiper-button-prev {
  border: 1px solid #fff;
  background-color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.swiper-navigation-style2 .swiper-button-next::after, .swiper-navigation-style2 .swiper-button-prev::after {
  font-size: 14px;
  color: var(--main-theme-red);
    transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out

}

.swiper-navigation-style2 .swiper-button-next:hover::after, .swiper-navigation-style2 .swiper-button-prev:hover::after {
  color: #fff;
}

.swiper-navigation-style2 .swiper-button-next:hover, .swiper-navigation-style2 .swiper-button-prev:hover {
  background-color: var(--main-theme-red);
  border-color: rgba(0, 0, 0, 0);
}

.swiper-navigation-style2 .swiper-button-next {
    right: auto;
    position: relative;
}
.swiper-navigation-style2 .swiper-button-prev {
    left: auto;
    position: relative;
}



.swiper-pagination-style2 {
  position: relative
}
.swiper-pagination-style2 .swiper-pagination {
  text-align: center;
  position: relative;
}
.swiper-pagination-style2 .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 30px;
    background-color: var(--theme-gray);
    transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    opacity: 1;
}
.swiper-pagination-style2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 34px;
  background-color: var(--main-theme-red);
}

.swiper-pagination-style2 .swiper-pagination {
    bottom: 0 !important;
    width: auto !important;
    min-width: 80px !important;
    align-content: center;
    height: 44px;
}

.swiper-pagination-style3 {
  position: relative
}
.swiper-pagination-style3 .swiper-pagination {
  text-align: center;
  position: absolute;
  bottom: -33px !important;
  width: 100%;
}
.swiper-pagination-style3 .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    border-radius: 30px;
    background-color: var(--theme-gray);
    transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    opacity: 1;
}
.swiper-pagination-style3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 34px;
  background-color: var(--main-theme-red);
}










/* swiper-navigation-style3 (black=outer-arrow) */
.swiper-navigation-style3 {
  position: relative
}

.swiper-navigation-style3 .swiper-button-next, .swiper-navigation-style3 .swiper-button-prev {
  background-color: var(--main-theme-red);
  width: 38px;
  height: 38px;
  border-radius: 100px;
  transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.swiper-navigation-style3 .swiper-button-next::after, .swiper-navigation-style3 .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
  transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out
}

.swiper-navigation-style3 .swiper-button-next:hover, .swiper-navigation-style3 .swiper-button-prev:hover {
  background-color: #000;
}

.swiper-navigation-style3 .swiper-button-next:hover::after, .swiper-navigation-style3 .swiper-button-prev:hover::after {
  color: #fff
}

.swiper-navigation-style3 .swiper-button-next {
  right: -18px
}

.swiper-navigation-style3 .swiper-button-prev {
    left: -18px;
}


@media screen and (max-width: 1440px) {
    .swiper-navigation-style3 .swiper-button-next {
  right: 0px
}

.swiper-navigation-style3 .swiper-button-prev {
    left: 0px;
}
}


@media  screen and (max-width: 767px) {


.swiper-navigation-style3 .swiper-button-next,
.swiper-navigation-style3 .swiper-button-prev {
    display: none;
}
}


.w-200 {
	width: 200px!important;
}
.w-100-p {
	width: 100%!important;
}

.h-70 {
	height: 70px!important;
}
.h-100 {
	height: 100px!important;
}
.h-200 {
	height: 200px!important;
}
.h-300 {
	height: 300px!important;
}

.d_n {
	display: none!important;
}
.d_b {
	display: block!important;
}

.btn-arf {
	background: var(--main-theme-red)!important;
	border: 0;
}

.btn-arf:hover {
	background: var(--second-theme-color)!important;
}

/* Header-css */

.top .container-inner {
    background: var(--main-theme-red);
    border-radius: 0 0 12px 12px;
    padding: 7px 20px;
}

.top .container-inner .top-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    text-wrap-mode: nowrap;
}

.top .container-inner .top-contact ul li:not(:last-child)::after {
    content: "|";
    margin-left: 14px;
    opacity: 35%;
    color: #eee;
}

.top .container-inner .top-contact ul a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.top .container-inner .top-contact ul a:hover {
	color: var(--theme-orange);
}

.top .container-inner .top-contact ul a svg {
    width: auto;
    margin-right: 4px;
    height: 14px;
    fill: #fff;
    position: relative;
    top: -1px;
    transition: all 0.3s ease-in-out;
}

.top .container-inner .top-contact ul a:hover svg {
	fill: var(--theme-orange);
}

.top .container-inner .top-right {
	display: flex;
}

.top .container-inner .top-right .top-social {
	text-align: right;
}

.top .container-inner .top-right .top-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.top .container-inner .top-right .top-social li {
    text-align: center;
    display: inline-block;
    margin-left: 5px;
	position: relative;
}

.top .container-inner .top-right .top-social li:not(:last-child)::after {
    content: "|";
    margin-left: 18px;
    opacity: 35%;
    color: #eee;
}

.top .container-inner .top-right .top-social li:last-child {
	margin-right: 0px;
}

.top .container-inner .top-right .top-social a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top .container-inner .top-right .top-social a:hover {
	color: var(--theme-orange);
}

.top .top-profile {
	display: none;
}

@media screen and (max-width: 767px) {
	.top .container-inner .top-contact ul li:first-child {
		display: none;
	}
	.top .container-inner {
		padding: 4px 14px;
	}

	.top .container-inner .top-right .top-social ul {
		gap: 5px;
	}

	.top .container-inner .top-right .top-social li:not(:last-child)::after {
		margin-left: 10px;
	}
}

/* main-nav */

.site-header {
    position: relative;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #22232B;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: var(--main-theme-red);
}

.site-header .site-logo {
    background: linear-gradient(180deg, #000000 0%, #14151B 25%, #14151B 75%, #000000 100%);
    padding: 0px 60px 0px 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
    width: max-content;
    height: 100%;
    align-content: center;
}

.site-header .site-logo a {
    display: inline-block;
}

.site-header .site-logo a img {
    max-width: 200px;
    height: auto;
}

.site-header .right-bar {
    gap: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.site-header .right-bar .search-icon {
    cursor: pointer;
    z-index: 99999;
    position: relative;
}

.site-header .right-bar .search-icon svg {
   stroke: #E4E4E4;
}

.site-header .right-bar .search-icon:hover svg {
    stroke: #fff !important;
}

.site-header .right-bar .right-icons ul {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.site-header .right-bar .right-icons ul li a span svg {
    width: 20px;
    height: auto;
}

.site-header .right-bar .right-icons .search-button{
    position: relative;
    cursor: pointer;
}

.site-header .right-bar .right-icons .search-button .header-search-form {
    position: absolute;
    right: -20px;
    top: 55%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    width: max-content;
    z-index: 999;
}

.site-header .right-bar .right-icons .search-button .header-search-form .form-control{
    border-radius: 0px;
}


.site-header .right-bar .right-icons .search-button .header-search-form.active{
  opacity: 1;
  visibility: visible;
  right: 27px;
}

.site-header .right-bar .langswitcher-button {
    background: linear-gradient(180deg, #D81324 0%, #970714 25%, #970714 75%, #D81324 100%);
    z-index: 1;
    clip-path: polygon(9% 0, 100% 0%, 100% 100%, 0% 100%);
    height: 100%;
    align-content: center;
    color: var(--theme-gray);
    padding: 20px 20px 20px 30px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-header .right-bar .langswitcher-button .active-img img {
    min-width: 24px;
    height: 24px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.site-header .right-bar .langswitcher-button.active .arrow-down  {
    transform: rotate(180deg);
}







@media screen and (max-width: 1600px) {
    .site-header .site-logo a img {
    max-width: 160px;
}

}

@media screen and (max-width: 1536px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
    .site-header .site-logo a img {
    max-width: 130px;
}
}

@media screen and (max-width: 1024px) {
    .site-header .site-logo {
    padding: 0px 30px 0px 30px;
}
}

@media screen and (max-width: 991.98px) {
    .site-header .right-bar {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    right: 70px;
    height: 100%;
    background: transparent;
    top: 0;
}
.site-header .right-bar .langswitcher-button {
    background: transparent;
    clip-path: none;
    padding: 0;
}



}

@media  screen and (max-width: 767px) {
    .site-header .right-bar .langswitcher-button .active-name,
.site-header .right-bar .langswitcher-button .arrow-down{
	display: none;
}
}





@media screen and (max-width: 991.98px) {
	.navbar-area .container-inner {
    padding: 0px 0px;
}
}

/* Sticky Nav */
.sticky {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	z-index: 999;
}

/* Sidepanel */

/* Slider */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.slider-item {
	width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.slider-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0a3041;
    opacity: 0.6;
}

.slider-table {
    overflow: hidden;
    display: table;
    width: 100%;
    height: 600px;
	text-align: center;
}

.slider-text {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.text-animated h1 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    margin-bottom: 25px;
}

.text-animated p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.text-animated ul {
	padding-left: 0;
	margin-top: 20px;
}

.text-animated li {
    display: inline-block;
    margin-top: 22px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.text-animated li a {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 11px 40px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.text-animated li a:hover {
    background-color: var(--main-theme-red);
    color: #fff;
    border-color: var(--main-theme-red);
}

.slide-carousel {
    overflow: hidden;
}

.slide-carousel .owl-nav .owl-prev,
.slide-carousel .owl-nav .owl-next {
	display: none;
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 38px;
    height: 54px;
    line-height: 52px;
    top: 50%;
    margin-top: -25px;
    background: var(--main-theme-red);
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.slide-carousel .owl-nav .owl-prev {
    left: 0;
    margin-left: 0px;
}

.slide-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.slide-carousel .owl-nav .owl-prev:hover,
.slide-carousel .owl-nav .owl-next:hover {
    background: var(--main-theme-red);
}

.slide-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -21px;
}

.slide-carousel .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fff;
    display: inline-block;
    margin: 0 4px;
}

.slide-carousel .owl-dots .owl-dot.active {
    background: #fff;
}

/* Video Background */
.slider-item-video .slider-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.slider-item-video .slider-table {
	z-index: 99;
	position: relative;
}
.slider-item-video .video-foreground,

@media  screen and (max-width: 767px) {
	.text-animated h1 {
    font-size: 30px;
    text-align: center;
}
.slider-text {
   text-align: center;
}
.slider-table {
    height: 500px;
}
}

/* =============================================== */
/* ================= Mobile Menu ================= */
/* =============================================== */






.special {
    padding: 40px 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.special h2 {
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.special h3 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
}

.special p {
	color: #fff;
	font-size: 15px;
}

.special .read-more {
	margin-top: 30px;
}

.special .read-more a {
	background: var(--main-theme-red);
	border: 2px solid var(--main-theme-red);
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.special .read-more a:hover {
	background: transparent;
	border-color: #fff;
}

.video-section {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.video-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
}

.video-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: var(--main-theme-red);
	border-radius: 50%;
	animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: var(--main-theme-red);
	border-radius: 50%;
	transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes video-pop {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@media only screen and (max-width: 768px) {
	.video-section {
		margin-top: 40px;
	}
}



.project {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.project .heading {
	text-align: center;
	margin-bottom: 30px;
}

.project .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--second-theme-color);
	margin-top: 0;
}

.project .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.project .project-item .photo img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.project .project-item .text {
	background: #f2f2f2;
	padding: 20px;
}

.project .project-item .text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.project .project-item .text h3 a {
	color: var(--second-theme-color);
}

.project .project-item .text h3 a:hover {
	color: var(--main-theme-red);
}

.project .project-item .text p {
	font-size: 15px;
}

.project .read-more {
	margin-top: 15px;
}

.project .read-more a {
	background: var(--main-theme-red);
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.project .read-more a:hover {
	background: var(--second-theme-color);
}

.project .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.project .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.project .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: var(--second-theme-color);
	border: 7px solid #afafaf;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.project .project-item .photo img {
		height: 190px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.project .project-item .photo img {
		height: 217px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.project .project-item .photo img {
		height: 335px;
	}
}

@media only screen and (max-width: 575px) {
	.project .project-item .photo img {
		object-fit: fill;
		height: auto;
	}
}

.testimonial {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
	background: var(--main-theme-red);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.testimonial-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--main-theme-red);
	opacity: 0.8;
}

.testimonial .heading {
	text-align: center;
	margin-bottom: 60px;
}

.testimonial .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-top: 0;
}

.testimonial .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.testimonial .testimonial-item .photo {
	text-align: center;
}

.testimonial .testimonial-item .photo img {
	width: 80px;
	height: 80px;
	display: inline-block;
}

.testimonial .testimonial-item .text {
	padding: 20px 150px;
	text-align: center;
}

.testimonial .testimonial-item .text h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	position: relative;
	margin-top: 40px;
}

.testimonial .testimonial-item .text h3:before {
	content: '';
	position: absolute;
	left: calc(50% - 20px);
	top: -20px;
	width: 40px;
	height: 2px;
	background: #fff;
}

.testimonial .testimonial-item .text h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.testimonial .testimonial-item .text p {
	font-size: 15px;
	color: #fff;
}

.testimonial .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.testimonial .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.testimonial .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: var(--second-theme-color);
	border: 7px solid #fff;
}

@media only screen and (max-width: 992px) {
	.testimonial .testimonial-item .text {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* Counter */
.counter {
    padding: 0;
}

.counter .icon {
	margin-bottom: 20px;
}

.counter .icon .fa-2x {
	width: 70px;
	height: 70px;
	padding-top: 15px;
	text-align: center;
	background: transparent;
	border: 3px solid #fff;
	border-radius: 50%;
    margin: 0 auto;
    float: none;
    display: table;
    color: #fff;
    font-size: 34px;
}


.cta {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding: 70px 0;
}
.cta .overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-theme-red);
    opacity: 0.8;
}
.cta .cta-box h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}
.cta .cta-box p {
	color: #fff;
	font-size: 20px;
}
.cta .cta-box .btn {
    border-radius: 30px;
    padding: 7px 36px;
    background: var(--second-theme-color);
    font-size: 16px;
    border: 0;
    margin-top: 16px;
}

@media screen and (max-width: 991.98px) {
	.cta {
   padding: 50px 0;
}

}


/* Blog */
.blog-area {
    overflow: hidden;
    padding: 40px 0;
}

.blog-area .heading {
	text-align: center;
	margin-bottom: 30px;
}

.blog-area .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--second-theme-color);
	margin-top: 0;
}

.blog-area .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
	margin-bottom: 15px;
}

.blog-area .blog-item h3 a {
    font-size: 1.4rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    min-height: 62px;
}

.blog-area .blog-item h3 a:hover {
    color: var(--main-theme-black);
}

.blog-area .blog-item:hover .date {
    bottom: 0;
}

.blog-area .blog-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #22232b36;
}

.blog-area .blog-item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    min-height: 75px;
}

.blog-area .blog-image {
    overflow: hidden;
    position: relative;
}

.blog-area .blog-image .aspect-custom{
    padding-bottom: 55.3%;
}

.blog-area .blog-image img {
    width: 100%;
    height: 252px;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-area .blog-image .date {
    text-align: center;
    position: absolute;
    bottom: -26px;
    right: 12px;
    padding: 10px 16px;
    color: #fff;
	z-index: 1;
    background: var(--main-theme-red);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.blog-area .blog-image .date h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 6px;
    line-height: 1.1;
    color: #fff;
}

.blog-area .blog-image .date h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    color: #fff;
}

.blog-area .blog-text {
    background: #f5f5f5;
    padding: 20px;
    border-top: 1px solid #22232b36;
}

.blog-area .read-more {
	margin-top: 15px;
}

.blog-area .read-more a {
    background: var(--main-theme-red);
    border: 0;
    border-radius: 50px;
    padding: 7px 36px;
    display: inline-block;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog-area .read-more a:hover {
	background: var(--second-theme-color);
}

.blog-area .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.blog-area .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.blog-area .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: var(--main-theme-red);
	border: 7px solid #afafaf;
}

@media screen and (max-width: 991.98px) {
    .blog-area .blog-item h3 a {
   font-size: 1.2rem;
  min-height: 55px;
}

}

@media  screen and (max-width: 767px) {
.blog-area .blog-item h3 a {
  min-height: auto
}
.blog-area .blog-image .date {
    bottom: 0;
right: 5px;
}
.blog-area .blog-item p {
    min-height: auto;
}
}










.sticky-whatsup {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    line-height: 52px;
    bottom: 107px;
    right: 20px;
    background-color: #16a503;
    color: #fff;
    /* opacity: 0.7; */
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sticky-whatsup .fa-whatsapp {
    color: #fff;
}

/* Scroll to Top */
.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    bottom: 46px;
    right: 20px;
    background: var(--main-theme-red);
    color: #fff;
    opacity: 0.7;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll-top:hover {
	opacity: 1;
	color: #fff;
	background: #313131;
}

/* Footer */

.footer-contact ul li {
	position: relative;
	padding-left: 26px!important;
	font-size: 15px;
	margin-bottom: 8px;
}

.footer-contact ul li:before {
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 0;
	top: 0;
	color:#c7c7c7;
	font-size: 16px;
}
.footer-contact ul li:nth-child(1):before {
	content: '\f279';
}
.footer-contact ul li:nth-child(2):before {
	content: '\f2b6';
	font-size: 14px;
}
.footer-contact ul li:nth-child(3):before {
	content: '\f2b9';
}

.copyright {
    color: #c7c7c7;
}
.copyright p {
    margin: 0;
}

/* Page Banner */
.page-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    border-radius: 0;
    margin-top: 0;
    overflow: hidden;
}

.bg-page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #14151B;
    opacity: 0.7;
}

/* .bg-page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--second-theme-color);
    opacity: 0.9;
    background-image: linear-gradient(90deg, #0e294a 0%, rgb(67 126 235 / 50%) 100%);
    background-color: #0e294a;
} */

.page-banner .text {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	z-index: 99;
}

.page-banner .text h1 {
	color: var(--theme-gray);
	font-size: 36px;
	font-weight: 700;
	margin: 0!important;
}

.page-banner .breadcrumb {
    background-color: transparent;
    text-align: center;
    margin-bottom: 0;
    margin-top: 14px;
}

/* .page-banner .breadcrumb-item {
	color: #bdbaba;
	font-weight: 600;
	font-size: 18px;
} */

.page-banner .breadcrumb-item a {
	color: var(--theme-gray);
}

.page-banner .breadcrumb-item  ,
.page-banner .breadcrumb-item {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

.page-banner .breadcrumb-item.active {
    color: var(--theme-gray);
}

.page-banner .breadcrumb-item a:hover {
	color: #f3f3f3;
}

.page-banner .breadcrumb-item::before {
	color: #fff!important;
}

@media only screen and (max-width: 991px) {
	.page-banner .text {
		padding-top: 125px;
	}
}
@media only screen and (max-width: 767px) {
.page-banner .text h1 {
    font-size: 26px;
}
.page-banner .breadcrumb-item {
    font-size: 14px;
}
}

/* Page Content */

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	margin-bottom: 7px;
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
}

.page-content ul li {
	list-style-type: none;
	position: relative;
	background-image: url(../images/tick2.png);
	background-size: 16px 16px;
	background-position: 0 4px;
	background-repeat: no-repeat;
	padding-left: 25px;
	margin-bottom: 10px;
}

.page-content ol li {
	margin-bottom: 15px;
}

/* Single Section */
.single-section .blog-item {
	margin-bottom: 50px;
}


.single-section h2 a {
	color: var(--second-theme-color);
}


.single-section .featured-photo {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #22232b36;
}

.single-section .featured-photo .aspect-custom {
	padding-bottom: 54%;
}

.single-section .read-more {
	margin-top: 30px;
}

.single-section .read-more a {
	background: var(--main-theme-red);
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.single-section .read-more a:hover {
	background: var(--second-theme-color);
}

@media only screen and (max-width: 991px) {
	.single-section {
		margin-bottom: 30px;
	}
}

/* Sidebar */

.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar .widget {
    padding: 20px;
    border-radius: 12px;
    background: #f1f5f9;
    border-top: 4px solid var(--main-theme-red) !important;
    border: 1px solid #22232b36;
}

.sidebar .widget h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.sidebar .widget .type-2 ul {
    margin-left: 0 !important;
    padding-left: 0!important;
}

.sidebar .widget .type-1 ul li {
	list-style-type: none;
	padding-left: 26px;
	position: relative;
	margin-bottom: 10px;
	background: none!important;
}

.sidebar .widget .type-1 ul li:before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--main-theme-red);
}

.sidebar .widget .type-1 ul li a {
	color: var(--second-theme-color);
}

.sidebar .widget .type-1 ul li a:hover {
	color: var(--main-theme-red);
}

.sidebar .widget .type-2 img {
    width: 70px;
    height: 60px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccccccd1;
}

.sidebar .widget .type-2 ul li {
	list-style-type: none;
	position: relative;
	margin-bottom: 10px;
}

.sidebar .widget .type-2 ul li:last-child {
	margin-bottom: 0 !important;
}

.sidebar .widget .type-2 ul li a {
    width: calc(100% - 90px);
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    line-height: 1.4;
    font-size: 1.1rem;
    text-transform: capitalize;
    color: var(--main-theme-black);
}

.sidebar .widget .type-2 ul li a:hover {
	color: var(--main-theme-red);
}

.sidebar .widget .type-2 ul li {
	background: none;
	padding-left: 0;
}

.sidebar .widget .type-2 ul li:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.sidebar .widget .search .input-group-append {
	width: 36px;
}

.sidebar .widget .search button {
	background: var(--main-theme-red);
	border: 0;
	width: 36px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.sidebar .widget .search button i {
	color: #fff;
}

.sidebar .widget .type-3 button {
	border: 0;
	background: var(--main-theme-red);
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.sidebar .widget .type-3 button:hover {
	background: var(--second-theme-color);
}

.sidebar .widget .project-detail .item {
	margin-bottom: 25px;
}

.sidebar .widget .project-detail .item h4 {
	color: var(--second-theme-color);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px!important;
}

.sidebar .widget .project-detail .item p {
	color: #555;
	font-size: 15px;
}

@media  screen and (max-width: 767px) {
.sidebar .widget .type-2 ul li a {
    font-size: 1rem;
}
}

.team {
	padding-top: 70px;
	padding-bottom: 80px;
	overflow: hidden;
}

.team .heading {
	text-align: center;
	margin-bottom: 30px;
}

.team .heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--second-theme-color);
	margin-top: 0;
}

.team .heading h3 {
	font-size: 20px;
	font-weight: 500;
	color: #928f8f;
}

.team-item {
	border: 1px solid #ddd;
	margin-top: 30px;
}

.team-photo img {
	width: 100%;
	height: 292px;
	object-fit: cover;
}

.team-photo-anchor {
	width: 100%;
	height: 100%;
}

.team-text {
	text-align: center;
	background: var(--main-theme-red);
	color: #fff;
	padding: 15px;
}

.team-text h4 {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin: 0;
	margin-bottom: 4px!important;
}

.team-text h4 a {
	color: #fff;
}

.team-text p {
	margin: 0;
	font-size: 14px;
}

.team-social {
	text-align: center;
	background: var(--second-theme-color);
	width: 100%;
	padding: 10px 0;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	margin-top: 15px;
}

.team-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 0!important;
}

.team-social li {
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 0!important;
	background: none!important;
	padding-left: 0!important;
}

.team-social li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	border: 1px solid #ddd;
	margin: 5px 0;
	text-decoration: none;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.team-social li a:hover {
	background: var(--main-theme-red);
	color: #fff;
	border: 1px solid var(--main-theme-red);
}

.team .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.team .owl-dots .owl-dot {
	width: 24px;
	height: 24px;
	background: #fff;
	border: 7px solid #afafaf;
	border-radius: 50%;
	display: inline-block;
	margin: 0 5px;
}

.team .owl-dots .owl-dot.active {
	width: 24px;
	height: 24px;
	background: var(--second-theme-color);
	border: 7px solid #afafaf;
}

.team-member-photo img {
    width: 100%;
    height: auto;
}
.team-single ul.social {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.team-single ul.social li {
    list-style-type: none;
    display: inline-block;
}

.team-single ul.social li a {
    background: #5ac736;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    margin-right: 6px;
    font-size: 16px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.team-single ul.social li a:hover {
    background: var(--second-theme-color);
}
.team-single table {
    background: #fff;
}
.team-single table tr td:nth-of-type(1) {
    width: 200px;
    font-weight: 500;
}
.team-single .description h2 {
	font-size: 24px;
	font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.team-photo img {
		height: 240px;
	}
	.team-social li a {
		width: 24px;
		height: 24px;
		line-height: 24px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.team-photo img {
		height: 378px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.team-photo img {
		height: 588px;
	}
}

@media only screen and (max-width: 575px) {
	.team-photo img {
		object-fit: fill;
		height: auto;
	}
}


/* Comment */
.comment button {
	border: 0;
	background: var(--main-theme-red);
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.comment > h2 {
	margin-bottom: 30px!important;
}

.comment button:hover {
	background: var(--second-theme-color);
}

.comment-item {
	margin-bottom: 20px;
	display: flex;
	justify-content: left;
}

.comment-item .photo {
	width: 70px;
	margin-right: 15px;
}

.comment-item .photo img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid #ddd;
}

.comment-item .text h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px!important;
}

.comment-item .text .date {
	font-size: 14px;
	color: #848484;
	margin-bottom: 15px;
}

.comment-item .text .des {
	font-size: 14px;
}


/* FAQ */
.faq {
	margin-top: 30px;
	background: #fff;
}

.faq .panel-body ol li,
.faq .panel-body ul li {
	list-style-position: inside;
}

.faq .panel {
	box-shadow: none!important;
	border-radius: 0!important;
	margin-bottom: 10px;
}

.faq .panel-group {
	margin-bottom: 40px;
}

.faq .panel-default>.panel-heading {
	background: #eee;
	color: var(--second-theme-color);
	padding: 0;
	border-radius: 0;
	border: 1px solid #eee;
	position: relative;
}

.faq .panel-group .panel-heading a:after {
	content: '\f358';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	font-weight: normal;
	right: 20px;
	top: 14px;
	font-size: 24px;
}

.faq .panel-group .panel-heading a.collapsed:after {
  	content: '\f358';
  	font-family: 'Font Awesome 5 Free';
  	font-size: 24px;
}

.faq h4.panel-title {
	margin-bottom: 0!important;
	border: 1px solid var(--main-theme-red);
}
.faq h4.panel-title a {
	display: block;
	padding: 16px 15px;
	font-size: 18px;
	font-weight: 700;
	background: var(--main-theme-red);
	color: #fff;
}

.faq .panel-body {
	border-top: 0;
	padding: 15px;
}

/* Order Bottom */
.order-bottom {
	margin-top: 30px;
	background: #fff;
}
.order-bottom .panel-body {
	padding-left: 0!important;
	padding-right: 0!important;
}

.order-bottom .panel-body ol li,
.order-bottom .panel-body ul li {
	list-style-position: inside;
}

.order-bottom .panel {
	box-shadow: none!important;
	border-radius: 0!important;
	margin-bottom: 10px;
}

.order-bottom .panel-group {
	margin-bottom: 40px;
}

.order-bottom .panel-default>.panel-heading {
	background: #eee;
	color: var(--second-theme-color);
	padding: 0;
	border-radius: 0;
	border: 1px solid #eee;
	position: relative;
}

.order-bottom .panel-group .panel-heading a:after {
	content: '\f068';
	font-family: 'FontAwesome';
	position: absolute;
	font-weight: normal;
	right: 20px;
	top: 13px;
	font-size: 14px;
}

.order-bottom .panel-group .panel-heading a.collapsed:after {
  	content: '\f067';
  	font-family: 'FontAwesome';
  	font-size: 14px;
}
.order-bottom h4.panel-title {
	margin-bottom: 0!important;
	border: 1px solid var(--main-theme-red);
}
.order-bottom h4.panel-title a {
	display: block;
	padding: 10px 15px;
	font-size: 18px;
	font-weight: 700;
	background: #f3f3f3;
	color: var(--main-theme-red);
}

.order-bottom .panel-body {
	border-top: 0;
	padding: 15px;
}

/* Photo Gallery */
.gallery-photo {
	margin-bottom: 30px;
}

.gallery-photo img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallery-photo .gallery-photo-bg {
	position: absolute;
	left: 15px;
	top: 0;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
    opacity: 0;
    background: var(--second-theme-color);
    z-index: 9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-photo:hover .gallery-photo-bg {
	opacity: 0.6;
}

.gallery-photo .plus-icon {
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	text-align: center;
	z-index: 99;
	font-size: 30px;
	color: #fff;
}

.gallery-photo:hover .plus-icon {
	visibility: visible;
	display: flex;
	align-items: center;
  	justify-content: center;
  	margin-top: -15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.gallery-photo img {
		height: 207px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.gallery-photo img {
		height: 236px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.gallery-photo img {
		height: 364px;
	}
}

@media only screen and (max-width: 575px) {
	.gallery-photo img {
		object-fit: fill;
		height: auto;
	}
}

/* Video Gallery */
.video-item {
	margin-bottom: 70px;
}
.video-item iframe {
	width: 100%;
	height: 350px;
}
.video-item .video-caption {
	font-weight: 700;
	font-size: 18px;
}


/* Product Detail */
.product-detail .photo img {
    width: 100%;
    height: auto;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.product-detail h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px!important;
}

.product-detail p {
	font-size: 16px;
}

.product-detail .price {
	font-size: 28px;
	font-weight: 600;
	color: var(--main-theme-red);
}

.product-detail .price del {
	color: red;
}

.product-detail .delivery-time {
	font-size: 18px;
}

.product-detail .qty {
	font-size: 18px;
}

.product-detail .qty input[type="number"] {
	width: 100px;
}

.product-detail button {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border: 0;
    border-radius: 50px;
    background: var(--main-theme-red);
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-detail button:hover {
	background: var(--second-theme-color);
}

.product-detail .nav-pills .nav-link.active {
	background: var(--main-theme-red);
	color: #fff;
}

.product-detail .nav-pills .nav-link {
	background: #f1f5f9;
	color: var(--main-theme-red);
}

.product-detail li.nav-item {
	margin-right: 10px;
}

.product-detail .nav-pills li {
	background: none!important;
	padding-left: 0!important;
}

.product-detail .text-content ul,
.product-detail .text-content ol {
	margin-bottom: 0px;
	padding-left: 0;

}

.product-detail .text-content ul li {
	list-style-type: none;
	position: relative;
	background-image: url(../images/tick2.png);
	background-size: 13px 13px;
	background-position: 0 5px;
	background-repeat: no-repeat;
	padding-left: 22px;
	margin-bottom: 8px;
	font-size: var(--font-size-16);
	line-height: 1.6;
}

.product-detail .text-content ol {
	padding-left: 20px;
}

.product-detail .text-content ol li {
	margin-bottom: 8px;
	font-size: var(--font-size-16);
	line-height: 1.6;
}

.product-detail a.stock-available-amount {
	background: #ffc107;
	color: var(--second-theme-color);
	border: 0;
	border-radius: 16px;
	padding: 5px 18px;
	font-size: 14px;
}

.product-detail a.stock-empty {
	background: #ead1d1;
	color: #ff0000;
	border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    display: inline-block;
    margin-top: 30px;
    text-transform: uppercase;
}

.product-detail a.stock-empty:hover {
	background: #ead1d1;
	color: #ff0000;
}

@media only screen and (max-width: 767px) {
	.product-detail .photo img {
		margin-bottom: 30px;
	}
}

/* Cart */
.cart table img {
	width: 100px;
	height: auto;
}

.cart input[type="number"] {
	width: 100px;
}

.cart .total {
	font-size: 18px;
	font-weight: 600;
}

.cart-buttons {
	float: right;
}

.cart-buttons a,
.cart-buttons input[type="submit"] {
	margin-right: 10px;
}

@media only screen and (max-width: 767px) {
	.cart-buttons {
		margin-bottom: 30px;
	}
}


/* Login */
.reg-login-form h2 {
	font-size: 24px;
	font-weight: 700;
}

.reg-login-form .inner {
	display: flex;
	justify-content: center;
}

.reg-login-form input {
	width: 400px;
}

.reg-login-form .new-user {
	margin-top: 15px;
	font-weight: 600;
}

.reg-login-form .new-user a {
	color: var(--main-theme-red);
}

.reg-login-form .new-user a:hover {
	color: var(--second-theme-color);
}

@media only screen and (max-width: 991px) {
	.reg-login-form input {
		width: 100%;
	}
	.reg-login-form select {

	}
	.reg-login-form .inner {
		display: block;
	}
}

/* User Panel */
.user-sidebar ul {
	display: flex;
	flex-direction: column;
}

.user-sidebar ul li {
	list-style-type: none;
	margin-bottom: 5px;
	padding-left: 0;
	background: none;
}

.modal-full-width .top-right {
	font-size: 20px;
	font-weight: 700;
	float: right;
	margin-top: 30px;
}

.customer-invoice .left img {
	height: 70px;
}
.customer-invoice .left .company-info {
	font-size: 14px;
	margin-bottom: 30px;
}
.customer-invoice .right {
	text-align: right;
	font-size: 18px;
	font-weight: 700;
	margin-top: 30px;
}
@media print {
	@page { margin: 0; }
}

.nav-doctor li {
	padding-left: 0!important;
	background: none!important;
}

.doc_detail_social li {
	padding-left: 0!important;
	background: none!important;
	float: left;
	margin-right: 5px;
}

.doc_detail_social li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	background: var(--main-theme-red);
	color: #fff;
	border-radius: 4px;
	transition: all 0.4s ease;
}
.doc_detail_social li:hover i {
	background: var(--second-theme-color);
}

.nav-doctor .nav-link {
	background: #e6e6e6;
	margin-right: 10px;
	color: var(--second-theme-color);
}
.nav-doctor .nav-link.active,
.nav-doctor .show > .nav-link {
	background: var(--main-theme-red);
}

/* Bootstrap Pagination */
.pagination li {
    background: none!important;
    padding-left: 0!important;

}

.pagination li .page-link{
  box-shadow: none;
}


/* ------------------------------------------- */
/* toastr */
/* ------------------------------------------- */
.toast {
    opacity: 1 !important;
}
#success_toastr {
    background: green!important;
}
#error_toastr {
    background: red!important;
}
.toast-error {
  background-color: #bd362f;
}
.toast-success {
  background-color: #51a351;
}
.toast-warning {
  background-color: #f89406;
}

/* Checkout */

.checkout-right .inner {
	background: #f3f3f3;
	padding: 15px;
}

.checkout-right .p_name,
.shipping-checkbox-container .form-check {
	margin-bottom: 10px;
}
.shipping-checkbox-container input:focus {
	border-color: none!important;
}
.shipping-checkbox-container .heading {
	line-height: 1.1;
}
.shipping-checkbox-container .subheading {
	font-size: 12px;
}
.checkout-left input[type="checkbox"],


/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

#preloader #status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
}

.share_buttons a {
	text-align: center;
}

.share_buttons a.twitter {
    background: #000;
    height: 40px;
    display: inline-block;
    width: 40px;
    border-radius: 50px;
    align-content: center;
    margin-right: 4px;
    position: relative;
    top: -1px;
    border: 1px solid #000;
}

.share_buttons a.twitter:hover {
    background: transparent;
}

.share_buttons a.twitter:hover svg {
    fill: #000;
}

.share_buttons a.twitter svg {
    width: 16px;
    height: auto;
    fill: #fff;
}

.share_buttons a i {
    border: 1px solid #3b5998;
    color: #fff!important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    margin-right: 4px;
    transition: all 0.3s ease-in-out;
}
.share_buttons a.facebook i {
	background: #3b5998;
    border-color: #3b5998;
}
.share_buttons a.facebook:hover i {
	color: #3b5998!important;
	background: #fff;
}
.share_buttons a.twitter i {
	background: #00aced;
    border-color: #00aced;
}
.share_buttons a.twitter:hover i {
	color: #00aced!important;
	background: #fff;
}
.share_buttons a.pinterest i {
	background: #EB4823;
    border-color: #EB4823;
}
.share_buttons a.pinterest:hover i {
	color: #EB4823!important;
	background: #fff;
}
.share_buttons a.linkedin i {
	background: #0e76a8;
    border-color: #0e76a8;
}
.share_buttons a.linkedin:hover i {
	color: #0e76a8!important;
	background: #fff;
}

.navbar-expand-md .navbar-collapse {
    justify-content: center;
}

.active>.page-link, .page-link.active {
	background-color: var(--main-theme-red);
	border-color: var(--main-theme-red);
}

.page-link {
color: var(--main-theme-red);
}

.page-content .contact-item .contact-text p a{
	color: #000;
}

.page-content .contact-item .contact-text p a:hover{
	color: var(--main-theme-red);
}

@media  screen and (max-width: 767px) {
.service ,
.blog-area,
.special ,
.feature {
    overflow: hidden;
    padding: 40px 0;
}
}

@media screen and (max-width: 991.98px) {
	.welcome-section .heading h2,
	.blog-area .heading h2,
	.cta .cta-box h2,
	.service .heading h2,
	.special h2,
	.feature .heading h2 {
    font-size: 30px;
}
.welcome-section .heading h3,
.blog-area .heading h3,
.service .heading h3,
.feature .heading h3 {
    font-size: 18px;
}

}

@media  screen and (max-width: 767px) {
	.welcome-section .heading h2,
	.blog-area .heading h2, .cta .cta-box h2, .service .heading h2, .special h2, .feature .heading h2 {
    font-size: 26px;
}
.welcome-section .heading h3,
.blog-area .heading h3, .service .heading h3, .feature .heading h3 {
    font-size: 16px;
}
}

section.section.about-us-tabs {
    padding-top: 50px;
}

/* service-page */

.service-content .content {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.step-content .step-box .box-wrap .step-number {
    position: relative;
    top: -3px;
    font-weight: 500;
    font-size: 18px;
}

.step-content .step-box{
    margin-top: 20px;
}

.step-content .step-box .box-wrap {
    display: flex;
    gap: 1rem;
}

.service-accordion .accordion-item .accordion-button {
    box-shadow: none;
}

.service-accordion .accordion-item .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--main-theme-red);
}

.service-accordion .accordion-item .accordion-button{
    font-weight: 500;
    font-size: 18px;
}

.service-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    transform: var(--bs-accordion-btn-icon-transform);
}

@media  screen and (max-width: 767px) {
	.service-top .right-content {
    margin-top: 20px;
}
.section-padding-sm.section.service-top {
	padding-bottom: 10px !important	;
}
.service-accordion .accordion-item .accordion-button {
    font-size: 16px;
}
.step-content .step-box .box-wrap .step-number {
    top: -2px;
    font-size: 16px;
}
.step-content .step-box {
    margin-top: 10px;
}
}

.e-commerce-service .heading {
	text-align: center;
	margin-bottom: 30px;
}

.e-commerce-service .service-item {
    margin-top: 20px;
    text-align: center;
    height: calc(100% - 22px);
    padding: 22px;
    background: #f3f7f9;
    border: 1px solid #ddd;
    border-radius: 20px;
	transition: all 0.3s ease-in-out;
}

.e-commerce-service .service-item:hover {
    border: 1px solid var(--main-theme-red);
}

.e-commerce-service .service-item .photo img {
    width: 120px;
    height: auto;
    object-fit: cover;
    margin: auto;
    display: block;
    padding: 5px;
    border: 5px solid #fff;
}

.e-commerce-service .service-item .text {
    padding-top: 16px;
}

.e-commerce-service .service-item .text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.e-commerce-service .service-item .text h3 a {
	color: var(--second-theme-color);
}

.e-commerce-service .service-item .text h3 a:hover {
	color: var(--main-theme-red);
}

.e-commerce-service .service-item .text p {
    font-size: 14px;
    margin-bottom: 0;
}

.e-commerce-service .read-more {
	margin-top: 15px;
}

.e-commerce-service .read-more a {
	background: var(--main-theme-red);
	border: 0;
	border-radius: 50px;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}

.e-commerce-service .read-more a:hover {
	background: var(--second-theme-color);
}

.zik-zek-design .service-top .right-content ul{
    margin-bottom: 0 !important;
}

.zik-zek-design .right-content {
    padding: 30px;
    border-top: 4px solid var(--main-theme-red);
    margin-top: 20px;
    background: #f3f7f9;
}

.zik-zek-design .right-content .box-wrap {
    display: flex;
    gap: 1.4rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.zik-zek-design .right-content .box-wrap .image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 6px;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.zik-zek-design .right-content .box-wrap .box-title {
    border-left: 1px dashed #ddd;
    padding-left: 1rem;
}

.zik-zek-design .right-content .box-wrap .image img {
        width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 10px;
    border: 2px solid #ddd;
    background: #fff;
    object-fit: contain;
    border-radius: 10px;
}

.zik-zek-design .right-content ul {
    column-count: 2;
}

.zik-zek-design .right-content ul li strong{
	font-weight: 600 !important;
}

@media screen and (max-width: 991.98px) {
	.zik-zek-design .right-content ul {
    column-count: 1;
}
}

@media  screen and (max-width: 767px) {
	.zik-zek-design .right-content .box-wrap {
    flex-direction: column;
	padding-bottom: 0;
}
.zik-zek-design .right-content {
    padding: 14px;
}
.zik-zek-design .right-content .box-wrap .image {
    width: 80px;
    height: 80px;
    min-width: 80px;
	margin: auto;
}

.zik-zek-design .right-content .box-wrap .box-title {
    border-left: 0;
    padding-left: 0;
    text-align: center;
}

.zik-zek-design .right-content .box-wrap .image img {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.zik-zek-design .right-content {
    margin-top: 14px;
}
}

.blog-detail ol ,
.blog-detail ul {
    margin-left: 0 !important;
    padding-left: 1.4rem !important;
}

.blog-detail ul li {
    list-style-type: disc !important;
    background-image: none !important;
    padding-left: 0 !important;
}

.blog-detail p a {
    font-weight: 600;
}

.blog-detail p a:hover{
	color: #000;
}

.star-icons .star-box .icon {
    margin-bottom: 17px;
}

.star-icons .star-box .icon svg{
    width: 50px;
    height: auto;
    fill: #FF5E14;
}

.star-icons .star-box .text p {
    margin-bottom: 0;
}

.blog-pagination .pagination {
    justify-content: center;
    margin-bottom: 0;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.555em;
    vertical-align: .255em;
    content: "";
    height: 8px;
    width: 8px;
    border-style: solid;
    border-color: white;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.dropdown ul li .dropdown-toggle::after {
    border-top: none;
    top: -3px;
    position: relative;
    height: 8px;
    width: 8px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::after{
	    vertical-align: 0.055em !important;
}

/* new-service-design */

.single-service-page .service-left-content .image-with-content .blue-line {
    width: 70px;
    height: 2px;
    background: #0e294a;
    display: inline-block;
    top: -6px;
    position: relative;
}

.single-service-page .service-left-content .image-with-content .blue-line::before {
    position: absolute;
    right: 9px;
    top: -7px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    content: "";
}

.single-service-page .service-left-content .image-with-content .right-image .border-design {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.single-service-page .service-left-content .text-content {
    border-top: 1px solid #dddddd;
    padding-top: 18px;
    margin-top: 18px;
}

.single-service-page .service-left-content .service-accordion .accordion {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
}

.single-service-page .service-left-content .service-accordion .accordion .card:last-child{
	    border-bottom: none;
}

.single-service-page .service-left-content .service-accordion .accordion .card:last-child .card-header .accordion-button{
	padding: 0;
}

.single-service-page .service-left-content .service-accordion .accordion .card:last-child .accordion-collapse .accordion-body {
    padding: 15px 0 0px 0;
    border-top: none;
}

.service-accordion .card .card-header .accordion-button:after {
     position: absolute;
    right: 0;
}

.service-accordion .card {
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0px;
    margin-bottom: 15px;
    overflow: inherit;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.service-accordion .card:last-child {
  margin-bottom: 0;
}

.service-accordion .card .card-header {
  border: none;
  background: transparent;
  padding: 0;
}

.service-accordion .card .card-header .accordion-button {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 15px;
    box-shadow: none;
    border: none;
    padding-right: 50px;
    cursor: pointer;
    background-color: transparent;
}

.service-accordion .card .accordion-collapse .accordion-body {
    padding: 0px 0 15px 0;
    border-top: none;
}

.single-service-page .service-left-content .service-content-slider {
    margin-top: 24px;
    border-top: 1px solid #ddd;
}

.single-service-page .service-left-content .service-content-slider  .content-box {
    display: flex;
	border-radius: 12px;
    gap: 1.4rem;
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
    background: #fff;
    padding: 30px;
    -webkit-transition: all 0.3s
cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s
cubic-bezier(0.645, 0.045, 0.355, 1);
    margin-top: 24px;
    height: calc(100% - 24px);
    border-top: 4px solid #0e294a;
}

.single-service-page .service-left-content .service-content-slider  .content-box .svg-image{
	text-align: center;
}

.single-service-page .service-left-content .service-content-slider .content-box:hover{
	transform: translateY(-8px);
}

.single-service-page .service-left-content .service-content-slider  .content-box .text {
    border-left: 1px dashed #ddd;
    padding-left: 1rem;
}

.single-service-page .service-left-content .service-content-slider  .content-box .text p{
   margin-bottom: 0;
}

.single-service-page .service-left-content .service-content-slider  .content-box .image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 6px;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.single-service-page .service-left-content .service-content-slider  .content-box  img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 10px;
    border: 2px solid #ddd;
    background: #fff;
    object-fit: contain;
    border-radius: 10px;
}

.single-service-page .service-left-content .service-content-slider  .content-box svg {
    fill: #ff5e14;
    width: 36px;
    height: auto;
    display: inline-block;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box:hover{
	border-color: var(--main-theme-red);
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box p {
    margin-bottom: 0px;
}

.single-service-page .service-left-content .step-content-slider .col {
    margin-top: 10px;
	height: auto;
}

.single-service-page .service-left-content .step-content-slider {
    padding: 20px 0;
	padding-top: 0px;
}

.single-service-page .service-left-content .step-content-slider .box-wrap {
    padding: 30px 20px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease, background-position 0.4s ease;
    margin-top: 14px;
    height: calc(100% - 14px);
    position: relative;
    background-image: linear-gradient(90deg, rgba(30, 85, 189, 1) 0%, #0e294a 100%);

    /* Needed for smooth animation */
    background-size: 200% 100%;
    background-position: left center;
}

.single-service-page .service-left-content .step-content-slider .box-wrap:hover {
    background-position: right center;
}

.single-service-page .service-left-content .step-content-slider .box-wrap .step-number {
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #ff5e14b0;
    height: 40px;
    width: 40px;
    align-content: center;
    font-weight: 600;
    font-size: 20px;
    border-radius: 12px;
    color: #ffffffb5;
	transition: all 0.3s ease-in-out;
}

.single-service-page .service-left-content .step-content-slider .box-wrap:hover .step-number {
   border: 3px solid #ff5e14;
 color: #fff;
}

.single-service-page .service-left-content .step-content-slider .box-wrap .step-text h5 {
    font-size: 20px;
    color: #fff;
    padding: 0 30px;
}

.single-service-page .service-left-content .step-content-slider .box-wrap .step-text p {
    margin-bottom: 0;
}

.step-content-slider .service-footer-wrap {
    justify-content: end !important;
}

.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap:hover {
    border-color: var(--main-theme-red);
}

.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap .step-number {
    position: relative;
    top: -2px;
    font-weight: 500;
    font-size: 18px;
}

/* Service Sidebar */

.single-service-page .service-sidebar .sidebar-item .sidebar-title {
    background-image: linear-gradient(90deg, rgba(30, 85, 189, 1) 0%, #0e294a 100%);
    text-align: center;
    padding: 16px;
    font-size: 20px;
    position: absolute;
    border-radius: 20px;
    top: -27px;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
    width: 91%;
    left: 50%;
}

.single-service-page .service-sidebar .sidebar-item {
    padding: 26px;
    background: #fafafa;
    padding-top: 44px;
    margin-top: 25px;
    margin-bottom: 42px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #e7e7e7;
}

.single-service-page .service-sidebar .sidebar-item p {
    margin-bottom: 0;
}

.single-service-page .service-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}

.single-service-page .service-sidebar .sidebar-item li {
  margin-bottom: 15px;
}

.single-service-page .service-sidebar .sidebar-item li a:hover {
  color: #437eeb;
}

.single-service-page .service-sidebar .sidebar-item li:last-child {
  margin-bottom: 0;
}

.single-service-page .service-sidebar .sidebar-item li.active {
  padding-left: 25px;
  position: relative;
  z-index: 1;
}

.single-service-page .service-sidebar .sidebar-item li.active::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f0a4";
  font-family: "Font Awesome 5 Free";
  color: #232323;
}

.single-service-page .service-sidebar .sidebar-item li.active a {
  color: #437eeb;
}

.single-service-page .service-sidebar .sidebar-item ul.contact{
	margin-bottom: 0 !important;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li {
    display: flex;
    background: none;
    padding-left: 0;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li img {
    max-width: 36px;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li:last-child {
  margin-bottom: 0;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li .info {
  padding-left: 15px;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li .info h6 {
    font-weight: 900;
    margin-bottom: 4px;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li .info a{
	display: inline-block;
	color: var(--main-theme-red);
	transition: all 0.3s ease-in-out;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li .info a:hover{
	color: #000;
}

.single-service-page .service-sidebar .sidebar-item ul.contact li .icon {
  position: relative;
  top: 5px;
}

.wp-store-development .accordion .accordion-body ul {
	column-count: 2;
}

 .section-heading h2,.section-heading .h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--second-theme-color);
	margin-top: 0;
}

@media screen and (max-width: 1366px) {
.single-service-page .service-sidebar .sidebar-item .sidebar-title {
    font-size: 18px;
}
}

@media screen and (max-width: 991.98px) {
	 .section-heading h2,.section-heading .h2 {
    font-size: 30px;
}

}

@media  screen and (max-width: 767px) {
  .section-heading h2,.section-heading .h2 {
    font-size: 16px;
}
.wp-store-development .accordion .accordion-body ul {
	column-count: 1;
}

.single-service-page .service-left-content .service-accordion .accordion {
    padding: 16px;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box {
     padding: 12px;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box p {
    margin-bottom: 0px;
    font-size: 14px;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box  img {
    max-width: 40px;
}

.single-service-page .service-left-content .service-content-slider .swiper-slide .content-box h4 {
    font-size: 16px !important;
}

.single-service-page .service-sidebar .sidebar-item {
     margin-bottom: 44px;
}
.single-service-page .service-sidebar .sidebar-item .sidebar-title {
    font-size: 16px;
}

.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap {
	padding: 14px
}

.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap .step-number {
    font-size: 16px;
}

.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap .step-text h5 {
    font-size: 17px;
}
.single-service-page .service-left-content .step-content-slider .swiper-slide .box-wrap .step-text p {
    font-size: 14px;
}

.single-service-page .service-left-content .text-content {
    padding-top: 14px;
    margin-top: 0;
}

.single-service-page .service-left-content .step-content-slider {
    padding: 20px 0;
    padding-top: 0;
}

.single-service-page .service-left-content .step-content-slider .box-wrap .step-number {
    font-size: 16px;
}

.single-service-page .service-left-content .step-content-slider .box-wrap {
   margin-top: 8px;
    height: calc(100% - 8px);
}

.single-service-page .service-left-content .step-content-slider .box-wrap .step-text h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.single-service-page .service-left-content .service-content-slider  .content-box {
    padding: 16px;
    margin-top: 16px;
    height: calc(100% - 16px);
    flex-direction: column;
}

.single-service-page .service-left-content .service-content-slider  .content-box .image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: auto;
}

.single-service-page .service-left-content .service-content-slider  .content-box  img {
    max-width: 80px;
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.single-service-page .service-left-content .service-content-slider  .content-box .text {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

}

/* Home-slider */



/* Coman Css For New Site */

/* Image-wrap */



.image-wrap {
  position: relative
}

.image-wrap.aspect-16x9 {
  padding-bottom: 56.25%
}

.image-wrap.aspect-54 {
  padding-bottom: 54%
}

.image-wrap.aspect-9x16 {
  padding-bottom: 177.77778%
}

.image-wrap.aspect-4x3 {
  padding-bottom: 75%
}

.image-wrap.aspect-3x4 {
  padding-bottom: 133.33333%
}

.image-wrap.aspect-3x2 {
  padding-bottom: 66.66667%
}

.image-wrap.aspect-2x3 {
  padding-bottom: 150%
}

.image-wrap.aspect-1x1 {
  padding-bottom: 100%
}

.image-wrap.aspect-60 {
  padding-bottom: 60%
}

.image-wrap.aspect-63 {
  padding-bottom: 63%
}

.image-wrap.aspect-136 {
  padding-bottom: 136%
}

.image-wrap.aspect-47 {
  padding-bottom: 47%
}
.image-wrap.aspect-38 {
  padding-bottom: 38%
}

.image-wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-wrap.loader {
  background-image: url("../images/loader-style1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  background-color: #f1f5f9;
}

.image-wrap.loader.loader-sm {
  background-size: 25px
}

.image-wrap.picture picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.image-wrap.picture img {
  position: relative
}

.image-wrap.no-position img {
  position: relative;
  height: auto;
  width: auto
}

.image-wrap.img-auto img {
  height: auto;
  width: auto;
  right: 0;
  left: 0;
  margin: auto;
  max-height: 100%
}

.container,
.container-custom {
    max-width: min(100vw, 1440px) !important;
}

.container-custom-xxl {
    max-width: min(100vw, 96%) !important;
}

@media  screen and (max-width: 1440px) {
.container-custom-xxl {
    max-width: min(100vw, 100%) !important;
}
}




@media  screen and (max-width: 767px) {
	.image-wrap.loader {
	background-size: 20px;
	}
}

/*//////// form-style1 /////////////////*/

.form-style1 .form-group .invalid-feedback,
.reg-login-form .form-group .invalid-feedback {
    display: none;
    font-size: 13px;
    color: #dc3545;
    margin-top: 4px;
}
.form-style1 .form-group .is-invalid ~ .invalid-feedback,
.form-style1 .form-group .is-invalid ~ .input-icon ~ .invalid-feedback,
.form-style1 .form-group:has(.is-invalid) > .invalid-feedback,
.reg-login-form .form-group .is-invalid ~ .invalid-feedback,
.reg-login-form .form-group:has(.is-invalid) > .invalid-feedback {
    display: block !important;
}
.form-style1 .form-control-custom.is-invalid,
.reg-login-form .form-control.is-invalid {
    border-color: #dc3545;
}

/* Client-side validation: ensure error messages show in all form layouts */
.is-invalid ~ .invalid-feedback,
.is-invalid + .invalid-feedback,
.input-group:has(.is-invalid) .invalid-feedback,
.col:has(.is-invalid) > .invalid-feedback {
    display: block !important;
}
.newsletter-form .invalid-feedback,
.frm_newsletter .invalid-feedback {
    color: #ffcdd2;
    font-size: 13px;
    margin-top: 4px;
}

.form-style1 .form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-style1 .form-group .input-icon {
    position: absolute;
    right: 15px;
    top: 24px;
    transform: translateY(-50%);
    color: var(--main-theme-red);
}

.form-style1 .textarea-input-group .input-icon {
    top: 28px !important;
}

.form-style1 .form-control-custom {
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    color: var(--main-theme-red);
    border-radius: 0px;
    background: transparent;
    border: 2px solid;
    border-color: var(--main-theme-red);
    box-shadow: none;
}

.form-style1 .form-control-custom::placeholder {
    color: var(--main-theme-red);
    opacity: 1; /* important for Firefox */
}

/* Cross-browser support */
.form-style1 .form-control-custom::-webkit-input-placeholder {
    color: var(--main-theme-red);
}

.form-style1 .form-control-custom:-ms-input-placeholder {
    color: var(--main-theme-red);
}

.form-style1 .form-control-custom:focus {
    border-color: var(--theme-orange);
}

.form-style1 .name-input {
    border-radius: 30px 0 0 0;
}

.form-style1 .mail-input {
    border-radius: 0 30px 0 0;
}

.form-style1 .textarea-input {
    border-radius: 0 0 30px 30px;
}



.home-banner .banner-inner{
	position: relative;
	border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
}

.home-banner .banner-inner .home-banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0a3041;
    opacity: 0.6;
    z-index: 1;
}

.home-banner .banner-inner .aspect-custom {
    padding-bottom: 42.1%;

}

.home-banner .banner-inner .banner-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 20px;
    height: 100%;
    z-index: 3;
    align-content: center;
    text-align: center;
}

.home-banner .banner-inner .banner-content h1 {
    font-weight: 600;
    color: #fff;
    margin: 0;
    margin-bottom: 25px;
}

.home-banner .banner-inner .banner-content p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 991.98px) {
	.home-banner .banner-inner .banner-content p {
       font-size: 16px;
    }
}

@media  screen and (max-width: 767px) {
	 .home-banner .banner-inner .aspect-custom {
       padding-bottom: 90%;
    }

}

/* Portfolio */

.portfolio-images .image-box .aspect-custom {
    padding-bottom: 99.6%;
    overflow: hidden;
}

.portfolio-images .image-box .project-name {
    position: absolute;
    bottom: -100%;
    left: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    background: #0e294a94;
    border-radius: 0 0 10px 10px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.portfolio-images .image-box:hover .project-name{
	bottom: 0%;
}

.portfolio-images .image-box .project-name h4 {
    pointer-events: none;
    color: transparent;
    background-image: linear-gradient(-90deg,#fff 0,#fff 25%,#fff 50%,currentColor 51%,currentColor 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: left;
    transition: background-position .4s ease;
    display: inline-block;
    margin-bottom: 0px;
}

 .portfolio-images .image-box:hover .project-name h4 {
    background-position: right;
}

.portfolio-images .image-box {
    border: 1px solid #eee;
    display: inherit;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
    position: relative;
}

.portfolio-images .image-box .aspect-custom img {
        transform: scale(1);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.portfolio-images .image-box:hover .aspect-custom img {
    filter: grayscale(90%);
    -webkit-filter: grayscale(90%);
  transform: scale(1.03);
}

@media  screen and (max-width: 991px) {
	.portfolio-images .image-box {
		margin-top: 0.35rem;
	}

	.portfolio-images .image-box .project-name h4 {
    font-size: 1rem;
   }

   .portfolio-images .image-box .project-name {
    padding: 10px 20px;
}
}

@media  screen and (max-width: 767px) {
	.portfolio-images .image-box .project-name {
		padding: 10px 10px;
	}

	.portfolio-images .image-box .project-name h4 {
		font-size: 0.7rem;
	}
}

.portfolio-video .video-wrap {
    position: relative;
    overflow: hidden;
    /* border-radius: 8px;
    margin-top: 1.5rem;
    border: 1px solid #eee; */
}

.portfolio-video .video-wrap .portfolio-video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

/* .portfolio-video-player {
	width: 100%;
	height: 60vh;
	max-height: 720px;
	min-height: 260px;
	object-fit: cover;
	display: block
} */

.portfolio-video .video-toggle.paused {
	background: rgba(255, 255, 255, 0.85)
}

.portfolio-video .video-toggle.paused:before {
	border-color: transparent
}

.site-footer .left-content .site-logo a{
	display: inline-block;
}

.site-footer .left-content .site-logo a img{
	max-width: 147px;
}

.site-footer .left-content p {
    margin-top: 30px;
    margin-bottom: 0px;
	color: var(--ballet-blue);
}

.site-footer .footer-links h3 {
    color: #fff;
    padding-bottom: 30px;
}

.site-footer .footer-links .footer-toggle {
	display:flex;justify-content:space-between;
	align-items:center;
}

.site-footer .footer-links .footer-toggle .toggle-icon {
	transition:transform .28s ease;
	display:inline-block;
	margin-left:8px;
	font-size:0.9em;
	line-height:1;
}

.site-footer .footer-links .footer-toggle[aria-expanded="true"] .toggle-icon{
	transform:rotate(180deg);
}

.site-footer .footer-links ul li + li {
    margin-top: 20px;
}

.site-footer .footer-links ul li a{
	color: var(--ballet-blue);
}

.site-footer .footer-links ul li a:hover{
	color: var(--theme-orange);
}

.site-footer .footer-links ul li a:hover span svg {
    fill: var(--theme-orange);
}

.site-footer .footer-links ul li a span svg {
    width: 8px;
    height: auto;
    fill: var(--ballet-blue);
    font-weight: 700;
    position: relative;
    top: -1px;
    margin-right: 2px;
    transition: all 0.3s ease-in-out;
}

.site-footer .pages-links {
	display: block;
    margin: auto;
    width: max-content;
}

.site-footer .copyright-text {
    margin-top: 50px;
}

.site-footer .copyright-text p {
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    color: var(--ballet-blue);
}

@media screen and (max-width: 991.98px) {
	.site-footer .pages-links {
    margin-left: 0;
    width: max-content;
    margin-top: 30px;
}
.site-footer .footer-links h3 {
    padding-bottom: 12px;
}
.site-footer .copyright-text {
    margin-top: 30px;
}
}

@media  screen and (max-width: 767px) {
	.site-footer .left-content p {
    margin-top: 15px;
    text-align: center;
}
.site-footer .left-content .site-logo{
	text-align: center;
}

.site-footer{
	background-attachment: fixed;
}

}

@media (min-width: 579px){
	.site-footer .footer-links .footer-toggle .toggle-icon{
		display:none;
	}
}
@media (max-width: 578px){
	.site-footer .footer-links .footer-toggle{
		cursor:pointer;
	}
	.site-footer .footer-links h3 {
    padding-bottom: 0;
    margin-bottom: 0;
}
.site-footer .pages-links {
    margin-left: 0;
    width: 100%;
    margin-top: 13px;
    padding-top: 10px;
    border-top: 1px solid  var(--ballet-blue);
}
.site-footer .footer-links ul li + li {
    margin-top: 10px;
}
.site-footer .footer-links ul li:first-child{
	margin-top: 10px;
}
}

.portfolio-detail .left-image .border-design {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.portfolio-detail .left-image .aspect-custom {
    padding-bottom: 99.6%;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
}

.portfolio-detail .left-image .aspect-custom img {
    border-radius: 10px;
    border: 2px solid #ddd;
}

.portfolio-detail .project-detial .blue-line {
    width: 70px;
    height: 2px;
    background: var(--main-theme-red);
    display: inline-block;
    top: -6px;
    position: relative;
}

.portfolio-detail .project-detial .blue-line::before {
    position: absolute;
    right: 9px;
    top: -7px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    content: "";
}

.portfolio-detail .project-detial .list ul li {
    position: relative;
    border-radius: 8px;
    font-weight: 500;
    padding: 8px 0 8px 8px;
    margin-bottom: 8px;
    background: #f3f7f9;
    border: 1px solid #eee;
    display: flex;
    gap: 0.7rem;
}
.portfolio-detail .project-detial .list ul li span svg {
    width: 22px;
    height: auto;
    fill: var(--main-theme-red);
}

.portfolio-detail .text-box .text-content {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 0;
}

.portfolio-detail .text-box .text-content p:last-child{
	margin-bottom: 0;
}

.project-images .image-box {
    margin-top: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    border-bottom: 4px solid #0e294a;
}

.project-images .image-box .aspect-custom {
    padding-bottom: 65%;
}

@media  screen and (max-width: 767px) {
	.portfolio-detail .text-box .text-content {
    padding: 14px;
}
.project-images .image-box {
    margin-top: 10px;
}
}

.service-list .service-box .image-box {
    position: relative;
    padding-left: 7px;
    padding-top: 7px;
}

.service-list .service-box .image-box .aspect-custom {
    padding-bottom: 49%;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
}

.service-list .service-box .image-box .border-design {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.service-list .service-box .image-box .aspect-custom img {
    border-radius: 10px;
    border: 2px solid #ddd;
}

.service-list .service-box {
    height: calc(100% - 1.5rem);
    margin-top: 1.5rem;
}

.service-list .service-box .text-content {
    margin-top: 14px;
    padding: 10px;
    border-bottom: 2px solid #eee;
    border-left: 2px solid #eee;
    border-radius: 0px 0 0 30px;
}

.service-list .service-box .text-content p {
     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-list .service-box .text-content .blue-line {
    width: 70px;
    height: 2px;
    background: var(--main-theme-red);
    display: inline-block;
    top: -6px;
    position: relative;
}

.service-list .service-box .text-content .blue-line::before {
    position: absolute;
    right: 9px;
    top: -7px;
    width: 17px;
    height: 17px;
    border: 3px solid #fff;
    content: "";
}

.service-list .service-tabs {
    text-align: center;
}

.service-list .service-tabs .nav-tabs {
    position: relative;
    display: inline-flex;
    justify-content: center;
    border: none;
    padding: 6px;
    background: var(--main-theme-red);
    border-radius: 100px;
    gap: 0.6rem;
}

/* sliding background */
.service-list .service-tabs .tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #ccc;
    border-radius: 100px;
    transition: all 0.35s ease;
    z-index: 0;
}

/* buttons */
.service-list .service-tabs .nav-link {
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    transition: color 0.3s ease;
}

.service-list .service-tabs .nav-link:hover {
    color: var(--theme-orange);
}

.service-list .service-tabs .nav-link.active {
    color: var(--main-theme-red);
}

/* Mobile: make tabs horizontally scrollable and touch-friendly */
@media (max-width: 767.98px) {
	.service-list .service-tabs .nav-tabs {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 0rem;
		justify-content: flex-start;
	}

	.service-list .service-tabs .nav-tabs::-webkit-scrollbar { display: none; }
	.service-list .service-tabs .nav-tabs { scrollbar-width: none; -ms-overflow-style: none; }

	.service-list .service-tabs .nav-item { flex: 0 0 auto; }
	.service-list .service-tabs .nav-link {
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 14px;
}

	/* Keep indicator height reduced on small screens */
	.service-list .service-tabs .tab-indicator {
		transition: transform .28s ease, width .28s ease, left .28s ease;
	}
}

@media  screen and (max-width: 767px) {
.service-list .service-box .text-content h4 {
   font-size: 1.1rem;
}
}

.contact-us-form .contact-name {
    border-radius: 30px 0 0 0;
}

.contact-us-form .contact-phone {
    border-radius: 0 30px 0 0;
}

.contact-us-form .contact-message{
	 border-radius: 0 0 30px 30px;
}

.contact-us-form .g-recaptcha > div {
    cursor: pointer;
}

@media screen and (max-width: 991.98px) {
	.contact-us-form .contact-phone {
    border-radius: 0 0px 0 0;
}
.contact-us-form .contact-name {
    border-radius: 30px 30px 0 0;
}
}

@media  screen and (max-width: 767px) {
	.contact-us-form .g-recaptcha {
    display: flex;
    justify-content: center;
}
}

.contact-box .info-box .contact-icon {
    width: 80px;
    height: 80px;
    align-content: center;
    top: 0px;
    background: #ccc;
    color: var(--main-theme-red);
    border-radius: 50%;
    margin: auto;
    position: relative;
    transition: all 0.3s;
    z-index: 1;
}

.contact-box .info-box .contact-text {
    margin-top: 14px;
    z-index: 1;
    position: relative;
}

.contact-box .info-box .contact-text a ,
.contact-box .info-box .contact-text h4 {
    color: #fff;
}

.contact-box .info-box .contact-text a:hover{
	color: var(--theme-orange);
}

.contact-box .info-box .contact-text p {
    margin-bottom: 0;
}

.contact-box .info-box .contact-icon img {
	width: 40px;
	height: 40px;
}

.contact-box .info-box .contact-icon i {
	font-size: 34px;
}

@media  screen and (max-width: 767px) {
	.contact-box .info-box .contact-icon {
    width: 67px;
    height: 67px;
}
.contact-box .info-box .contact-icon i {
    font-size: 24px;
}
.contact-box .info-box .contact-text h4{
	font-size: 20px;
}
}

.about-us .image-box {
    position: relative;
    padding-left: 7px;
    padding-top: 7px;
}

.about-us .image-box .border-design {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

.about-us .image-box .aspect-1x1 {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
}

.about-us .image-box .aspect-1x1 img {
    border-radius: 10px;
    border: 2px solid #ddd;
}

.about-us .right-content{
    position: relative;
}




.about-us .right-content .site-title p {
    margin-left: 0 !important;
    max-width: 100% !important;
    margin-bottom: 0;
    font-size: 16px;
}

.about-us .right-content .icon-box .box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-us .right-content .icon-box .box .icon {
    display: inline-block;
    border: 2px solid #ccc;
    border-radius: 12px;
    height: 80px;
    min-width: 80px;
    text-align: center;
    align-content: center;
}

.about-us .right-content .icon-box .box .icon img {
    max-width: 50px;
}

.about-us .right-content .icon-box .box  h4 {
    margin-bottom: 0;
}

.about-us .right-content .text-content span{
    font-weight: 600;
}

.about-us .right-content .page-content {
    padding-top: 10px;
}

.about-us .right-content .page-content ul {
    column-count: 2;
}

.about-us .right-content .experience-box .box {
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    margin-top: 25px;
    height: calc(100% - 25px);
    background-image: linear-gradient(90deg, rgba(30, 85, 189, 1) 0%, #0e294a 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: all 0.4s ease, background-position 0.4s;
}

.about-us .right-content .experience-box .box .count.percent {
    font-size: 42px;
    font-weight: 700;
    -webkit-background-clip: text;
    margin-bottom: 0;
    display: block;
    color: #fff;
}

.about-us .right-content .experience-box .row .col-12:last-child .box .count.percent::after {
    content: "%" !important;
}

.about-us .right-content .experience-box .box .count.percent::after {
    content: "+";
    display: inline-block;
    margin-left: 6px;
}

.about-us .right-content .right-img img{
    border-radius: 10px;
    width: 100%;
}

@media  screen and (max-width: 767px) {
.about-us .right-content .action-btn {
    justify-content: center;
}
}


/* =====================================================
   ABOUT PAGE — PROFESSIONAL REDESIGN
   ===================================================== */

/* --- Gallery Mosaic --- */





.about-gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    position: relative;
}

.about-gallery-mosaic .img-item {
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
}

.about-gallery-mosaic .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}


.about-gallery-mosaic .img-item:hover img {
    transform: scale(1.05);
}

.about-gallery-mosaic .img-item.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 220px;
}

.about-gallery-mosaic .img-item.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 220px;
}

.about-gallery-mosaic .img-item.item-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 180px;
}

.about-gallery-mosaic .img-item.item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 180px;
}

.about-gallery-mosaic .img-item.item-5 {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    height: 200px;
}

/* --- Experience Badge --- */
.about-experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--gray-light);
    text-align: center;
    z-index: 2;
    line-height: 1.1;
}

.about-experience-badge h4 {
    font-size: 2.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: var(--gray-light);
}

.about-experience-badge small {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-top: 4px;
}


/* --- Video Section --- */
.about-video-section {
    background: var(--main-theme-black);
}

.about-video-section .video-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.about-video-section .video-caption {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 0;
}


/* --- Factory Stats (Dark) --- */
.about-stats-dark {
    background: var(--dark-gradient);
}

.about-stats-dark .stat-card {
    text-align: center;
    padding: 30px 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 8px;
    border-bottom: 5px solid var(--dark-gray);
}

.about-stats-dark .stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--main-theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-stats-dark .stat-icon i {
    font-size: 2rem;
    color: var(--main-theme-red);
}

.about-stats-dark .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.1;
}

.about-stats-dark .stat-suffix {
    font-size: 1.2rem;
    color: #ccc;
    margin-left: 4px;
}

.about-stats-dark .stat-title {
    text-transform: uppercase;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
    margin-top: 8px;
}


/* --- Yearly Capacity (Light) --- */
.about-stats-light {
    background: var(--gray-light);
}

.about-stats-light .stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    height: 100%;
}

.about-stats-light .stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.about-stats-light .stat-icon i {
    font-size: 1.6rem;
    color: var(--gray-light);
}

.about-stats-light .stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--main-theme-black);
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.1;
}

/* .about-stats-light .stat-suffix {
    font-size: 1rem;
    color: #666;
    margin-left: 3px;
} */

.about-stats-light .stat-title {
    text-transform: uppercase;
    font-size: 1rem;
    color: #555;
    margin: 1rem 0;
    font-weight: 700;
}

.about-stats-light .stat-title  .stat-suffix {
    font-size: 0.9rem;
    font-weight: 500;
}


/* --- Distinction / Legacy CTA --- */
.about-distinction {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-distinction .overlay {
    position: absolute;
    inset: 0;
    background: var(--main-theme-black);
    opacity: 0.85;
}

.about-distinction .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.about-distinction .distinction-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-distinction .content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--line-height);
}

.about-distinction .content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 10px;
    color: var(--line-height);
}


/* --- About Page Responsive --- */
@media screen and (max-width: 991.98px) {


    .about-video-section .video-wrapper {
        max-width: 100%;
    }



    .about-stats-dark .stat-number {
        font-size: 2.4rem;
    }

    .about-stats-light .stat-number {
        font-size: 2.2rem;
    }

    .about-distinction {
        background-attachment: scroll;
    }

    .about-distinction .content h2 {
        font-size: 1.8rem;
    }


.about-us .right-content br{
    display: none;
}
}

@media screen and (max-width: 767.98px) {
    .about-gallery-mosaic .img-item.item-1,
    .about-gallery-mosaic .img-item.item-2 {
        height: 160px;
    }

    .about-gallery-mosaic .img-item.item-3,
    .about-gallery-mosaic .img-item.item-4 {
        height: 140px;
    }

    .about-gallery-mosaic .img-item.item-5 {
        height: 160px;
    }

    .about-experience-badge {
        bottom: 14px;
        left: 14px;
    }

    .about-experience-badge h2 {
        font-size: 2rem;
    }



    .about-stats-dark .stat-card,
    .about-stats-light .stat-card {
        padding: 20px 10px;
    }

    .about-stats-dark .stat-icon {
        width: 60px;
        height: 60px;
    }

    .about-stats-dark .stat-icon i {
        font-size: 1.5rem;
    }

    .about-stats-dark .stat-number {
        font-size: 2rem;
    }

    .about-stats-light .stat-icon {
        width: 56px;
        height: 56px;
    }

    .about-stats-light .stat-number {
        font-size: 1.8rem;
    }


    .about-distinction .content h2 {
        font-size: 1.5rem;
    }

    .about-distinction .content p {
        font-size: 0.95rem;
    }

    .about-experience-badge h4 {
    font-size: 2rem;
}
}


.our-mission .left-img  .aspect-custom {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
    padding-bottom: 68%;
    z-index: 3;
}

.our-mission .left-img  .aspect-custom img {
    border-radius: 10px;
    border: 2px solid #ddd;
}

.our-mission .left-img .border-design {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    border: 2px solid #ff5e14ad;
    border-radius: 10px;
}

/* Tabs wrapper */
.our-mission .right-content .our-mission-tabs .nav-tabs {
    border-bottom: 1px solid #e5e5e5;
    gap: 30px;
}

.our-mission .right-content .our-mission-tabs .nav-tabs .nav-link {
    border: none;
    background: transparent;
    padding: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-theme-red);
    position: relative;
    font-family: var(--heading-font-family);
}

.our-mission .right-content .our-mission-tabs .nav-tabs .nav-link.active {
    color: var(--theme-orange); /* blue like image */
}

.our-mission .right-content .our-mission-tabs .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background-color: var(--theme-orange);
    border-radius: 2px;
}

.our-mission .right-content .our-mission-tabs .nav-tabs .nav-link:hover {
    color: var(--theme-orange);
}

.our-mission .right-content .our-mission-tabs .tab-content {
    padding-top: 18px;
}

.our-mission .right-content .our-mission-tabs .tab-pane h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.our-mission .right-content .our-mission-tabs .tab-pane p {
    line-height: 1.8;
    margin-bottom: 0;
}

/* .suggestions {
    position: absolute;
    background: #fff;
    min-width: 600px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    max-height: 500px;
    overflow-y: auto;
    top:66px;
    right: 12px;
    border-radius: 10px;
} */

/* ===== Search Offcanvas ===== */
.search-offcanvas {
    width: 520px !important;
}

.search-input-wrap {
    position: relative;
}

.search-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-input-wrap #search-box {
    padding-left: 40px;
    height: 48px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: border-color 0.2s, background 0.2s;
}

.search-input-wrap #search-box:focus {
    border-color: #D81324;
    background: #fff;
    box-shadow: none;
}

/* Results area */
.suggestions {
    position: relative;
    background: #fff;
    z-index: 1000;
    display: none;
    margin-top: 16px;
}

.search-loading,
.search-no-results {
    text-align: center;
    padding: 30px 15px;
    color: #888;
    font-size: 14px;
}

.search-loading i {
    margin-right: 6px;
}

/* Tabbed layout */
.search-results-container {
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    max-height: calc(100vh - 200px);
}

/* Left tabs */
.search-tabs {
    width: 160px;
    min-width: 160px;
    background: #f7f7f7;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #eee;
    transition: all 0.15s ease;
    position: relative;
}

.search-tab:last-child {
    border-bottom: none;
}

.search-tab:hover {
    background: #eee;
    color: #222;
}

.search-tab.active {
    background: #fff;
    color: #D81324;
}

.search-tab-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.search-tab-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-tab-count {
    background: #fff;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    border: 1px solid #D81324;
}

.search-tab.active .search-tab-count {
    background: #D81324;
    color: #fff;
}

/* Right content panels */
.search-tab-content {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.search-tab-panel {
    display: none;
}

.search-tab-panel.active {
    display: block;
}

/* Result items - shared */
.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #fafafa;
}

.result-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.4;
}

.result-item-title strong {
    color: #D81324;
}

.result-item-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    margin-top: 2px;
}

.result-item-location {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.result-item-location i {
    color: #D81324;
    margin-right: 4px;
    font-size: 11px;
}

/* Product items */
.search-product-item {
    display: flex;
    gap: 12px;
}

.search-product-item .product-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-product-item .product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 20px;
}

.search-product-item .product-info {
    flex: 1;
    min-width: 0;
}

.search-product-item .product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-theme-red);
    margin-bottom: 3px;
}

.search-product-item .product-title strong {
    color: #D81324;
}

.search-product-item .product-desc {
    font-size: 12px;
    color: #777;
    margin-bottom: 3px;
    line-height: 1.3;
}

.search-product-item .product-meta {
    font-size: 11px;
    color: #999;
}

.search-product-item .product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-theme-black);
    margin-top: 4px;
}

/* Distributor items */
.search-distributor-item {
    display: flex;
    gap: 12px;
}

.search-distributor-item .distributor-thumb {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 18px;
}

.search-distributor-item .distributor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-distributor-item .distributor-info {
    flex: 1;
    min-width: 0;
}

/* Mobile responsive */
@media (max-width: 575px) {
    .search-offcanvas {
        width: 100% !important;
    }

    .search-results-container {
        flex-direction: column;
        max-height: calc(100vh - 180px);
    }

    .search-tabs {
        width: 100%;
        min-width: 100%;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        -webkit-overflow-scrolling: touch;
    }

    .search-tab {
        flex-direction: column;
        gap: 2px;
        padding: 10px 14px;
        border-bottom: none;
        border-right: 1px solid #eee;
        white-space: nowrap;
        min-width: fit-content;
    }

    .search-tab:last-child {
        border-right: none;
    }

    .search-tab.active {
        border-right-color: #eee;
    }

    .search-tab-label {
        font-size: 11px;
    }

    .search-tab-content {
        max-height: calc(100vh - 320px);
    }
}

/* ===== NAVBAR DROPDOWN - BLACK WITH RED HOVER ===== */




/* ================= Product Cards ================= */
.feature-item {
    background-color: #000000; /* black background */
    color: #ffffff; /* text color */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e60000; /* ASIMCO red on hover */
    color: #ffffff;
}

.feature-item h4 {
    margin-top: 15px;
    font-size: 18px;
}

.feature-item img {
    background-color: #ffffff; /* optional white circle behind image */
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.05); /* slight zoom effect */
}

/* Align text columns */
.test-table tbody td:nth-child(2),

/* Dark overlay */

/* Content */

.hero-content .description {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
}


.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0b2b5b;
    margin-bottom: 15px;
}

/* GRID */

/* ITEM */

/* RESPONSIVE */


/* ==========================================
   HOME PAGE DISTRIBUTORS MAP
   ========================================== */
.home-map-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.home-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 30px 30px;
    pointer-events: none;
}

.home-map-content .btn-danger {
    background-color: #c4161c;
    border-color: #c4161c;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.home-map-content .btn-danger:hover {
    background-color: #a01218;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 22, 28, 0.4);
}

.home-map-content .map-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.home-map-content .stat-item {
    text-align: center;
}

.home-map-content .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #c4161c;
    line-height: 1;
}

.home-map-content .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-map-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#homeDistributorMap {
    width: 100%;
    height: 500px;
    background: #1a1a2e;
    border-radius: 15px;
}

#homeDistributorMap .leaflet-control-attribution {
    display: none;
}

.home-map-container .map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    z-index: 1000;
}

.home-map-container .map-loading.hidden {
    display: none;
}

/* Dark map tiles overlay */
#homeDistributorMap .leaflet-tile-pane {
    filter: saturate(0.3) brightness(0.7);
}

/* Custom markers for home map */

/* Responsive */
@media (max-width: 991px) {

    .home-map-content .map-stats {
        justify-content: center;
    }

    #homeDistributorMap {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .home-map-section {
        padding: 40px 0;
    }

    .home-map-content .stat-number {
        font-size: 32px;
    }

    #homeDistributorMap {
        height: 300px;
    }
}

/* ============================================== */
/* CERTIFICATES SECTION STYLES (OWL CAROUSEL) */
/* ============================================== */


/* Owl Carousel Container */
.certificates-carousel {
    padding: 10px 0 20px;
}

.certificates-carousel .owl-stage-outer {
    padding: 10px 0;
}

.certificates-carousel .owl-item {
    padding: 5px;
}

/* Certificate Card */
.certificate-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 380px;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

a.certificate-card:hover {
    text-decoration: none;
    color: inherit;
}

/* Certificate Image */
.certificate-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.05);
}

/* Placeholder when no image */
.certificate-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c4161c 0%, #8b0f12 100%);
    color: #fff;
}

.certificate-placeholder i {
    font-size: 60px;
    opacity: 0.8;
}

/* Category Badge */
.certificate-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(196, 22, 28, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certificate Content */
.certificate-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Issuer Logo */
.certificate-issuer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.certificate-issuer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Certificate Title */
.certificate-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Certificate Description */
.certificate-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Certificate Meta */
.certificate-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-top: auto;
}

.certificate-meta i {
    color: #c4161c;
    margin-right: 6px;
    width: 14px;
}

.certificate-date,
.certificate-issuer {
    display: flex;
    align-items: center;
}

/* Link Indicator */
.certificate-link-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c4161c;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-link-indicator {
    opacity: 1;
    transform: translateX(0);
}

/* Owl Carousel Navigation */
.certificates-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    left: 0;
}

.certificates-carousel .owl-nav button {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #1a1a2e !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
}

.certificates-carousel .owl-nav button:hover {
    background: #c4161c !important;
    color: #fff !important;
}

.certificates-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
}

/* Owl Carousel Dots */
.certificates-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.certificates-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.certificates-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.certificates-carousel .owl-dots .owl-dot.active span {
    background: #c4161c;
    width: 24px;
    border-radius: 5px;
}


.home-map-header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.home-map-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.home-map-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.home-map-layout {
    display: flex;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: #fff;
}

.home-map-container-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

.home-map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #333;
}

.home-map-loading.hidden {
    display: none;
}

.home-map-sidebar {
    width: 320px;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.home-sidebar-header {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-sidebar-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.home-sidebar-header .badge {
    background: #c4161c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.home-sidebar-breadcrumb {
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.home-sidebar-breadcrumb a {
    color: #666;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f0f0f0;
    transition: all 0.2s;
}

.home-sidebar-breadcrumb a:hover,
.home-sidebar-breadcrumb a.active {
    color: #fff;
    background: #c4161c;
}

.home-sidebar-breadcrumb .separator {
    color: #999;
    font-size: 10px;
}

.home-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.home-list-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #999;
    padding: 20px;
}

.home-list-placeholder i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.home-distributor-item {
    display: flex;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
    border: 1px solid #eee;
}

.home-distributor-item:hover {
    background: #f8f9fa;
    border-color: #c4161c;
}

.home-distributor-item .item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.home-distributor-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-distributor-item .item-image .no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.home-distributor-item .item-info {
    flex: 1;
    min-width: 0;
}

.home-distributor-item .item-info h6 {
    margin: 0 0 5px 0;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.home-distributor-item .item-info p {
    margin: 0;
    font-size: 11px;
    color: #666;
}

.home-distributor-item .item-info p i {
    color: #c4161c;
    margin-right: 5px;
    width: 12px;
}

.home-sidebar-footer {
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.home-sidebar-footer .btn {
    border-color: #c4161c;
    color: #c4161c;
}

.home-sidebar-footer .btn:hover {
    background: #c4161c;
    color: #fff;
}

.home-map-stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.home-stat-item {
    text-align: center;
    color: #fff;
}

.home-stat-item .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c4161c;
    line-height: 1;
}

.home-stat-item .stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Marker Styles */
.marker-cluster-custom {
    background: #c4161c !important;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.marker-cluster-custom .marker-count {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    width: 100%;
    height: 100%;
    line-height: 38px;
}

/* Home Map Section Responsive */
@media (max-width: 991px) {
    .home-map-layout {
        flex-direction: column;
        height: auto;
    }

    .home-map-container-wrapper {
        height: 350px;
    }

    .home-map-sidebar {
        width: 100%;
        height: 300px;
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }

    .home-map-stats-bar {
        gap: 30px;
    }

    .home-stat-item .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .home-map-section {
        padding: 40px 0;
    }

    .home-map-header h2 {
        font-size: 26px;
    }

    .home-map-container-wrapper {
        height: 280px;
    }

    .home-map-sidebar {
        height: 250px;
    }

    .home-map-stats-bar {
        gap: 20px;
        flex-wrap: wrap;
    }

    .home-stat-item .stat-number {
        font-size: 24px;
    }
}

/* ============================================== */
/* TESTIMONIALS SECTION */
/* ============================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.testimonials-section .heading {
    margin-bottom: 50px;
}

.testimonials-section .heading h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials-section .heading h3 {
    color: #666;
    font-size: 18px;
    font-weight: 400;
}

/* Testimonial Card */
.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #e60000;
    opacity: 0.15;
    font-size: 48px;
}

/* Text Content */
.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

/* Video Testimonial */
.testimonial-video {
    flex: 1;
    margin-bottom: 20px;
}

.video-thumbnail-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail-wrapper .video-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-thumbnail-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-thumbnail-wrapper:hover .play-button {
    background: #e60000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-author .author-info {
    flex: 1;
}

.testimonial-author .author-name {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 3px 0;
}

.testimonial-author .author-designation {
    font-size: 14px;
    color: #888;
}

/* Date */
.testimonial-date {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.testimonial-date i {
    margin-right: 5px;
    color: #e60000;
}

/* Owl Carousel Dots for Testimonials */
.testimonials-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonials-carousel .owl-dot:hover {
    background: #bbb;
}

.testimonials-carousel .owl-dot.active {
    background: #e60000;
    transform: scale(1.2);
}

/* Video Modal */
.testimonial-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.testimonial-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-video-modal .modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
}

.testimonial-video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.testimonial-video-modal .close-modal:hover {
    color: #e60000;
}

.testimonial-video-modal .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-video-modal .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .heading h2 {
        font-size: 30px;
    }

    .testimonial-card {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .heading h2 {
        font-size: 26px;
    }

    .testimonials-section .heading h3 {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 25px;
        min-height: 240px;
    }

    .testimonial-quote {
        font-size: 36px;
    }

    .testimonial-content p {
        font-size: 15px;
    }
}








.main-wrapper {
            background-color: #f5f5f5;
            border-radius: 6px;
            padding: 50px 40px;
            margin-top: 30px;
        }

        .page-title {
            text-align: center;
            font-weight: 800;
            font-size: 38px;
            letter-spacing: 2px;
            color: #0b245b;
            margin-bottom: 25px;
        }

        .security-label {
            text-align: center;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .security-input {
            height: 48px;
            font-size: 16px;
            border-radius: 2px;
        }

        .query-btn {
            height: 48px;
            padding: 0 30px;
            background-color: #d60b1c;
            border: none;
            color: #fff;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .query-btn:hover {
            background-color: #b80917;
        }

        .tips-title {
            font-weight: 700;
            margin-bottom: 10px;
            color: #666;
	    text-align: left;
        }

        .tips-list {
            padding-left: 0;
            list-style: none;
        }

        .tips-list li {
            margin-bottom: 10px;
            color: #444;
            position: relative;
            padding-left: 20px;
	    text-align: left !important;
        }

        .tips-list li::before {
            content: "●";
            color: #d60b1c;
            position: absolute;
            left: 0;
            top: 0;
        }

        .label-image {
            max-width: 220px;
            display: block;
            margin: 0 auto;
        }

.form-input {
    position: relative;
}

.fw-error-msg {
    position: absolute;
    bottom: -30px;
    font-size: 0.9rem;
}

.fw-error-msg span,
.fw-error-msg .alert {
    max-width: 665px;
    width: 100%;
}

/* Anti-Counterfeit Loader Overlay */
.loading-cntant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader_asimco {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid #d60b1c;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-cntant .loading-text {
    display: block;
    margin-top: 15px;
    font-size: 1.3em;
    color: #EF3239;
    font-weight: bold;
}

/* ===== Anti-Counterfeit Offcanvas ===== */
#anti-counterfeit-offcanvas .offcanvas-body {
    position: relative;
    padding: 24px;
}

.ac-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.ac-loader-overlay .loading-text {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #c4161c;
    font-weight: 600;
}

.ac-form-section {
    text-align: center;
    margin-bottom: 24px;
}

.ac-label-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4161c, #e53935);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ac-label-icon i {
    font-size: 24px;
    color: #fff;
}

.ac-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ac-section-desc {
    font-size: 13px;
    color: #777 !important;
    line-height: 1.5;
    margin-bottom: 16px;
}

.ac-input-wrap {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
}

.ac-code-input {
    flex: 1;
    height: 48px;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 8px 0 0 8px !important;
    border: 2px solid #ddd;
    border-right: none;
    padding: 0 14px;
    font-weight: 500;
    transition: border-color 0.2s;
}

.ac-code-input:focus {
    border-color: #c4161c;
    box-shadow: none;
    outline: none;
}

.ac-query-btn {
    height: 48px;
    padding: 0 24px;
    background: #c4161c;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.ac-query-btn:hover {
    background: #a01218;
}

.ac-query-btn i {
    margin-right: 4px;
}

.ac-result-area {
    min-height: 10px;
    text-align: left;
}

.ac-result-area .alert {
    margin-top: 12px;
    font-size: 14px;
    border-radius: 8px;
    max-width: 100%;
}

/* Tips */
.ac-tips-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.ac-tips-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.ac-tips-title i {
    color: #c4161c;
    margin-right: 4px;
}

.ac-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac-tips-list li {
    position: relative;
    padding: 5px 0 5px 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.ac-tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4161c;
    opacity: 0.6;
}

/* Label preview */
.ac-label-preview {
    text-align: center;
    margin-bottom: 20px;
}

.ac-label-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 1px solid #eee;
    object-fit: contain;
}

/* Full page link */
.ac-full-link {
    text-align: center;
    padding-top: 4px;
}

.ac-full-link a {
    font-size: 13px;
    color: #c4161c;
    text-decoration: underline;
    font-weight: 500;
}

.ac-full-link a:hover {
    color: #333;
}

.ac-full-link a i {
    font-size: 11px;
    margin-left: 3px;
}

/* ===== Catalogue Download Offcanvas ===== */



.offcanvas-header {
    background: var(--main-theme-black);
    color: #fff;
    padding: 18px 24px;
}

.offcanvas-title{
    color: var(--gray-light);
}

.offcanvas-header .btn-close {
    filter: invert(1);
    box-shadow: none;
}

@media  screen and (max-width: 767px) {
    .offcanvas-title {
        font-size: 1.2rem !important;
    }
}


.cd-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.cd-loader-overlay .loading-text {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #c4161c;
    font-weight: 600;
}

.cd-form-section {
    text-align: center;
    margin-bottom: 24px;
}

.cd-label-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4161c, #e53935);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.cd-label-icon i {
    font-size: 24px;
    color: #fff;
}

.cd-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cd-section-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
}

.cd-field-group {
    margin-bottom: 16px;
}

.cd-field-label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.cd-required {
    color: #dc3545;
}

.cd-input {
    height: 44px;
    font-size: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 14px;
    transition: border-color 0.2s;
}

.cd-input:focus {
    border-color: #c4161c;
    box-shadow: none;
}
.cd-input.is-invalid {
    border-color: #dc3545;
}
.cd-field-group:has(.is-invalid) > .invalid-feedback,
.cd-phone-wrapper ~ .invalid-feedback {
    display: block;
}

textarea.cd-input {
    height: auto;
    padding: 10px 14px;
}

/* Select2 inside offcanvas */
.offcanvas .select2-container {
    width: 100% !important;
}
.offcanvas .select2-container .select2-selection--single {
    height: 44px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.offcanvas .select2-container .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}
.offcanvas .select2-container--open .select2-selection--single {
    border-color: #ccc;
}
.select2-container--open .select2-dropdown {
    z-index: 99999;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 0px;
}
.select2-results__option {
    font-size: 14px;
    padding: 8px 12px;
}

/* Phone prefix wrapper */
.cd-phone-wrapper {
    display: flex;
    align-items: stretch;
}
.cd-phone-wrapper .select2-container {
    width: 110px !important;
    min-width: 110px;
    flex-shrink: 0;
}
.cd-phone-wrapper .select2-container .select2-selection--single {
    height: 44px;
    border: 2px solid #eee;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 6px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}   
.cd-phone-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
    color: #333;
    line-height: 40px;
}
.cd-phone-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
    height: 42px;
}
.cd-phone-prefix {
    display: none;
}
.cd-phone-input {
    border-radius: 0 8px 8px 0 !important;
    flex: 1;
    min-width: 0;
}
.cd-submit-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.15s;
    margin-top: 4px;
}

.cd-submit-btn:hover {
    opacity: 0.9;
}

.cd-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cd-result-area {
    min-height: 10px;
    text-align: left;
}

.cd-result-area .alert {
    margin-top: 12px;
    font-size: 14px;
    border-radius: 8px;
}

/* Tips */
.cd-tips-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 24px;
    margin-bottom: 20px;
}

.cd-tips-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.cd-tips-title i {
    color: #c4161c;
    margin-right: 4px;
}

.cd-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cd-tips-list li {
    position: relative;
    padding: 5px 0 5px 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.cd-tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4161c;
    opacity: 0.6;
}

/* Full page link */
.cd-full-link {
    text-align: center;
    padding-top: 4px;
}

.cd-full-link a {
    font-size: 13px;
    color: #c4161c;
    text-decoration: underline;
    font-weight: 500;
}

.cd-full-link a:hover {
    color: #333;
}

.cd-full-link a i {
    font-size: 11px;
    margin-left: 3px;
}

/* ===== Catalogue Flipbook Modal ===== */
.catalogue-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    flex-direction: column;
}
.catalogue-modal.active {
    display: flex;
}
.catalogue-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #111;
    border-bottom: 2px solid #E31E24;
    flex-shrink: 0;
}
.catalogue-modal-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
}
.catalogue-modal-title .catalogue-page-counter {
    margin-left: 15px;
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}
.catalogue-modal-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.catalogue-modal-controls button,
.catalogue-modal-controls .catalogue-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.catalogue-modal-controls button:hover,
.catalogue-modal-controls .catalogue-btn:hover {
    background: #E31E24;
    border-color: #E31E24;
}

/* Catalogue Search */
.catalogue-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 10px;
}
.catalogue-search-input-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.catalogue-search-icon {
    position: absolute;
    left: 10px;
    color: #777;
    font-size: 13px;
    pointer-events: none;
}
.catalogue-search-input {
    width: 180px;
    height: 34px;
    padding: 0 28px 0 30px;
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-family: "Work Sans", sans-serif;
    outline: none;
}
.catalogue-search-input::placeholder { color: #777; }
.catalogue-search-input:focus { border-color: #E31E24; }
.catalogue-search-clear {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 11px;
    padding: 0;
}
.catalogue-search-clear:hover { color: #fff; }
.catalogue-search-results {
    color: #aaa;
    font-size: 12px;
    white-space: nowrap;
}
.catalogue-search-nav {
    width: 28px;
    height: 28px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 0;
}
.catalogue-search-nav:hover:not(:disabled) {
    background: #E31E24;
    border-color: #E31E24;
}
.catalogue-search-nav:disabled {
    opacity: 0.4;
    cursor: default;
}
.catalogue-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Desktop Flipbook */
.catalogue-flipbook-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
#catalogueFlipbook {
    margin: 0 auto;
    transition: transform 0.3s ease;
}
#catalogueFlipbook .catalogue-page {
    background: #fff;
    overflow: hidden;
}
.catalogue-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 64px;
    background: rgba(227, 30, 36, 0.85);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.catalogue-nav-btn:hover {
    background: #E31E24;
}
.catalogue-prev {
    left: 15px;
}
.catalogue-next {
    right: 15px;
}

/* Page loading spinner */
.catalogue-page-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.catalogue-page-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #eee;
    border-top: 3px solid #E31E24;
    border-radius: 50%;
    animation: catalogueSpin 0.7s linear infinite;
}

/* Mobile Viewer */
.catalogue-mobile-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.catalogue-mobile-canvas-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    width: 100%;
}
.catalogue-mobile-canvas-wrap canvas {
    max-width: 100%;
    height: auto;
    transition: max-width 0.2s ease;
}
.catalogue-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    flex-shrink: 0;
}
.catalogue-mobile-btn {
    padding: 8px 18px;
    background: #E31E24;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.catalogue-mobile-btn:hover {
    background: #c4181d;
}
#catalogueMobileCounter {
    color: #fff;
    font-size: 14px;
}

/* Loading Overlay */
.catalogue-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.catalogue-loading-inner {
    text-align: center;
}
.catalogue-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #E31E24;
    border-radius: 50%;
    animation: catalogueSpin 0.8s linear infinite;
    margin: 0 auto 15px;
}
@keyframes catalogueSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.catalogue-loading-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}
.catalogue-progress-bar {
    width: 220px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 8px;
    overflow: hidden;
}
.catalogue-progress-fill {
    height: 100%;
    width: 0;
    background: #E31E24;
    border-radius: 3px;
    transition: width 0.3s;
}
.catalogue-progress-text {
    color: #aaa;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .catalogue-modal-header {
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    .catalogue-modal-title span:first-child {
        font-size: 13px;
    }
    .catalogue-modal-title .catalogue-page-counter {
        display: block;
        margin-left: 0;
        font-size: 11px;
    }
    .catalogue-modal-controls button,
    .catalogue-modal-controls .catalogue-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .catalogue-search {
        order: 3;
        width: 100%;
        margin: 6px 0 0 0;
    }
    .catalogue-search-input {
        flex: 1;
        width: auto;
    }
    .catalogue-flipbook-wrapper {
        display: none;
    }
    .catalogue-mobile-wrapper {
        display: flex;
    }
}

.navbar-collapse {
    display: flex;
    align-items: center;
}




/* ══════════════════════════════════════════════════════
   FIND PARTS - TecDoc Integration Styles
   ══════════════════════════════════════════════════════ */

.find-parts-section {
    background: #f8f9fa;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Tabs */
.fp-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 0;
}

.fp-tabs .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    padding: 12px 28px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.2s;
}

.fp-tabs .nav-link:hover {
    color: #c4161c;
    border-bottom-color: #c4161c;
}

.fp-tabs .nav-link.active {
    color: #c4161c;
    border-bottom-color: #c4161c;
    background: transparent;
}

.fp-tabs .nav-link i {
    margin-right: 6px;
}


.fp-adv-search-form .action-button i {
    font-size: 14px;
    margin: 0 3px;
}

@media  screen and (max-width: 1366px) {
.fp-adv-search-form .action-button i {
    font-size: 11px;
    margin: 0 3px;
}
}

.form-select:focus,
.form-control:focus {
    border-color:#ccc;
    outline: 0;
    box-shadow: none;
}

.find-parts-section .fp-adv-search-form {
    padding: 20px 25px;
}

.find-parts-section .fp-adv-search-form .form-label {
    font-weight: 600 !important;
    font-size:1rem
}











@media  screen and (max-width: 767px) {
.find-parts-section .fp-adv-search-form {
    padding: 15px 15px;
}

.find-parts-section .fp-adv-search-form .mb-3 {
    margin-bottom: 0.9rem !important;
    gap: 0.7rem;
}





}

.fp-tab-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* Vehicle Type Bar */
.fp-vehicle-type-bar {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.btn-vehicle-type {
    padding: 8px 24px;
    font-weight: 600;
    border: 2px solid #ddd;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.btn-vehicle-type:hover {
    border-color: #c4161c;
    color: #c4161c;
}

.btn-vehicle-type.active {
    background: #c4161c;
    border-color: #c4161c;
    color: #fff;
}

.btn-vehicle-type i {
    margin-right: 5px;
}

.btn-vehicle-type-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-vehicle-type-link:hover {
    background: #c4161c;
    border-color: #c4161c;
    color: #fff;
}

/* Wizard Steps */
.fp-wizard-steps {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    gap: 8px;
    flex-wrap: wrap;
}

.fp-step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    background: #f5f5f5;
    transition: all 0.2s;
}

.fp-step.active {
    color: #000;
}

.fp-step.completed {
    background: #e8f5e9;
    color: #2e7d32;
    cursor: pointer;
}

.fp-step.completed:hover {
    background: #c8e6c9;
}

.fp-step-num {
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.3);
}

.fp-step.active .fp-step-num {
    background: rgba(255,255,255,0.3);
}

.fp-step.completed .fp-step-num {
    background: #2e7d32;
    color: #fff;
}

.fp-step-arrow {
    color: #ccc;
    font-size: 12px;
}

/* Panels */
.fp-panels {
    min-height: 350px;
}

.fp-panel {
    border-bottom: 1px solid #eee;
}

.fp-panel-header {
    padding: 12px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.fp-panel-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-filter-bar {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fp-filter-bar .form-select {
    min-width: 160px;
    font-size: 13px;
}

.fp-panel-body {
    padding: 0;
}

.fp-loading {
    padding: 30px;
    text-align: center;
    color: #888;
    font-size: 15px;
}

.fp-loading i {
    color: #c4161c;
    margin-right: 8px;
}

.fp-empty {
    padding: 30px;
    text-align: center;
    color: #999;
    font-size: 15px;
}

/* Manufacturer / Model Lists (legacy) */
.fp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-list li {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: all 0.15s;
}

.fp-list li:hover {
    background: #fff5f5;
    color: #c4161c;
}

.fp-list li.active {
    background: #c4161c;
    color: #fff;
}

.fp-list li small {
    font-size: 12px;
}

.fp-list li.active small {
    color: rgba(255,255,255,0.8);
}

/* =============================================
   Find Parts Page — Grid Card View
   ============================================= */

/* Search / Filter input inside panels */
.fpg-search-wrap {
    position: relative;
    padding: 14px 20px 0;
}

.fpg-search-input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.fpg-search-input:focus {
    border-color: #c4161c;
}

.fpg-search-input::placeholder {
    color: #aaa;
}

.fpg-search-icon {
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
    margin-top: 7px;
}

/* Brand Grid (Manufacturer cards) */
.fpg-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 16px 20px 20px;
}

.fpg-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 8px 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
    text-align: center;
    min-height: 110px;
}

.fpg-brand-card:hover {
    border-color: #ddd;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.fpg-brand-card.active {
    border-color: #c4161c;
    box-shadow: 0 0 0 2px rgba(196, 22, 28, 0.2);
}

.fpg-brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 8px;
}

.fpg-brand-initial {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #14151B;
    margin-bottom: 8px;
    font-family: var(--heading-font-family);
}

.fpg-brand-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Model Card Grid (brick layout) */
.fpg-model-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 16px 20px 20px;
}

.fpg-model-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
    min-height: 70px;
}

.fpg-model-card:hover {
    border-color: #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.fpg-model-card.active {
    border-color: #c4161c;
    background: var(--main-theme-red);
    color: #fff;
}

.fpg-model-card.active .fpg-model-name {
    color: #fff;
}

.fpg-model-card.active .fpg-model-years {
    color: rgba(255, 255, 255, 0.8);
}

.fpg-model-name {
    font-size: 13px;
    font-weight: 600;
    color: #14151B;
    line-height: 1.3;
    word-break: break-word;
}

.fpg-model-years {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
    white-space: nowrap;
}

/* Empty state for grid view */
.fpg-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 15px;
    grid-column: 1 / -1;
}

.fpg-empty i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    color: #ccc;
}

/* Responsive — Grid Cards */
@media (max-width: 1200px) {
    .fpg-brand-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .fpg-model-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .fpg-brand-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 14px 16px 16px;
    }

    .fpg-model-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .fpg-brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 14px 14px;
    }

    .fpg-brand-card {
        padding: 12px 6px 10px;
        min-height: 90px;
    }

    .fpg-brand-logo,
    .fpg-brand-initial {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .fpg-brand-name {
        font-size: 11px;
    }

    .fpg-model-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 14px 14px;
    }

    .fpg-model-card {
        padding: 10px 6px;
        min-height: 60px;
    }

    .fpg-model-name {
        font-size: 11px;
    }

    .fpg-model-years {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .fpg-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Back button */
.fp-back {
    color: #c4161c;
    text-decoration: none;
    font-size: 16px;
}

.fp-back:hover {
    color: #8b0f13;
}

/* Vehicle Table */
.fp-vehicle-table {
    margin: 0;
    font-size: 13px;
}

.fp-vehicle-table thead th {
    background: #333;
    color: #fff;
    font-weight: 600;
    padding: 10px 12px;
    white-space: nowrap;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.fp-vehicle-table tbody tr {
    cursor: pointer;
    transition: background 0.15s;
}

.fp-vehicle-table tbody tr:hover {
    background: #fff5f5;
}

.fp-vehicle-table tbody tr.table-active {
    background: #fde8e8;
}

.fp-vehicle-table tbody td {
    padding: 8px 12px;
    vertical-align: middle;
}

/* Article Cards */
.fp-article-card {
    border: 1px solid #eee;
    border-radius: 6px;
    margin: 12px 16px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.fp-article-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.fp-article-card-main {
    display: flex;
    padding: 16px;
    gap: 16px;
    align-items: flex-start;
}

.fp-article-card-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #eee;
    overflow: hidden;
}

.fp-article-thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fp-article-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.fp-article-card-info {
    flex: 1;
    min-width: 0;
}

.fp-article-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.fp-article-number {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #c4161c;
}

.fp-article-status {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
}

.fp-status-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.fp-status-red {
    background: #ffebee;
    color: #c62828;
}

.fp-article-name {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.fp-found-via {
    display: inline-block;
    font-size: 12px;
    color: #888;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.fp-article-attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.fp-attr {
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.fp-article-card-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-article-card-actions .btn {
    font-size: 12px;
    white-space: nowrap;
}

/* ── Results Layout: Sidebar + Cards ───────────── */
.fp-results-layout {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* ── Filter Sidebar ───────────────────────────── */
.fp-filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #eee;
    position: sticky;
    top: 0;
    max-height: 80vh;
    overflow-y: auto;
}

.fp-filter-sidebar::-webkit-scrollbar {
    width: 4px;
}
.fp-filter-sidebar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.fp-filter-sidebar-header {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-filter-sidebar-header i {
    color: #c4161c;
}

.fp-filter-total {
    font-weight: 400;
    color: #888;
    font-size: 13px;
}

.fp-filter-sidebar-body {
    padding: 0;
}

/* Filter group (accordion) */
.fp-filter-group {
    border-bottom: 1px solid #f0f0f0;
}

.fp-filter-group-title {
    margin: 0;
    padding: 0;
}

.fp-filter-group-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}

.fp-filter-group-title a:hover {
    background: #fafafa;
    color: #c4161c;
}

.fp-filter-group-title a i {
    font-size: 11px;
    color: #aaa;
    transition: transform 0.2s;
}

.fp-filter-group.open .fp-filter-group-title a i {
    transform: rotate(180deg);
}

.fp-filter-group-body {
    padding: 0 16px 12px;
    max-height: 220px;
    overflow-y: auto;
}

.fp-filter-group-body::-webkit-scrollbar {
    width: 3px;
}
.fp-filter-group-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

/* Radio buttons */
.fp-radio {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    position: relative;
    margin: 0;
    line-height: 1.4;
}

.fp-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.fp-checkround {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all 0.15s;
    order: -1;
}

.fp-checkround::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}

.fp-radio input[type="radio"]:checked ~ .fp-checkround {
    border-color: #c4161c;
}

.fp-radio input[type="radio"]:checked ~ .fp-checkround::after {
    background: #c4161c;
}

.fp-radio:hover .fp-checkround {
    border-color: #c4161c;
}

.fp-radio-count {
    color: #999;
    font-size: 12px;
    margin-left: 2px;
}

/* Reset button */
.fp-filter-reset-wrap {
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

.fp-filter-reset-btn {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.15s;
}

.fp-filter-reset-btn:hover {
    border-color: #c4161c;
    color: #c4161c;
}

.fp-filter-reset-btn i {
    margin-right: 4px;
}

/* ── Results Main Area ────────────────────────── */
.fp-results-main {
    flex: 1;
    min-width: 0;
}

.fp-results-topbar {
    padding: 12px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.fp-results-count {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}

.fp-results-count i {
    color: #c4161c;
    margin-right: 4px;
}

.fp-results-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-results-sort {
    font-size: 13px !important;
    padding: 6px 30px 6px 10px !important;
    min-width: 150px;
    border-radius: 6px !important;
}

/* Mobile filter toggle */
.fp-filter-mobile-toggle {
    display: none;
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: center;
}

.fp-filter-mobile-toggle i {
    color: #c4161c;
    margin-right: 6px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
    .fp-results-layout {
        flex-direction: column;
    }

    .fp-filter-sidebar {
        width: 100%;
        max-height: none;
        position: static;
        border-right: none;
        border-bottom: 1px solid #eee;
        display: none;
    }

    .fp-filter-sidebar.mobile-open {
        display: block;
    }

    .fp-filter-mobile-toggle {
        display: block;
    }

    .fp-filter-group-body {
        max-height: 160px;
    }
}

@media (max-width: 575px) {
    .fp-results-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-results-sort {
        min-width: 0;
        width: 100%;
    }
}

/* Article Detail Panel */
.fp-article-detail-panel {
    border-top: 1px solid #eee;
    background: #fafafa;
    padding: 16px;
}

.fp-detail-nav {
    margin-bottom: 12px;
}

.fp-detail-nav .nav-link {
    font-size: 13px;
    padding: 6px 14px;
    color: #555;
}

.fp-detail-nav .nav-link.active {
    background: #c4161c;
    color: #fff;
}

.fp-detail-tab-content {
    min-height: 80px;
}

.fp-detail-tab-content .table {
    font-size: 13px;
}

/* Documents Grid */
.fp-documents-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fp-doc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    width: 120px;
}

.fp-doc-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 4px;
}

.fp-doc-item span {
    font-size: 11px;
    text-align: center;
}

/* Number Search Form */
.fp-number-search-form {
    padding: 24px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.fp-number-search-form .form-label {
    font-size: 14px;
    color: #333;
}

.fp-number-search-form .btn-danger {
    background: #c4161c;
    border-color: #c4161c;
}

.fp-number-search-form .btn-danger:hover {
    background: #a01218;
    border-color: #a01218;
}

/* Compare Table */
.fp-compare-table {
    font-size: 13px;
}

.fp-compare-table th {
    min-width: 150px;
    vertical-align: top;
}

.fp-compare-thumb {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* Image Popup Modal — Fullscreen */
#fpImageZoomModal .modal-dialog {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

#fpImageZoomModal .modal-content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

.fp-zoom-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    padding: 20px;
}

.fp-zoom-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.fp-zoomable {
    cursor: pointer;
    transition: opacity 0.2s;
}

.fp-zoomable:hover {
    opacity: 0.8;
}

/* Article Actions */
.fp-article-actions {
    display: flex;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .fp-tabs .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .fp-wizard-steps {
        padding: 10px 12px;
        gap: 4px;
    }

    .fp-step {
        font-size: 11px;
        padding: 4px 10px;
    }

    .fp-step-label {
        display: none;
    }

    .fp-step-arrow {
        font-size: 10px;
    }

    .fp-article-card-main {
        flex-direction: column;
        padding: 12px;
    }

    .fp-article-card-thumb {
        width: 60px;
        height: 60px;
    }

    .fp-article-card-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fp-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-filter-bar {
        width: 100%;
    }

    .fp-filter-bar .form-select {
        min-width: 0;
        flex: 1;
    }

    .fp-number-search-form {
        padding: 16px;
    }

    .fp-number-search-form .row > div {
        margin-bottom: 10px;
    }

.fp-vehicle-type-bar .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.4rem;
}

    .btn-vehicle-type {
        width: 100%;
    }
}












.home-video-banner {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-video-banner video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.main-slider .home-slider .aspect-custom {
    padding-bottom: 59%;
}

.main-slider .home-slider .slide-logo {
    max-width: 200px;
    margin-bottom: 8px;
}

.main-slider .home-slider  .swiper-button-next {
    right: 1rem;
}

.main-slider .home-slider  .swiper-button-prev {
    left: 1rem;
}

.main-slider .home-slider .swiper-slide .text-content {
    position: absolute;
    left: 50%;
    top: 0px;
    width: 93%;
    height: 100%;
    z-index: 1;
    align-content: center;
    text-align: center;
    transform: translateX(-50%);
}

.main-slider .home-slider .swiper-slide .text-content h1 {
    margin: 1.5rem 0;
}

.main-slider .home-slider .swiper-slide .text-content .first-slide-title{
    line-height: 1.2;
}

.main-slider .home-slider .swiper-slide .text-content .first-slide-title .small-text{
    font-size: 2rem;
}

.main-slider .home-slider .slider-action {
    position: absolute;
    bottom: 1rem;
    display: flex;
    justify-content: center;
    height: 50px;
    gap: 1rem;
    width: 100%;
}

.main-slider .feature-boxes-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-slider .feature-boxes-panel .feature-box {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 140px;
    text-align: left;
    gap: 1rem;
    margin-bottom: 1rem;
}

.main-slider .feature-boxes-panel .feature-box:last-child {
    margin-bottom: 0;
}

.main-slider .feature-boxes-panel .feature-box.feature-box-dark {
    background: linear-gradient(180deg, #14151B 0%, #000000 100%);
}

.main-slider .feature-boxes-panel .feature-box.feature-box-red {
    background: linear-gradient(180deg, #D81324 0%, #B80B1A 100%);
}

.main-slider .feature-boxes-panel .feature-box.feature-box-grey {
    background: linear-gradient(180deg, #B5B4B4 0%, #858585 100%);

}

.main-slider .feature-boxes-panel .feature-box .feature-box-content h3 {
    color: var(--theme-gray);
    font-size: 1.8rem;
}

.main-slider .feature-boxes-panel .feature-box .feature-box-content p {
    font-size: 1rem;
    color: var(--gray-light);
}

.main-slider .feature-boxes-panel .feature-box.feature-box-grey p,
.main-slider .feature-boxes-panel .feature-box.feature-box-red p{
    color: var(--gray-light);
}

.main-slider .feature-boxes-panel .feature-box-icon {
    flex: 1 0 20%;
    text-align: center;
}

.main-slider .feature-boxes-panel .feature-box-icon img{
    width: 130px;
    height: auto;
}

@media screen and (max-width: 1600px) {

.main-slider .feature-boxes-panel .feature-box .feature-box-content p {
    font-size: 0.9rem;
}
.main-slider .feature-boxes-panel .feature-box .feature-box-content h3 {
    font-size: 1.6rem;
}
}


@media screen and (max-width: 1536px) {
.main-slider .feature-boxes-panel .feature-box-icon {
    flex: 1 0 15%;
}
.main-slider .feature-boxes-panel .feature-box-icon img {
    width: 100px;
}
}






@media screen and (max-width: 1440px) {

    .main-slider .feature-boxes-panel .feature-box .feature-box-content p {
    font-size: 0.9rem;
}
.main-slider .feature-boxes-panel .feature-box .feature-box-content h3 {
    font-size: 1.5rem;
}

.main-slider .feature-boxes-panel .feature-box {
    padding: 1.3rem;
}
}

@media screen and (max-width: 1366px) {

    

    .main-slider .home-slider .swiper-slide .text-content .first-slide-title .small-text {
    font-size: 1.7rem;
}

    .main-slider .feature-boxes-panel .feature-box .feature-box-content h3 {
    font-size: 1.3rem;
}
.main-slider .feature-boxes-panel .feature-box .feature-box-content p {
    font-size: 0.8rem;
}
}
@media screen and (max-width: 1200px) {
.main-slider .home-slider .slide-logo {
    max-width: 160px;
}
}

@media screen and (max-width: 1024px) {
    .main-slider .feature-boxes-panel {
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 0.6rem;
}
.main-slider .feature-boxes-panel .feature-box .feature-box-content h3 {
    font-size: 1.3rem;
}

.main-slider .feature-boxes-panel .feature-box {
    padding: 1rem;
    margin-bottom: 0;
    position: relative;
}

}

@media screen and (max-width: 991.98px) {
    .main-slider .feature-boxes-panel .feature-box-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}
.main-slider .feature-boxes-panel .feature-box-icon img {
    width: 34px;
    height: auto;
}


.main-slider .home-slider .swiper-slide .text-content .first-slide-title .small-text {
    font-size: 1.3rem;
}

}

@media  screen and (max-width: 767px) {
    .main-slider .feature-boxes-panel {
    flex-direction: column;
}
.main-slider .feature-boxes-panel .feature-box {
    min-height: 160px;
}
.main-slider .feature-boxes-panel .feature-box-icon {
    right: 10px;
    top: auto;
    bottom: 10px;
}
.main-slider .home-slider .aspect-custom {
    padding-bottom: 100%;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    display: none;
}

.main-slider .home-slider .swiper-slide .text-content h1 {
    margin: 0.9rem 0;
}


.main-slider .swiper-pagination-style2 .swiper-pagination {
    bottom: -20px !important;
}

.main-slider .home-slider .swiper-slide .text-content .first-slide-title .small-text {
    font-size: 0.9rem;
}

.main-slider .home-slider .slide-logo {
    max-width: 100px;
}

.main-slider .home-slider .swiper-slide .text-content {
   width: 100%;
}

}

.md-offcanvas {
    width: 550px !important;
}

.offcanvas {
    z-index: 99999 !important;
}
.offcanvas-backdrop {
    z-index: 99998 !important;
    background-color: #000 !important;
    background: #22232BCC !important;
    backdrop-filter: blur(4px) !important;
    opacity: 1 !important;
}

/* Offcanvas Find Parts Search */
#search-now .offcanvas-header {
    background: var(--main-theme-black);
    color: #fff;
    padding: 18px 24px;
}

#search-now .offcanvas-header .offcanvas-title {
    font-family: var(--heading-font-family);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
}

#search-now .offcanvas-header .btn-close {
    filter: invert(1);
}

#search-now .offcanvas-body {
    padding: 24px;
    background: #f8f8f8;
}

.offcanvas-search-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field-group label {
    font-family: var(--heading-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--main-theme-black);
}

.search-field-group .form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.2s ease;
    height: auto;
}

.search-field-group .form-select:focus {
    border-color: var(--main-theme-red);
    box-shadow: 0 0 0 2px rgba(216, 19, 36, 0.15);
}

.search-field-group .form-select:disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
}

.offcanvas-search-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.offcanvas-search-actions .button {
    width: 100%;
    text-align: center;
    display: block;
}

.offcanvas-search-actions .button:disabled,
.offcanvas-search-actions .button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.advance-search-link {
    font-family: var(--heading-font-family);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--main-theme-red);
    text-decoration: underline;
    transition: color 0.2s;
}

.advance-search-link:hover {
    color: var(--main-theme-black);
}

.offcanvas-search-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 248, 248, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--main-theme-red);
}

.offcanvas-search-loader p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 575px) {
    .md-offcanvas {
        width: 100% !important;
    }
}

/* Footer Desing */

.site-footer-enhanced {
    background: #000;
}

.site-footer-enhanced .newsletter-section {
    background-color: var(--main-theme-red);
    padding: 30px 0;
}

.site-footer-enhanced .newsletter-section .newsletter-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer-enhanced .newsletter-section .newsletter-content .icon {
    min-width: 60px;
}

.site-footer-enhanced .newsletter-section .newsletter-content .text {
    text-align: left;
    color: #fff;
}

.site-footer-enhanced .newsletter-section .newsletter-content .text h3 {
    line-height: 1.2;
    color: #fff;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper{
    position: relative;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .newsletter-success {
    font-size: 0.9rem;
    text-align: left;
    margin-top: 6px;
    position: absolute;
    top: 100%;
    color: var(--theme-gray);
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .form-inner {
    display: flex;
    gap: 15px;
}


.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .form-inner .input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .form-inner .input-group .form-control {
    flex: 1;
    background: #fff;
    border: none;
    padding: 12px 30px;
    color: var(--main-theme-black);
    font-size: 1rem;
    height: 50px;
}

.site-footer-enhanced .footer-top {
    padding: 30px 0;
}

.site-footer-enhanced .footer-top .footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.site-footer-enhanced .footer-top .footer-brand .footer-logo  img {
    max-height: 70px;
    width: auto;
}

.site-footer-enhanced .footer-top .footer-brand .footer-about {
    color: var(--theme-gray);
    width: 90%;
}


.site-footer-enhanced .footer-top .footer-links .footer-title {
   color: var(--theme-gray);
    margin-bottom: 12px;
}
    

.site-footer-enhanced .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
}

.site-footer-enhanced .footer-top .footer-links ul li {
    margin-bottom: 12px;
}

.site-footer-enhanced .footer-top .footer-links ul li a {
    color: var(--theme-gray);
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    gap: 8px;
    transition: all 0.3s ease;
}

.site-footer-enhanced .footer-top .footer-links ul li a i {
    font-size: 5px;
    color: var(--theme-gray);
    transition: transform 0.3s ease;
    position: relative;
    top: 9px;
}

.site-footer-enhanced .footer-top .footer-links ul li a:hover {
    color: #fff;
}

.site-footer-enhanced .footer-top .footer-links ul li a:hover i {
    color: #f7ea03;
}

.site-footer-enhanced .middle-list {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #14151B;
}

.site-footer-enhanced .middle-list .copytext,
.site-footer-enhanced .middle-list li .link {
    color: var(--theme-gray);
}

.site-footer-enhanced .middle-list li .link span{
    display:inline-block;
    margin-right:5px
}

.site-footer-enhanced .middle-list li .link {
    color: var(--theme-gray);
}

.site-footer-enhanced .middle-list li .link:hover {
    color: #fff;
}

.site-footer-enhanced .middle-list .social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 20px;
}

.site-footer-enhanced .middle-list .social-icons a i{
    transition: color 0.3s ease;
    color: #ffffff;
}

.site-footer-enhanced .middle-list .social-icons a:hover i {
    color: var(--theme-gray);
}

.site-footer-enhanced .footer-bottom {
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
}

.site-footer-enhanced .footer-bottom .copyright p{
    color: var(--main-theme-black);
}


@media screen and (max-width: 991.98px) {
    .site-footer-enhanced .newsletter-section .newsletter-form-wrapper{
    margin-top: 30px;
}
.site-footer-enhanced .footer-top .footer-brand .footer-logo  img {
    max-height: 50px;
}
}

@media  screen and (max-width: 767px) {

.site-footer-enhanced .newsletter-section {
    padding: 15px 0;
}

    .site-footer-enhanced .newsletter-section .newsletter-content .icon {
    min-width: 44px;
}

.site-footer-enhanced .newsletter-section .newsletter-content .icon img {
    width: 44px;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper {
    margin-top: 15px;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .form-inner {
    gap: 0;
    background: #fff;
    border-radius: 50px;
}

.site-footer-enhanced .newsletter-section .newsletter-form-wrapper .form-inner .input-group .form-control {
    padding: 12px 13px;
    height: 44px;
}

.site-footer-enhanced .footer-top .footer-brand {
    text-align: center;
}

.site-footer-enhanced .middle-list {
    padding: 10px 0;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
}

.site-footer-enhanced .middle-list .social-icons {
    justify-content: center;
}

.site-footer-enhanced .footer-bottom {
    padding: 10px 0;
}

.site-footer-enhanced .middle-list li .link span svg {
    width: 16px;
}

.site-footer-enhanced .footer-top .footer-links .footer-title {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
}




.home-products .product-slider {
    margin-top: 30px;
}


.home-products .product-slider .slider:not(.swiper-initialized) .swiper-wrapper {
  gap: 15px;
}

.home-products .product-slider .slider:not(.swiper-initialized) .swiper-slide {
  width: calc(20% - 12px); /* 5 slides, 15px gap */
}

.home-products .product-slider .product-box .product-content {
    background-color: var(--main-theme-black);
    border-radius: 10px;
    padding: 140px 26px 26px;
    text-align: center;
}

.home-products .product-slider .product-box .product-content h3 {
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    white-space: normal;
}

.home-products .product-slider .product-box .product-img {
    position: relative;
    left: 50%;
    margin-bottom: -126px;
    width: 90%;
    transform: translateX(-50%);
}

.home-products .product-slider .product-box .product-img .aspect-custom {
    padding-bottom: 100%;
    background-color: #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
}

.home-products .product-slider .product-box:hover .product-img .aspect-custom {
    border-color: var(--dark-gray);
}

.home-products .product-slider .slider-action .swiper-pagination {
    display: none;
}

.home-products .product-slider .slider-action {
    position: relative;
    margin-top: 1.3rem;
    margin-bottom: -2rem;
    display: flex;
    justify-content: center;
    height: 37px;
    gap: 1.4rem;
    width: 100%;
}

.home-products .product-slider .slider-action .swiper-button-prev,
.home-products .product-slider .slider-action .swiper-button-next {
    background-color: var(--main-theme-red) !important;
    border: none !important;
}

.home-products .product-slider .slider-action .swiper-button-prev:hover,
.home-products .product-slider .slider-action .swiper-button-next:hover {
    background-color: var(--main-theme-black) !important;
}

.home-products .product-slider .slider-action .swiper-button-next::after,
 .home-products .product-slider .slider-action .swiper-button-prev::after {
    color: #fff !important;
    border: none !important;
}

@media  screen and (max-width: 1024px) {
.home-products .product-slider .slider:not(.swiper-initialized) .swiper-slide {
  width: calc(25% - 15px); /* 5 slides, 15px gap */
}
}

@media  screen and (max-width: 991px) {
.home-products .product-slider .slider:not(.swiper-initialized) .swiper-slide {
  width: calc(33% - 15px); /* 5 slides, 15px gap */
}
}

@media  screen and (max-width: 767px) {
    .home-products {
        padding-bottom: 3rem;
    }

    .home-products .product-slider .slider:not(.swiper-initialized) .swiper-slide {
  width: calc(100% - 15px); /* 5 slides, 15px gap */
}
}









.global-presence{
    background-color:  var(--main-theme-black);
}



.awards-section .awards-slider {
    margin-top: 30px;
}

.awards-section .awards-slider .award-box {
    padding: 50px;
    background-color: var(--theme-gray);
    border-radius: 10px;
}

.awards-section .awards-slider .award-box .aspect-custom {
    padding-bottom: 141%;
}

.awards-section .awards-slider .slider-action {
    position: relative;
    top: 1rem;
}




@media  screen and (max-width: 767px) {
    .home-products .product-slider .product-box .product-content h3 {
    font-size: 1.4rem;
}
}




/* magnific-img css start */

.magnific-img img {
	width: 100%;
	height: auto;
}

.magnific-img {
	display: inline-block;
}

a.image-popup-vertical-fit {
	cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
	opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

.mfp-arrow-left:before {
	border-right: none !important;
}

.mfp-arrow-right:before {
	border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
	opacity: 0 !important;
	transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
	opacity: 1 !important;
}

/* magnific-img css end */


.corporate-social .commitment {
    margin-right: 4rem;
}

.corporate-social .corporate-social-slider {
    margin-top: 30px;
}

.corporate-social .corporate-social-slider .swiper-slide{
    height: auto;
}

.corporate-social .corporate-social-slider .csr-box {
    border: 1px solid #2E3038;
    border-radius: 9px;
    background-color: var(--main-theme-black);
    padding: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
}

.corporate-social .corporate-social-slider .csr-box .count {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.corporate-social .corporate-social-slider .csr-box .count h3 {
    font-size: 3.7rem
}

.corporate-social .corporate-social-slider .csr-box .count h4 {
    color: var(--theme-gray);
    line-height: 1.2;
}


.corporate-social .corporate-social-slider .csr-box .content p {
    color: var(--dark-gray );
    margin-bottom: 0;
}

.corporate-social .corporate-social-slider .csr-box .fixed-icon {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 60px;
    background: #000;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-social .corporate-social-slider .csr-box .fixed-icon span i {
    font-size: 1.5rem;
}

.corporate-social .corporate-social-slider .csr-box .fixed-icon span svg {
    width: 45px;
    height: 45px;
    fill: var(--dark-gray);
    transition: all 0.3s ease;
}

.corporate-social .corporate-social-slider .csr-box:hover .fixed-icon span svg {
    fill: #fff;
}


.corporate-social .videos{
    margin-left: 3rem;
}

.corporate-social .videos .news-from-slider {
    margin-top: 30px;
}

.corporate-social .videos .news-from-slider .news-box .aspect-custom {
    /* padding-bottom: 49%; */
    height: 360px;
}

.corporate-social .videos .news-from-slider .news-box {
    border-radius: 9px;
    overflow: hidden;
}


.corporate-social .videos .news-from-slider .news-box .box-title {
    position: absolute;
    left: 0;
    bottom: -46px;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #14151bc9;
    transition: all 0.3s ease-in-out;
}

.corporate-social .videos .news-from-slider .news-box:hover .box-title {
    bottom: 0;
}

.corporate-social .videos .news-from-slider .news-box .box-title a {
    color: var(--theme-gray);
    transition: all 0.3s ease-in-out;
     display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.corporate-social .videos .news-from-slider .news-box .box-title a:hover {
    color: #fff;
}


.corporate-social .videos .news-from-slider .news-box .video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.corporate-social .videos .news-from-slider .news-box .video-play-button img {
    width: 70px;
}

@media screen and (max-width: 1440px) {
    .corporate-social .commitment {
    margin-right: 0rem;
}
}


@media screen and (max-width: 1366px) {
}



@media screen and (max-width: 1024px) {
    .corporate-social .videos .news-from-slider .news-box .aspect-custom {
    /* padding-bottom: 49%; */
    height: 282px;
}
.corporate-social .corporate-social-slider .csr-box{
    min-height: 282px;
}
}

@media screen and (max-width: 991.98px) {
    .corporate-social .videos .news-from-slider .news-box .video-play-button img {
    width: 50px;
}

.corporate-social .corporate-social-slider .csr-box {
    min-height: auto;
}

.corporate-social .videos {
    margin-left: 0;
    margin-top: 3rem;
}

.corporate-social .videos .news-from-slider .news-box .aspect-custom {
    padding-bottom: 49%;
    height: auto;
}

}

@media  screen and (max-width: 767px) {


.corporate-social .videos .news-from-slider .news-box .box-title {
    bottom: 0 !important;
    padding: 5px 5px 3px;
}

.corporate-social .videos .news-from-slider .news-box .box-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.8rem;
}

    .corporate-social .videos .news-from-slider,
    .corporate-social .corporate-social-slider {
    margin-top: 15px;
}
.corporate-social .videos .news-from-slider .news-box .video-play-button img {
    width: 36px;
}

.corporate-social .videos {
    margin-bottom: 1rem;
}

    .corporate-social .videos .section-title-style1 ,
    .corporate-social .commitment .section-title-style1 {
    text-align: center;
}
.corporate-social .corporate-social-slider .csr-box .count h3 {
    font-size: 2.8rem;
}
}


















.video-modal,
.video-modal .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
}

.video-modal {
    overflow: hidden;
    position: fixed;
    opacity: 0.0;
    -webkit-transform: translate(500%, 0%);
    transform: translate(500%, 0%);
    -webkit-transition: -webkit-transform 0s linear 0s;
    transition: transform 0s linear 0s;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.video-modal .overlay {
    z-index: 0;
    transition: opacity 0.2s ease-out 0.05s;
    background: #22232BCC !important;
    backdrop-filter: blur(4px) !important;
}

.video-modal-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    margin: 0 auto;
    overflow-y: visible;
    background: #000;
    width: calc(100% - 12em);
    height: 0;
    padding-top: calc((100% - 12em) * 0.5625);
}

@media (min-aspect-ratio:16/9) {
    .video-modal-content {
        width: 0;
        height: calc(100vh - 10em);
        padding-top: 0;
        padding-left: calc((100vh - 10em) * 1.7778);
    }

}

@media (max-width:640px) {
    .video-modal-content {
        width: calc(100% - 1em);
        padding-top: calc((100% - 1em) * 0.5625);
    }

}

.close-video-modal {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

iframe#youtube {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #000;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

.show-video-modal .video-modal {
    opacity: 1.0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

.show-video-modal .video-modal .overlay {
    opacity: 1.0;
}

.show-video-modal .video-modal-content {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}



.oe-equivalent.tab-1{
    background-color: var(--main-theme-red);
}

.oe-equivalent.tab-2{
    background-color: #282c33;
}

.oe-equivalent .section-title-style1 p  {
    width: 54%;
    margin: auto;
    color: var(--gray-light);
}

.oe-equivalent .top-content .nav {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.oe-equivalent .tab-button .nav-link {
    gap: 0.5rem;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 600;
    color: #1b1b1b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.oe-equivalent .tab-button .nav-link svg {
    fill: #1b1b1b;
    width: 24px;
    height: auto;
    transition: all 0.3s ease;
}


.oe-equivalent .tab-button .nav-link.active  {
    background-color: var(--main-theme-black);
    color: #fff;
}


.oe-equivalent .tab-button .nav-link.active  svg {
    fill: #fff;
}


.tab-content .tab-pane {
    margin-top: 2rem;
    min-height: 534px;
    align-content: center;
}


.tab-content .tab-pane .part-content .section-title-style1 h3,
.tab-content .tab-pane .part-content .section-title-style1 h6,
.tab-content .tab-pane .part-content{
    color: var(--gray-light);
}

.tab-content .tab-pane .part-content ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.tab-content .tab-pane .part-content ul li .icon {
    min-width: 50px;
    min-height: 50px;
    border-radius: 50px;
    background-color: #000;
    text-align: center;
    align-items: center;
    align-content: center;
}

.tab-content .tab-pane .part-content ul li span img {
    width: 30px;
    height: auto;
}

.tab-content .tab-pane .part-content .list-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.tab-content .tab-pane .right-img {
    border-radius: 10px;
    overflow: hidden;
}

.tab-content .tab-pane .right-img .aspect-custom{
    padding-bottom: 83%;
}

.tab-content .tab-pane .part-content ul li .title h4{
    margin-bottom: 0;
    font-weight: 600;
    color: var(--gray-light);
}

@media  screen and (max-width: 1366px) {
    .tab-content .tab-pane {
        min-height: 587px;
    }
}

@media  screen and (max-width: 991px) {
    .tab-content .tab-pane {
        margin-top: 1rem;
    }
}

@media  screen and (max-width: 767px) {

    .tab-content .tab-pane {
    min-height: auto;
}

.tab-content .tab-pane .part-content .list-title {
    font-size: 1rem;
    font-weight: 600;
}

.tab-content .tab-pane .part-content .section-title-style1 ,
 .tab-content .tab-pane .part-content .section-title-style1 {
    text-align: center;
}
}

.jvectormap-container svg {
    width: 100% !important;
    height: 100% !important;
}

/* ============================================================
   CSR PAGE - Corporate Social Responsibility
   ============================================================ */

/* --- Intro Section --- */
.csr-intro {
    background: #fff;
}

.csr-intro .right-img {
    border-radius: 8px;
    overflow: hidden;
}


.csr-intro-text {
    font-size: var(--font-size-18);
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.csr-intro .right-img .aspect-custom {
    padding-bottom: 54%;
}





/* --- CSR Pillars Section --- */
.csr-pillars {
    background: var(--main-theme-black);
}

.csr-pillars .section-title-style1 h3 {
    color: var(--gray-light);
}

.csr-pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.csr-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--main-theme-red);
    border-radius: 0 0 4px 0;
    transition: height 0.4s ease;
}

.csr-pillar-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(216, 19, 36, 0.3);
    transform: translateY(-5px);
}

.csr-pillar-card:hover::before {
    height: 100%;
}

.csr-pillar-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: var(--main-theme-red);
}

.csr-pillar-icon svg {
    width: 100%;
    height: 100%;
}

.csr-pillar-number {
    font-family: var(--heading-font-family);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.csr-pillar-title {
    font-family: var(--heading-font-family);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.csr-pillar-text {
    font-size: var(--font-size-16);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Outreach Section --- */
.csr-outreach {
    background: #f8f8f8;
}

.csr-outreach-heading {
    font-family: var(--heading-font-family);
    font-size: 32px;
    font-weight: 700;
    color: var(--main-theme-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.csr-outreach-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.csr-outreach-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.csr-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.csr-highlight-item:hover {
    border-color: var(--main-theme-red);
    box-shadow: 0 4px 15px rgba(216, 19, 36, 0.1);
}

.csr-highlight-icon {
    width: 36px;
    height: 36px;
    background: rgba(216, 19, 36, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-theme-red);
    font-size: 15px;
    flex-shrink: 0;
}

.csr-highlight-item span {
    font-weight: 600;
    font-size: var(--font-size-14);
    color: var(--main-theme-black);
}

.csr-outreach-vision {
    font-style: italic;
    border-left: 3px solid var(--main-theme-red);
    padding-left: 16px;
    color: #444 !important;
}

/* Outreach Image Composition */
.csr-outreach-images {
    position: relative;
    padding: 20px;
}

.csr-outreach-img.main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.csr-outreach-img.main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.csr-outreach-img.secondary {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.csr-outreach-img.secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.csr-outreach-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--main-theme-red);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 30px rgba(216, 19, 36, 0.3);
}

.csr-outreach-badge i {
    font-size: 24px;
}

.csr-outreach-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Photo Gallery Section --- */
.csr-gallery-section {
    background: #fff;
}

.csr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.csr-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.csr-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.csr-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 21, 27, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.csr-gallery-overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.csr-gallery-item:hover img {
    transform: scale(1.08);
}

.csr-gallery-item:hover .csr-gallery-overlay {
    opacity: 1;
}

.csr-gallery-item:hover .csr-gallery-overlay i {
    transform: scale(1);
}

/* --- CTA Section --- */
.csr-cta {
    padding: 0 0 60px;
}

.csr-cta-inner {
    background: var(--main-theme-black);
    border-radius: 14px;
    padding: 50px 50px;
    position: relative;
    overflow: hidden;
}

.csr-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.csr-cta-inner h3 {
    font-family: var(--heading-font-family);
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
}

.csr-cta-inner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* --- Lightbox Modal --- */
.csr-lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.csr-lightbox-modal .btn-close {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 10;
    opacity: 0.8;
    filter: invert(1);
}

.csr-lightbox-modal .modal-body img {
    border-radius: 8px;
}

/* --- CSR Responsive --- */
@media (max-width: 991px) {

    .rd-mosaic-large .rd-mosaic-item-floting {
 width: 150px;
    height: 150px;
}


    .csr-outreach .csr-outreach-content {
        text-align: center;
    }

    .csr-outreach .csr-outreach-content .csr-outreach-vision {
    text-align: left !important;
}

.csr-outreach-highlights {
    justify-content: center;
}

    .csr-intro-heading {
        font-size: 30px;
    }

    .csr-outreach-heading {
        font-size: 26px;
    }

    .csr-outreach-img.secondary {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 16px;
    }

    .csr-outreach-img.secondary img {
        height: 200px;
    }

    .csr-outreach-images {
    padding: 0;
}

    .csr-outreach-badge {
    position: absolute;
    top: 7px;
    right: 7px;
    }

    .csr-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.csr-cta-inner {
    padding: 20px;
    text-align: center;
}

.csr-cta {
    padding: 0 0 30px;
}

    .csr-cta-inner h3 {
        font-size: 24px;
    }

    .csr-intro .left-content{
        text-align: center;
        margin-bottom: 2rem;
    }


}

@media (max-width: 575px) {


    .rd-prestigious .rd-prestigious-content {
        text-align: center;
    }


    .rd-mosaic-large .rd-mosaic-item-floting {
   display: none;
}

    .csr-intro .left-content {
    text-align: center;
    margin-bottom: 1rem;
}
    .csr-intro-heading {
        font-size: 26px;
    }

    .csr-intro-text {
        font-size: var(--font-size-16);
    }

    .csr-pillar-card {
        padding: 25px 20px;
    }

    .csr-outreach-highlights {
        gap: 10px;
    }

    .csr-highlight-item {
        padding: 8px 14px;
        flex: 1 1 calc(50% - 10px);
    }

    .csr-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .csr-gallery-item img {
        height: 160px;
    }

    .csr-cta-inner {
        padding: 28px 20px;
        text-align: center;
    }

    .csr-cta-inner h3 {
        font-size: 22px;
    }
}


/* ============================================================
   R&D PAGE - Research & Development
   ============================================================ */

/* --- Common R&D Styles --- */
.rd-section-heading {
    font-family: var(--heading-font-family);
    font-size: 34px;
    font-weight: 700;
    color: var(--main-theme-black);
    margin-bottom: 18px;
    line-height: 1.2;
}

.rd-badge {
    display: inline-block;
    background: rgba(216, 19, 36, 0.1);
    color: var(--main-theme-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.rd-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* --- Prestigious Position Section --- */
.rd-prestigious {
    background: #fff;
}

.rd-prestigious-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.rd-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
}

.rd-stat {
    text-align: center;
}

.rd-stat .count-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.rd-stat .count-text .rd-stat-plus {
    font-family: var(--heading-font-family);
    font-size: 45px;
    font-weight: 700;
    color: var(--main-theme-red);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
}

.rd-stat-number {
    font-family: var(--heading-font-family);
    font-size: 42px;
    font-weight: 700;
    color: var(--main-theme-red);
    line-height: 1;
}

.rd-stat-plus {
    font-family: var(--heading-font-family);
    font-size: 28px;
    font-weight: 700;
    color: var(--main-theme-red);
}

.rd-stat-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* Gallery Mosaic */
.rd-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    min-height: 500px;
}

.rd-mosaic-item {
    border-radius: 10px;
    overflow: hidden;
}

.rd-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.rd-mosaic-large {
    grid-row: span 2;
    position: relative;
}

.rd-mosaic-large .rd-mosaic-item-floting {
   position: absolute;
    right: 16px;
    bottom: 16px;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.rd-mosaic-large .rd-mosaic-item-floting img {
   min-height: auto !important;
    border: 2px solid #fff;
    border-radius: 10px;
}



.rd-mosaic-large img {
    height: 100%;
    min-height: 320px;
}

/* --- Dyno Test Machine Section --- */
.rd-dyno-section {
    background: var(--gray-light);
}

.rd-dyno-section .rd-dyno-content .test-standard .standard-header {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.rd-dyno-section .rd-dyno-content .test-standard .standard-header span {
    background-color: var(--main-theme-red);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 15px 2px 15px;
    border-radius: 30px;
}

.rd-dyno-main-img {
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.rd-dyno-main-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.rd-dyno-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.rd-dyno-sub-img {
    overflow: hidden;
}

.rd-dyno-sub-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}


.rd-highlight-box {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--main-theme-red);
    padding: 12px;
    margin-top: 20px;
    text-align: left !important;
}

.rd-highlight-box i {
    font-size: 24px;
    color: var(--main-theme-red);
    margin-top: 4px;
    flex-shrink: 0;
}

.rd-highlight-box strong {
    display: block;
    color: var(--main-theme-black);
}

.rd-highlight-box p {
    font-size: var(--font-size-14);
    margin-bottom: 0;
}

/* --- R&D Capability Section --- */
.rd-capability {
    background: var(--gray-light);
}

.rd-capability-subtitle {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.rd-equipment-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.rd-equipment-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.rd-equipment-img {
    overflow: hidden;
}

.rd-equipment-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


.rd-equipment-info {
    padding: 8px 0;
    text-align: center;
    background: var(--main-theme-black);
    font-size: 1rem !important;
}

.rd-equipment-info h5 {
    font-family: var(--heading-font-family);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
    font-size: 1rem !important;
}
.rd-equipment-info span {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Test Capability Section --- */
.rd-test-capability {
    background: var(--main-theme-black);
}

.rd-test-capability .image-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.rd-test-capability .image-row .img-box {
    position: relative;
    margin-top: 1rem;
} 

.rd-test-capability .image-row .img-box .img-box-text {
    background-color: #d81324;
    color: #fff;
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    font-size: 0.9rem;
    display: inline-block;
    padding: 3px 15px;
    border-radius: 30px;
}

@media screen and (max-width: 991.98px) {
    .rd-test-capability .image-row {
    grid-template-columns: repeat(5, 1fr);
}

}

@media  screen and (max-width: 767px) {
.rd-test-capability .image-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
}

.rd-test-capability .image-row .img-box {
    margin-top: 0;
}

}





.rd-test-content .rd-section-heading {
    color: #fff;
}

.rd-test-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.rd-standards-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rd-standards-box h6 {
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 12px;
}

.rd-standards-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rd-standards-tags span {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Test Table */
.rd-table-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.rd-test-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rd-test-table thead th {
    background: var(--main-theme-red);
    color: #fff;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.rd-test-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
}

.rd-test-table tbody tr:last-child td {
    border-bottom: none;
}

.rd-test-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

/* --- Vehicle Performance Test Section --- */
.rd-vehicle-test {
    position: relative;
    background: url('../images/research-development-banner.jpg') center center / cover no-repeat;
}

.rd-vehicle-test-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 21, 27, 0.92) 0%, rgba(20, 21, 27, 0.8) 100%);
}

.rd-vehicle-test-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.rd-vehicle-test-content h2 {
    font-family: var(--heading-font-family);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.rd-vehicle-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-18);
    margin-bottom: 0;
}

.rd-vt-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.rd-vt-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(216, 19, 36, 0.3);
    transform: translateY(-3px);
}

.rd-vt-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(216, 19, 36, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-theme-red);
    font-size: 20px;
    margin-bottom: 18px;
}

.rd-vt-card h4 {
    font-family: var(--heading-font-family);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rd-vt-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-14);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Laboratory Testing Section --- */
.rd-laboratory {
    background: var(--gray-light);
}

.rd-lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rd-lab-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
}

.rd-lab-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.rd-lab-img {
    overflow: hidden;
}

.rd-lab-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rd-lab-item h5 {
    font-family: var(--heading-font-family);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 8px 0;
    text-align: center;
    background: var(--main-theme-black);
}

/* --- R&D CTA Section --- */


.rd-cta-inner {
    background: var(--main-theme-black);
    border-radius: 14px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.rd-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(216, 19, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rd-cta-inner h3 {
    font-family: var(--heading-font-family);
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
}

.rd-cta-inner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* --- R&D Responsive --- */
@media (max-width: 991px) {
    .rd-section-heading {
        font-size: 28px;
    }

    .rd-stats-row {
        gap: 20px;
    }

    .rd-stat-number {
        font-size: 34px;
    }

    .rd-gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .rd-mosaic-large {
        grid-row: span 1;
    }

    .rd-mosaic-large img {
        min-height: 200px;
    }



    .rd-dyno-main-img img {
        height: 280px;
    }

    .rd-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rd-test-table {
        min-width: 650px;
    }



    .rd-vehicle-test-content h2 {
        font-size: 32px;
    }

    .rd-lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 575px) {

    .rd-equipment-info {

    font-size: 0.7rem !important;
}

.rd-equipment-info h5 {

    font-size: 0.7rem !important;
}


    .rd-section-heading {
        font-size: 24px;
    }

.rd-stats-row {
    gap: 15px;
    justify-content: center;
}

.rd-stat .count-text .rd-stat-plus {
     font-size: 31px;
 top: 47%;
right: 14px;
    
}

.rd-dyno-section .rd-dyno-content {
    text-align: center;
    margin-top: 1rem;
}

    .rd-stat-number {
        font-size: 28px;
    }

    .rd-stat-label {
        font-size: 11px;
    }

    .rd-gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .rd-mosaic-large img {
        min-height: 180px;
        height: 220px;
    }

    .rd-dyno-main-img img {
        height: 220px;
    }

    .rd-dyno-sub-img img {
        height: 120px;
    }

    .rd-equipment-img img {
        height: 150px;
    }

    .rd-vt-card {
        padding: 22px;
    }


    .rd-vehicle-test-content h2 {
        font-size: 26px;
    }

    .rd-lab-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .rd-lab-img img {
        height: 140px;
    }

    .rd-lab-item h5 {
        font-size: 12px;
        padding: 10px 8px;
    }

    .rd-cta-inner {
        padding: 28px 20px;
        text-align: center;
    }

    .rd-cta-inner h3 {
        font-size: 22px;
    }
}


.product-detail .product-action {
    gap: 0.5rem;
    margin-top: 1.5rem;
}


@media  screen and (max-width: 767px) {
    .product-detail .product-action {
    justify-content: center;
    margin-top: 1rem;
}
}

.product-siblings-thumbs {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sibling-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #cccccc1f;
    border-radius: 8px;
    padding: 6px;
    transition: all 0.3s ease;
    background: #f9f9f9;
    width: calc(20% - 10px);
}

.sibling-thumb:hover {
    border-color: #ccc;
    background: #f0f0f0;
    text-decoration: none;
}

.sibling-thumb.active {
    border-color: var(--main-theme-red);
    background: #fff5f5;
}

.sibling-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sibling-thumb-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.sibling-thumb.active .sibling-thumb-title {
    color: #c8102e;
    font-weight: 600;
}



@media screen and (max-width: 991.98px) {
.sibling-thumb img {
    height: 110px;
}
.sibling-thumb-title {
    font-size: 0.7rem;
}
}


@media screen and (max-width: 767px) {
   .product-siblings-thumbs {
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 0px;
}

.sibling-thumb {
   width: calc(33.33% - 10px);
}

.sibling-thumb img {
    height: 100px;
}

}

 .home .sticky-buttons{
    right: -13rem;
} 

.sticky-buttons {
    position: fixed;
    right: -10rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

 .home .sticky-buttons.buttons-active {
   right: -10rem;
} 

.sticky-buttons  .sticky-links {
    display: flex;
    font-size: 0.9rem;
    gap: 0.2rem;
    width: 204.94px;
    padding: 10px 10px;
    color: #fff;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 30px 0 0 30px;
    background: linear-gradient(180deg, #D81324 0%, #B80B1A 100%);
    height: 50px;
    line-height: 1.2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sticky-buttons  .sticky-links:hover {
    background: linear-gradient(180deg, #14151B 0%, #14151B 100%);
    transform: translateX(-10rem);
}

.find-parts .sticky-buttons .sticky-links:first-child{
    display: none;
}



.sticky-buttons  .sticky-links span {
    min-width: 35px;
}

.sticky-buttons  .sticky-links span svg {
    width: 35px;
}
@media  screen and (max-width: 767px) {
    .sticky-buttons  .sticky-links {
        padding: 10px 6px;
        height: 40px;
    }
    .btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.btn-group>:not(.btn-check)+.btn {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.sticky-buttons,
.home .sticky-buttons.buttons-active {
    right: -10.4rem;
}
}

.form-switch {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--main-theme-red);
    border-color: var(--main-theme-red);
}

.form-check-input[type=checkbox] {
    cursor: pointer;
}

select {
    cursor: pointer;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color:  var(--main-theme-red);
    color: white;
}

.feature-box {
    position: relative;
    overflow: hidden;
}

.feature-box.image-mode::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.feature-box > * {
    position: relative;
    z-index: 2;
}


.main-slider-v2 .home-slider .aspect-custom {
    padding-bottom: 44% !important;
}

.feature-boxes-row {
    position: relative;
    z-index: 999;
    padding: 0 30px;
    margin-top: 1.6rem;
}

.feature-boxes-row .feature-box {
    background-color: var(--main-theme-black);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 254px;
    border-radius: 10px;
}

 .feature-boxes-row .feature-box .feature-box-content h3 {
    color: var(--theme-gray);
    font-size: 1.8rem;
}

 .feature-boxes-row .feature-box .feature-box-content p {
    color: var(--gray-light);
    font-size: 1rem;
}


 .feature-boxes-row .feature-box-img {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: auto;
    height: auto;
}

 .feature-boxes-row .feature-box-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

 .feature-boxes-row .feature-box .feature-box-content {
    width: 90%;
}

 .shape-overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
    z-index: 99;
}

.main-slider-v2 .home-slider .slider-action .swiper-button-prev ,
.main-slider-v2 .home-slider .slider-action .swiper-button-next {
    display: none !important;
}

@media screen and (max-width: 1366px) {
     .feature-boxes-row .feature-box .feature-box-content h3 {
    font-size: 1.6rem;
}
}

@media screen and (max-width: 1024px) {
     .feature-boxes-row .feature-box-img img {
    width: 64px;
    height: 64px;
}
 .feature-boxes-row .feature-box .feature-box-content h3 {
    font-size: 1.2rem;
}
 .feature-boxes-row .feature-box {
    padding: 1.5rem;
}
.feature-boxes-row {
    padding: 0;
}

.main-slider-v2 .home-slider .aspect-custom {
    padding-bottom: 59% !important;
}
}

@media screen and (max-width: 991.98px) {
     .feature-boxes-row .feature-box {
    padding: 0.8rem;
    min-height: 180px;
}
 .feature-boxes-row .feature-box .feature-box-content h3 {
    font-size: 1.2rem;
}
 .feature-boxes-row .feature-box .feature-box-content p {
    font-size: 0.9rem;
}
 .feature-boxes-row .feature-box-img img {
    width: 40px;
    height: 40px;
}

 .feature-boxes-row .feature-box .feature-box-content {
    width: 100%;
}

.shape-overlay {
    height: 50px;
}

}

@media  screen and (max-width: 767px) {
 .feature-boxes-row .feature-box {
    padding: 1.3rem;
    margin-top: 0.5rem;
    min-height: auto;
}
.shape-overlay {
    display: none;
}
.feature-boxes-row {
    margin-top: 0;
}

.main-slider-v2 .home-slider .aspect-custom {
    padding-bottom: 100% !important;
}

}

.ask-any-form .cd-phone-wrapper .select2-container {
    width: 140px !important;
    min-width: 140px;
    font-size: 16px;
    color: var(--main-theme-red);
    border-radius: 0px;
    background: transparent;
    border: 2px solid;
    border-color: var(--main-theme-red);
    box-shadow: none;
    border-right: none;
}

.ask-any-form .cd-phone-wrapper .select2-container .select2-selection--single {
    height: 100%;
    border: none;
    border-right: none;
    border-radius: 0px;
    padding: 0 14px;
    background: transparent;
    display: flex;
    align-items: center;
}

.ask-any-form .cd-phone-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    color: var(--main-theme-red);
}

.country-custom-select .select2-container--default .select2-selection--single .select2-selection__placeholder,
.ask-any-form .cd-phone-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--main-theme-red);
}


.country-custom-select .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    color: var(--main-theme-red);
    border-radius: 0px;
    background: transparent;
    border: 2px solid;
    border-color: var(--main-theme-red);
    box-shadow: none;
    height: auto;
}

.country-custom-select .select2-selection__arrow{
    display: none;
}

.country-custom-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
}

.ask-any-form .cd-phone-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0px !important;
}

.factory-stats .scale-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* .factory-stats .row .col-12:last-child .scale-box .box-info .stat-suffix{
    font-size: 2rem;
}  */

.factory-stats .scale-box .box-img {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.factory-stats .scale-box .box-img i {
        font-size: 1.6rem;
    color: var(--gray-light);
}



.factory-stats .scale-box .box-info .stat-number .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-theme-black);
    line-height: 1;
}

.factory-stats .scale-box .box-info .stat-number .stat-suffix {
    color: var(--main-theme-red);
    margin-left: 0.5rem;
    font-size: 1.4rem;
}

.factory-stats .scale-box .box-info .stat-title {
    opacity: 0.6;
}



@media screen and (max-width: 1024px) {
    .factory-stats .scale-box .box-info .stat-number .counter {
    font-size: 2.4rem;
}
}

@media screen and (max-width: 991.98px) {
}

@media  screen and (max-width: 767px) {
    .factory-stats .scale-box .box-info .stat-number .counter {
    font-size: 2rem;
}
    .factory-stats .scale-box .box-info .stat-number .stat-suffix {
    font-size: 1.1rem;
}
}

.sidebar-wrapper #filterForm .select2-container {
    width: 100% !important;
}

.sidebar-wrapper #filterForm .select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.sidebar-wrapper #filterForm .select2-container .select2-selection--single .select2-selection__arrow {
    height: 38px;
    right: 8px;
}
.sidebar-wrapper #filterForm .select2-container--open .select2-selection--single {
    border-color: #ccc;
}





.expert-card {
    margin-top: 30px;
    text-align: center;
    border: 1px solid #0000001a;
    padding: 15px;
    height: calc(100% - 30px);
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.technical-experts .expert-card img {
    width: 100px;
    object-fit: cover;
    height: 100px;
    border-radius: 90px;
}

.technical-experts .expert-card .expert-name {
    font-size: 1.4rem;
    margin-top: 0.9rem;
    margin-bottom: 0;
}

.technical-experts .expert-card .expert-role {
    font-weight: 500;
    color: #8c8c8c;
    margin-bottom: 0.4rem;
}

.technical-experts .expert-card .expert-text {
    font-size: 1rem;
    margin-bottom: 0;
}

@media  screen and (max-width: 767px) {
    .expert-card {
    margin-top: 15px;
    height: calc(100% - 15px);
}
}


.emission-dyno .emission-dyno-card {
    margin-top: 1rem;
    position: relative;
}

.emission-dyno .emission-dyno-card .link {
    background-color: #d81324;
    color: #fff;
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 15px 2px 15px;
    border-radius: 30px;
}

.emission-dyno .emission-dyno-card .emission-dyno-info {
    background-color: #00000096;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    padding: 5px 10px;
}


.vehicle-testing-center .section-title-style1 {
    margin-bottom: 1.5rem;
}

.vehicle-testing-center .left-img .aspect-custom {
    padding-bottom: 52%;
}

.vehicle-testing-center .right-content span {
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
}

.vehicle-testing-center .right-content span::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    background-color: var(--main-theme-red);
    bottom: -10px;
    left: 0;
}

.vehicle-testing-center .right-content .aspect-custom {
    padding-bottom: 42.8%;
    margin-top: 2rem;
}


.vehicle-testing-center .equipment-card {
    margin-top: 26px;
    border: 1px solid #0000001a;
    height: calc(100% - 26px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.vehicle-testing-center .equipment-card .aspect-custom {
    padding-bottom: 66%;
}

.vehicle-testing-center .equipment-card .card-detail h3{
    background: red;
    color: #fff;
    padding: 4px 18px;
}

.vehicle-testing-center .equipment-card .card-detail .text-content {
    padding: 4px 18px;
}

.vehicle-testing-center .equipment-card .card-detail .text-content ul {
    margin-left: 0;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

@media screen and (max-width: 991.98px) {
    .vehicle-testing-center .right-content span {
    font-size: 1rem;
}
}

@media  screen and (max-width: 767px) {
    .vehicle-testing-center .right-content {
        margin-top: 1rem;
    }
    .vehicle-testing-center .equipment-card {
    margin-top: 16px;
    height: calc(100% - 16px);
}
}















.global-road-test{
   background: var(--gray-light);
}

.global-road-test .section-title-style1 {
    margin-bottom: 1.6rem;
}



.global-road-test .left-content .box-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.global-road-test .left-content .aspect-custom-big {
    padding-bottom:36%
} 

.global-road-test .left-content .aspect-custom-small {
    padding-bottom:61%
} 

.global-road-test .left-content .image-box {
    margin-top: 10px;
     border: 1px solid #ccc;
}



.global-road-test .right-content .box-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


.global-road-test .right-content .aspect-custom-small {
    padding-bottom:61%
} 

.global-road-test .right-content .image-box {
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

@media screen and (max-width: 991.98px) {
    .global-road-test .right-content .image-box {
    margin-top: 10px;
}
}

@media  screen and (max-width: 767px) {
}


















.test-china-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.test-china-table th,
.test-china-table td {
    border: 1px solid #000;
    padding: 3px 14px;
}

.test-china-table th {
    background: var(--main-theme-red);
    font-weight: 600;
    text-align: left;
    color: #fff;
}

.test-china-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.test-china-table tbody tr:hover {
    background: #f1f7ff;
    transition: 0.3s;
}




.global-road-test-global .left-content {
    margin-top: 20px;
    border: 1px solid #ccc;
    height: calc(100% - 20px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
}

.global-road-test-global .left-content .box-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.global-road-test-global .left-content  .aspect-custom-small {
    padding-bottom: 61%;
}
.global-road-test-global .left-content  .aspect-custom-big {
    padding-bottom: 61.8%;
}

.global-road-test-global .left-content .location-title {
    background-color: var(--main-theme-red);
    color: #fff;
    padding: 4px 18px;
    text-align: center;
}

.global-road-test-global .left-content .box-info {
    margin-top: 10px;
}

.global-road-test-global .left-content .box-info strong {
    margin-bottom: 0.3rem;
    display: inline-block;
}

.global-road-test-global .left-content .box-info ul {
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}


.high-performance-testing {
    background: var(--gray-light);
}

.high-performance-testing .section-title-style1{
   margin-bottom: 1.6rem;
}

.high-performance-testing .right-img{
    position: relative;
}

.high-performance-testing .right-img .aspect-custom-big {
    padding-bottom: 43%;
}

.high-performance-testing .right-img .floting-img {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 5px solid #eaeaea;
    border-left: 5px solid #eaeaea;
    width: 170px;
    height: 170px;
}



@media screen and (max-width: 991.98px) {
    .high-performance-testing .right-img .floting-img {
    width: 120px;
    height: 120px;
}
}

@media  screen and (max-width: 767px) {
    .high-performance-testing .left-content {
    text-align: center;
}
}







.cold-testing .section-title-style1 {
    margin-bottom: 1.6rem;
}

.cold-testing .left-content p {
    position: relative;
    margin-bottom: 1.6rem;
    font-size: 1.3rem;
}

.cold-testing .left-content p::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    background-color: var(--main-theme-red);
    bottom: -10px;
    left: 0;
}

.cold-testing  .box-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cold-testing .image-box {
    position: relative;
    border: 1px solid #ccc;
}

.cold-testing .image-box span {
   background-color: #00000096;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    font-size: 1rem;
    padding: 5px 10px;
}

.cold-testing  .aspect-custom-small {
    padding-bottom: 61%;
}

.cold-testing  .aspect-custom-big {
    padding-bottom: 50%;
}

@media screen and (max-width: 991.98px) {
    .cold-testing .image-box {
    margin-bottom: 10px;
}
}

@media  screen and (max-width: 767px) {
    .cold-testing .left-content{
        text-align: center;
    }
    .cold-testing .left-content p {
    font-size: 1rem;
}
.cold-testing .left-content p::before {
    left: 50%;
    transform: translateX(-50%);
}
.cold-testing  .box-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}
}











.about-us-new .left-content {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.about-us-new .row.align-items-center {
    align-items: stretch !important;
}

.about-us-new .car-image {
    height: 100%;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    border: 1px solid #0000001a;
}

.about-us-new .car-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.vision-mission-content {
    display: flex;
    gap: 1.5rem;
}

.about-us-new .left-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--main-theme-black);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
}

.about-us-new .left-content .aspect-custom-big {
    padding-bottom: 75%;
}

.about-us-new .left-content .about-experience {
        position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--gray-light);
    text-align: center;
    z-index: 2;
    line-height: 1.1;
    background: var(--main-theme-red);
    padding: 0 20px 10px 20px;
    border-radius: 8px;
}

.about-us-new .left-content .about-experience h4 {
    font-size: 2.6rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: var(--gray-light);
}

.about-us-new .left-content .about-experience small {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-top: 4px;
}


.about-us-new .vision-mission-content .text-box {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #cccccca3;
    background-color: var(--main-theme-black);
    color: var(--gray-light);
    position: relative;
    overflow: hidden;
    margin-top: 1.6rem;
    flex: 1;
}

.about-us-new .right-content {
    align-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #0000001a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-us-new .right-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.about-us-new .right-content ul li {
    display: flex;
    gap: 1rem;
    align-items: center;
}



.about-us-new .right-content ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.7rem;
    margin-bottom: 0.7rem;
}

.about-us-new .right-content ul li .box-img {
    min-width: 70px;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-new .car-image .aspect-custom{
    padding-bottom: 91%;
}







.about-us-new .vision-mission-content .text-box h3 {
    color: var(--gray-light);
    text-align: center;
    line-height: 1.1;
    background: var(--main-theme-red);
    padding: 5px 18px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-us-new .vision-mission-content .text-box .fixed-icon {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 100px;
    background: #000;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-new .vision-mission-content .text-box .fixed-icon img {
    max-width: 50px;
}

.about-us-new .sticky-content {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #cccccca3;
    width: 94%;
    height: 90%;
    align-content: center;
    background-color: #14151bb0;
    color: var(--gray-light);
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.about-us-new .sticky-content .text p{
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
.about-us-new .left-content {
    height: calc(100% - 1.2rem);
    margin-bottom: 1.2rem;
}
}

@media screen and (max-width: 991.98px) {
.about-us-new .vision-mission-content .text-box {
    margin-top: 1rem;
}
}

@media  screen and (max-width: 767px) {
    .about-us-new .left-content .about-experience h4 {
    font-size: 2rem;
}
.about-us-new .vision-mission-content .text-box .fixed-icon {
    width: 80px;
    height: 80px;
}
.about-us-new .vision-mission-content .text-box .fixed-icon img {
    max-width: 35px;
}
.about-us-new .right-content {
      padding: 15px;
}
.vision-mission-content {
    gap: 0;
    flex-direction: column;
}
.about-us-new .vision-mission-content .text-box {
    margin-top: 0.7rem;
}
.about-us-new .left-content {
    height: calc(100% - 0.7rem);
    margin-bottom: 0.7rem;
}
}



.oe-equivalent .tab-content .tab-pane .oe-box {
    border-radius: 8px;
    padding: 0;
    height: calc(100% - 20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
    margin-top: 20px;
}

.oe-equivalent .tab-content .tab-pane .oe-box h3 {
    font-size: 1.3rem;
    background-color: var(--main-theme-black);
    color: #fff;
    padding: 5px 15px;
    text-transform: capitalize;
    text-align: center;
}

.oe-equivalent .tab-content .tab-pane .oe-box .box-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
}


.oe-equivalent .tab-content .tab-pane .oe-box .box-content .image-box {
    position: relative;
    min-width: 138px;
    width: 138px;
    height: 100%;
    padding: 0.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff !important;
    -webkit-box-shadow: -1px 6px 13px 0 #0c0c0c21 !important;
    box-shadow: -1px 6px 13px 0 #0c0c0c21 !important;
    border-radius: .625rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
}


.oe-equivalent .tab-content .tab-pane .oe-box .box-content img {
    height: 34px;
    object-fit: contain;
    transition: 0.3s;
    background: #fff;
    min-height: 34px;
}


.oe-equivalent .tab-content .tab-pane h4 {
    display: inline-block;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 30px;
}


.oe-equivalent .performance-content .box {
    border: 1px solid #2E3038;
    border-radius: 9px;
    background-color: var(--main-theme-black);
    overflow: hidden;
    height: calc(100% - 20px);
    margin-top: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.oe-equivalent .performance-content .box:hover {
    transform: translateY(-8px);
}

.oe-equivalent .performance-content .box .icon {
    border: 1px solid;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 80px;
    background: #000;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oe-equivalent .performance-content .box .icon img {
    width: 40px;
    height: auto;
}

.oe-equivalent .performance-content .box h3 {
    text-transform: capitalize;
    font-size: 1.4rem;
    min-height: 80px;
    align-content: center;
    margin-bottom: 0;
    margin-left: 1rem;
    color: var(--theme-gray);
    transition: all 0.3s ease-in-out;
}

.oe-equivalent .performance-content .box ul {
    list-style: none;
    padding-left: 1rem;
}

.oe-equivalent .performance-content .box ul li {
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 7px;
    color: var(--dark-gray);
}

.oe-equivalent .performance-content .box ul li  i {
    font-size: 5px;
    color: var(--theme-gray);
    transition: transform 0.3s ease;
    position: relative;
    top: 9px;
}





@media  screen and (max-width: 991px) {
.oe-equivalent .tab-content .tab-pane .oe-box .box-content .image-box {
    min-width: 165px;
    width: 165px;
}
}




@media  screen and (max-width: 767px) {
.oe-equivalent .performance-content .box {
    height: calc(100% - 10px);
    margin-top: 10px;
}

.oe-equivalent .tab-content .tab-pane .oe-box .box-content .image-box {
    position: relative;
    min-width: 142px;
    width: 142px;
    padding: 0.8rem;
}
}

.tab-loader{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tab-loader.active{
    display: flex;
}

.loader-spinner{
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin{
    100%{ transform: rotate(360deg); }
}




/* Product-detail */

.asimco-catalog-v2 {
    color: #000000;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.asimco-catalog-v2 .hero-v2 {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 120px 20px;
    text-align: center;
}

.asimco-catalog-v2 .hero-v2 h1 {
    font-size: 48px;
    color: #d81324; /* RED */
}

.asimco-catalog-v2 .subtitle-v2 {
    color: #000; /* BLACK */
    margin-top: 10px;
}

.asimco-catalog-v2 .highlights-v2 {
    list-style: none;
    margin-top: 30px;
}

.asimco-catalog-v2 .highlights-v2 li {
    color: #d81324; /* RED */
    margin: 10px 0;
}

/* SECTIONS */
.asimco-catalog-v2 .section-v2 {
    padding: 10px 0%;
}


/* DESCRIPTION TEXT BLACK */
.asimco-catalog-v2 .section-v2 p,
.asimco-catalog-v2 .section-v2 ul li {
    color: #000;
    line-height: 1.7;
}

/* FEATURES */
.asimco-catalog-v2 .feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.asimco-catalog-v2 .feature-grid-v2 div {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
    color: #000; /* BLACK TEXT */
}

/* LOGOS */
.asimco-catalog-v2 .logo-group-v2 {
    border-radius: 8px;
    padding: 0;
    height: calc(100% - 20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
    margin-top: 20px;
    border: 1px solid #ccc;
}

.asimco-catalog-v2 .logo-group-v2 h3 {
    font-size: 1.3rem;
    background-color: var(--main-theme-black);
    color: #fff;
    padding: 5px 15px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.asimco-catalog-v2 .logo-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.asimco-catalog-v2 .logo-grid-v2 img {
    height: 40px;
    object-fit: contain;
    transition: 0.3s;
}

.asimco-catalog-v2 .logo-grid-v2 img:hover {
    transform: scale(1.1);
}

/* CODING */
.asimco-catalog-v2 .coding-v2 h3 {
    color: #d81324;
}

.asimco-catalog-v2 .safe-bet-section-v3 {
    padding: 60px 10%;
}

.asimco-catalog-v2 .safe-bet-container-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.asimco-catalog-v2 .safe-bet-left-v3 h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.asimco-catalog-v2 .tagline-v3 {
    margin-bottom: 25px;
    color: #000000;
}

/* LIST */
.asimco-catalog-v2 .safe-list-v3 {
    list-style: none;
    padding: 0;
}

.asimco-catalog-v2 .safe-list-v3 li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

/* ICON */
.asimco-catalog-v2 .icon-v3 {
    width: 24px;
    margin-right: 12px;
}

/* RED LETTER */
.asimco-catalog-v2 .red-v3 {
    color: #d81324;
}

/* RIGHT IMAGE */
.asimco-catalog-v2 .safe-bet-right-v3 img {
    max-width: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .asimco-catalog-v2 .safe-bet-container-v3 {
        flex-direction: column;
        text-align: center;
    }

    .asimco-catalog-v2 .safe-list-v3 li {
        justify-content: center;
    }
}

.asimco-catalog-v2 .safe-item-v3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.view-toggle-wrapper .btn-group.view-toggle {
    display: none;
}


/*
 * Claude Custom Styles
 * Separate CSS file for styles added by Claude Code
 * to avoid conflicts with developer's style.css
 */

/* ========== button-dark (black variant) ========== */
.button-dark {
  background: var(--dark-gradient);
}

.button-dark::before {
  background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
}

.button-dark > span {
  color: var(--theme-gray);
}

.button-dark > span .dot {
  background-color: #D81324;
  transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
}

.button-dark:hover > span .dot {
  background-color: #f7ea03;
}

/* ========== Slider Video ========== */
.slider-video-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* .slider-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: auto;
  z-index: 2;
} */

.slider-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
   width: 100vh;
  min-width: 100%;
  height: 80%;
  min-height: 43vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: auto;
  z-index: 2;
}

.slider-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 1;
}



.custom-accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: none;
    background: #cccccc61;
}

.custom-accordion .accordion-item+.accordion-item {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.custom-accordion .accordion-button {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.2rem;
    background: transparent;
    background: #000;
    border: none;
    color: #fff!important;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button[aria-expanded="true"] {
	color: #1d4ed8;
}

.custom-accordion .accordion-button::after {
    content: '\25BE';
    transition: transform 0.25s ease;
    color: #fff;
}

.custom-accordion .oe-equivalent .tab-content .tab-pane .oe-box {
    border-radius: 0 !important;
}

.custom-accordion .accordion-button[aria-expanded="true"]::after {
	transform: rotate(180deg);
}

.custom-accordion .accordion-panel {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.custom-accordion .accordion-panel.active {
	opacity: 1;
}

@media  screen and (max-width: 991px) {
.slider-video-iframe {
    width: 90vh;
    min-width: 84%;
    height: 80%;
}
}
@media  screen and (max-width: 767px) {
    .custom-accordion .accordion-button {
        padding: 0.45rem 1.2rem;
        font-size: 1.2rem;
    }
.slider-video-iframe {
    min-height: auto;
    height: 57%;
    width: 101%;
    min-width: 101%;
}
}