/*Fonts*/
@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/Raleway-Thin.ttf') format('truetype');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'DM-Sans';
    src: url('../assets/fonts/DMSans/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  src: url('/vendor/webfonts/fa-regular-400.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  src: url('/vendor/webfonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('/vendor/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../assets/fonts/Raleway/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

body { 
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

body {
  margin: 0;
  --clr-bg: hsl(230, 10%, 94%);
  --clr-sidebar-border: hsl(230, 10%, 85%);
  --clr-sidebar-title: hsl(230, 10%, 50%);
  --clr-bg-menu-button: hsl(230, 10%, 90%);
  --clr-bg-menu-span: hsl(230, 10%, 50%);
  --clr-bg-menu-span--open: hsl(230, 10%, 20%);
  --clr-menu-link: hsl(230, 10%, 35%);
  --clr-menu-link--hover: hsl(230, 10%, 5%);
  --clr-heading: hsl(230, 10%, 15%);
  --clr-hero-deco: hsl(230, 10%, 85%);
  --clr-lead: hsl(230, 10%, 35%);
  --clr-link: hsl(230, 10%, 25%);
  --clr-link--hover: hsl(230, 10%, 0%);
  --clr-primary: hsl(230, 10%, 50%);
  --clr-primary--hover: hsl(230, 10%, 94%);
  --clr-slide-number: hsl(230, 10%, 50%);
  --clr-slide-number--active: hsl(165, 75%, 60%);
  --sidebar-width: 6.25rem;
  --header-height: 5rem;
  --color-text: #000;
  --color-bg-accent: #FFE018;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0 0 1.125rem 0;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0; 
  height: 100%;
}

/* Push page content down */
body {
  padding-top: 6rem; 
  background: #f2eeeb;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.section-padding {
  padding: 7rem 0;
}

/*loader*/
.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: #f2eeeb;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 1s ease-out;
}
.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent #D28F51 transparent #D28F51;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}
#loading-icon img{
	max-width: 32rem;
}
@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}



/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  transition: transform 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 0.625rem rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    max-width: 21rem;   
    align-items: center;
    min-height: 60px; /* Reserve space to prevent shift */
}

.logo img {
    width: 21rem; /* Set explicit width */
    height: 60px;  /* Set explicit height */
    max-width: 100%;
}

/* Alternative: Use aspect ratio for SVG */
.logo img[src$=".svg"] {
    width: 21rem;
    height: auto;
    aspect-ratio: 10/3; /* Adjust based on your logo ratio */
}
/* Navigation */
nav {
  display: flex;
  align-items: center;
  flex: 2;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  position: relative; /* Ensure blob is positioned relative to nav */
  padding: 0; 
}

.dropdown-toggle::after{
    border: 0 !important;
}

nav ul li {
  position: relative;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-radius: 1.5625rem;
  z-index: 1; /* Ensure nav items are above blob */
}

nav ul li a:link,
nav ul li a:visited {
  color: #030001;
  text-decoration: none;
}

nav ul li.active a,
nav ul li a.active {
  color: #fff !important;
}

nav ul li a:hover,
nav ul li:hover a {
  color: #fff !important;
}

nav ul li a:active {
  color: #fff !important;
}
nav ul li#blob{
  position: absolute;
  background-color: #734212;
  border-radius: 1.5625rem;
  -webkit-transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 0; /* Blob stays behind nav items */
  pointer-events: none;
}

/* Breadcrumb Header */
.breadcrumb-header{
    padding-bottom: 7.5rem;
    padding-top: calc(7.5rem + 5.3125rem);
    color: #fff;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.breadcrumb-header {
  background-image: url(../img/108357.webp);  
  background-size: cover;
  background-repeat: no-repeat;
   background-position: center;
}
.breadcrumb-header-carcass {
  background-image: url(../img/carcass.webp);  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb-header-shutter {
  background-image: url(../img/shutter.webp);  
  background-size: cover;
  background-repeat: no-repeat;
   background-position: center;
}
.breadcrumb-header.style-2, 
.breadcrumb-header-carcass.style-2, 
.breadcrumb-header-shutter.style-2 {
  padding: 7.5rem 0;
}
.breadcrumb-header .banner h1, 
.breadcrumb-header-carcass .banner h1, 
.breadcrumb-header-shutter .banner h1{
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.5rem, -1.0458rem + 8.1466vw, 4rem);
  margin-bottom: 1.875rem;
	position: relative;
	z-index: 5;
}
.breadcrumb-header .banner ul li, 
.breadcrumb-header-carcass .banner ul li,
.breadcrumb-header-shutter .banner ul li{
    display: inline-block;
    position: relative;
    margin-right: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1.875rem;
    color: #F9F9F9;
    text-transform: capitalize;
}

.breadcrumb-header .banner ul li:hover a, .breadcrumb-header-carcass .banner ul li:hover a{
    color: #F57009;
}
/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 4.375rem;
  position: relative;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 1.125rem;
  background-color: #F94834;
}

.phone-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}

.phone-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-label {
  font-size: 0.8rem;
  color: #999;
}

.phone-number {
  font-weight: 600;
  color: #333;
}

.get-in-touch {  
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 1.5625rem;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.get-in-touch::before {
  content: '☰';
  font-size: 1rem;
}

.get-in-touch:hover {  
  transform: translateY(-1px);
}
@media (max-width: 1024px){
	.contact-info::before {
		display: none;
	}
}

@media (max-width: 500px){
	.get-in-touch{
		display: none;
	}
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #734212;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 1000;
  top: 100%;
  left: 60%;
  transform: translateX(-50%);
  margin-top: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: #000 !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #000 !important;
}

.dropdown.show .dropdown-content {
  display: block;
  animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Arrow indicator for dropdown */
.dropdown > a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f078'; /* fa-chevron-down */
  font-size: 0.9rem;
  float: right;
  transition: transform 0.3s ease;  
  margin: 0 0 0 0.5rem;
}

.dropdown.show > a::after {
  transform: rotate(180deg);
}
/*Mobile drop-dwon*/
#blob-mobile {
  position: absolute;
  background-color: #D28F51;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 0;
  pointer-events: none;
  width: 100%;
  left: 0;
}
/* Dropdown Styles for Mobile */
.menu-item.dropdown {
  position: relative;
}

.menu-item.dropdown.show .dropdown-content {
  display: block;
  animation: slideDown 0.3s ease;
  position: relative;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}
.dropdown-toggle::after {
  border: 0;
}
/* Chevron indicator for mobile dropdown */
.menu-item.dropdown > a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f078'; /* fa-chevron-down */
  font-size: 0.8rem;
  margin : 0.5rem 0 0 0.5rem;
  float: right;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transform: translate(1px, 6px);
}
.menu-item.mdropdown.show > a::after {
  transform: rotate(180deg);
}
/* Sidebar Menu (Mobile) */
.sidebar__menu__button {
  visibility: hidden;
  position: relative;
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f2eeeb;
  border: none;
  border-radius: 25%;
  z-index: 101;
  margin-left: 1.25rem;
}

.sidebar__menu__wrapper__nav ul {
  position: relative; /* Ensure mobile blob is positioned relative to menu */
}

.sidebar__menu__wrapper__nav ul li#blob-mobile {
  position: absolute;
  background-color: #f58920;
  border-radius: 1.5625rem;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 0;
}

.sidebar__menu__button span {
	--transition-duration: 0.2s;
	display: block;
	width: 1.25rem;
	height: 2px;
	background: var(--clr-bg-menu-span);
	margin: 2px auto;
	transition: transform var(--transition-duration) 0s, margin var(--transition-duration) var(--transition-duration);
}

.sidebar__menu__button--open span {
	background: var(--clr-bg-menu-span--open);
	margin: -1px auto;
	transition: transform var(--transition-duration) var(--transition-duration), margin var(--transition-duration) 0s;
}

.sidebar__menu__button--open span:nth-child(1) {
	transform: rotate(45deg);
}

.sidebar__menu__button--open span:nth-child(2) {
	transform: rotate(45deg) scale(0);
}

.sidebar__menu__button--open span:nth-child(3) {
	transform: rotate(-45deg);
}

/*mobile menu*/
.menu-wrapper{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sidebar__menu__wrapper {
	--sidebar-transition: 0.4s;
	--menu-item-delay: 100ms;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	padding: 4rem;
	height: 100%;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	transition: 0.01s;
	transition-delay: calc(var(--sidebar-transition) * 2);
	z-index: 99;
	background-color: #f2eeeb;
	backdrop-filter: blur(10px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.sidebar__menu__wrapper__nav {
	z-index: 1;
}

.sidebar__menu__wrapper__nav > ul {
	list-style: none;
	padding: unset;
	margin: unset;
}

.sidebar__menu__wrapper__nav > ul > .menu-item {
	padding: 0;
	opacity: 0;
	transform: translatex(-3.125rem);
	transition: var(--sidebar-transition);
	transition-delay: 0s;
}

.sidebar__menu__wrapper__nav > ul > .menu-item > a {
	color: var(--clr-menu-link);
	text-decoration: none;
	font-size: clamp(2rem, -0.5rem + 4vw, 2.5rem);
	font-weight: 700;
}

.sidebar__menu__wrapper__nav > ul > .menu-item > a:hover {
	color: var(--clr-menu-link--hover);
}

.sidebar__menu__wrapper:before, .sidebar__menu__wrapper:after {
	transition-timing-function: cubic-bezier(0.56, 0.27, 0.34, 0.78);
	z-index: -1;
	height: 100%;
	min-height: 100vh;
}

.sidebar__menu__wrapper:before {
	content: "";
	position: absolute;
	left: 0px;
	top: -10px;
	width: 0%;
	height: 100%;
	background: var(--clr-primary);
	transition: var(--sidebar-transition);
	transition-delay: var(--sidebar-transition);
	opacity: 0.25;
}

.sidebar__menu__wrapper:after {
	content: "";
	position: absolute;
	left: 0px;
	top: 0;
	width: 0%;
	height: 100%;
	background: #f2eeeb;
	transition: var(--sidebar-transition);
	transition-delay: calc(var(--sidebar-transition) / 2);
}
.sidebar__menu__wrapper--open {
	pointer-events: auto;
	opacity: 1;
	transition: 0.01s;
	transition-delay: 0s;
	z-index: 10;
}
.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item {
	margin: 0 0 0.5rem 0;
	opacity: 1;
	transform: translatex(0px);
	transition: var(--sidebar-transition);
	transition-delay: calc(var(--sidebar-transition)/2);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(2) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay) * 1);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(3) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay) * 2);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(4) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay)* 3);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(5) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay)* 4);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(6) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay)* 5);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(7) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay)* 6);
}

.sidebar__menu__wrapper--open .sidebar__menu__wrapper__nav > ul > .menu-item:nth-child(8) {
	transition-delay: calc(var(--sidebar-transition)/2 + var(--menu-item-delay)* 7);
}

.sidebar__menu__wrapper--open:before {
	width: 100%;
	transition: var(--sidebar-transition);
	transition-delay: 0s;
}

.sidebar__menu__wrapper--open:after {
	width: 100%;
	transition: var(--sidebar-transition);
	transition-delay: calc(var(--sidebar-transition) / 2);
}

.sidebar__title {
	writing-mode: vertical-lr;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.25rem;
	color: var(--clr-sidebar-title);
}
/*right-side-bar-menu*/
.right-sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(0.9375rem);
    backdrop-filter: blur(0.9375rem);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
	z-index: 30;
	 /* CLS Prevention */
    will-change: transform;
    backface-visibility: hidden;
    contain: layout style paint;
}
.sidebar-content-wrap .contact-area {
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 2.8125rem;
    padding: 3.25rem 0 3.625rem;
}
.sidebar-logo-area {
    text-align: left;
    padding: 1.875rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-content-wrap {
    padding: 2.5rem 2.5rem;
}
.sidebar-bottom-area {
    padding: 1.0625rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}
.sidebar-bottom-area p{
     margin: 0 auto;
     font-size: 0.8rem;
}
.right-sidebar-close-btn {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s;
}
.right-sidebar-menu .right-sidebar-close-btn i {
    font-size: 1.625rem;
    line-height: 1;
    margin-top: 2px;
    color: #000;
    transition: 0.35s;
}
    
.right-sidebar-menu.show-right-menu .right-sidebar-menu-wrap {
    transform: translateX(0);
}
.right-sidebar-menu .right-sidebar-menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 34.375rem;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    transform: translateX(120%);
    transform-origin: right;
    transition: transform 0.5s ease-in;
    box-shadow: 0px 2px 1.25rem rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     /* CLS Prevention */
    will-change: transform;
    backface-visibility: hidden;
    contain: layout style paint;
}
.right-sidebar-menu.show-right-menu {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
.right-sidebar-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0.8125rem 1.25rem;
    background-color:#734212;
    border-radius: 200px;
    color: #fff;
}
.right-sidebar-menu .sidebar-content-wrap .contact-area li .single-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}
.right-sidebar-menu .sidebar-content-wrap .contact-area li .arrow {
    margin: 1.25rem 0 1.25rem 4.375rem;
    fill: rgba(203, 0, 0, 0.4);   
}
.single-contact .content{
	padding: 0;
}
.single-contact .content span {  
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1;
    color: #000;
    margin-bottom: 0.5rem;
    display: inline-block;
}
@media (max-width: 768px){
	.right-sidebar-button{
		display:none;
	}
}
/*watermark-logo*/
.circle-wrapper {
  position: absolute;
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
  right: 0;
  z-index: 1;
  bottom: 50%;
}

.circle-svg {
    width: 80%;
    height: 100%;
    font-size: 0.75rem;
    font-weight: bold;
    fill: #000;
    margin: 0 auto;
}

.rotating-text {
  animation: rotateCircle 10s linear infinite;
  transform-origin: center center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*hero-slider*/
.hero-slider {
  width: 100%;
  height: 43.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

.slide-bg-image{
    aspect-ratio: 16 / 9;
    width: 100%;
}

.swiper-pagination-horizontal{
	display: flex;	
	left: 50% !important;	
	border-radius: 3.125rem;
	padding: 0.45rem;
	justify-content: center;
	transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .hero-slider {
    height: 37.5rem;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 31.25rem;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 760px;
  position: absolute;
  left: 0;
  top: 0;
}

.swiper-container {
    width: 100%;
    height: 760px; /* Set your intended height */
    position: relative;
    overflow: hidden;
}

/* Prevent shift during initialization */
.swiper-container:not(.swiper-initialized) {
    height: 760px; /* Same as above */
    background-color: #f8f9fa; /* Optional loading background */
}

.hero-slider .slide-inner {
  width: 100%;
  height: 47.5rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 3.4375rem;
  height: 3.4375rem;
  line-height: 3.3125rem;
  margin-top: -1.875rem;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 3.4375rem;
  opacity: 0;
  top: unset;
  bottom: 6rem;
  visibility: hidden;
  transition: all 0.3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.hero-slider:hover .swiper-button-prev {
  right: 6.25rem;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  right: 9.375rem;
  left: unset;
  transform: translateX(3.125rem);
}
.hero-slider .swiper-button-prev:after {
  font-size: 0;
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 1rem;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 1.5625rem;
  transform: translateX(-3.125rem);
}
.hero-slider .swiper-button-next:after {
  font-size: 0;
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 1rem;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  text-align: left;
  line-height: 0.75rem;
  font-size: 0.75rem;
  color: #D28F51;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 1.5625rem !important;
}

.swiper-pagination {
  text-align: center;
  bottom: 5rem !important;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 9rem;
  max-width: 75rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 1.875rem;
  }
}
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 53.125rem;
  transition: all 0.4s ease;
}

@media (max-width: 991px) {
  .hero-style {
    height: 37.5rem;
  }
}

@media (max-width: 767px) {
  .hero-style {
    height: 31.25rem;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 5.9375rem;
  }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 35rem;
}

.hero-style .slide-title h2 {
  font-size: clamp(1.5rem, -0.0275rem + 4.888vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin: 0 0 2.5rem;
  text-transform: capitalize;
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 4.6875rem;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 3.125rem;
    margin: 0 0 2.1875rem;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 2.1875rem;
    margin: 0 0 1.875rem;
  }
}

.hero-style .slide-text p {
  opacity: 0.8;
  font-family: Raleway, sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 1.2px;
  color: #fff;
  margin: 0 0 40px;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 1rem;   
    font-weight: normal;
    margin: 0 0 1.875rem;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}

/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  background-color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #2b3b95;
  padding: 9px 32px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}
a {
  text-decoration: none;
  transition: all 0.2s ease;
}
.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
   background-color: #506f86;
  color: #fff;
}
.theme-btn-s3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}
i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}
a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 0.8125rem;
    padding: 0.9375rem 1.5625rem;
  }
}
@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 0.8125rem 1.25rem;
    font-size: 0.8125rem;
  }
}

.hero-slider {
  height: 80vh;
  overflow: hidden;
}
/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.slide-container .slide-row .slider-content{
        padding-left: 0px;
        padding-right: 0px;
	}
	    .slider-content .slide-heading {
        font-size: 40px;
    }
    .slider-content .slide-subtitle{
    	margin-bottom: 0.9375rem;
    }
}
.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #f55a2b;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* Combined selector for both navigation lists */
nav li:not(#blob):not(#blob-secondary) {
	padding: 0.75rem 1.25rem;
	z-index: 1;
}

/* Separate selectors for each blob for clarity */
#blob, 
#blob-secondary {
	position: absolute;
	background-color: #422100;
	color: #fff;
}
/*whoweare*/
.who-we-are {
  background: #f2eeeb;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: flex-start;
}

.left-col h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.left-col h2 span {
  color: #492908; /* red */
}

.right-col .headline {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.right-col hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #333;
}

.right-col .description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .columns {
    grid-template-columns: 1fr;
  }

  .left-col h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .right-col .headline {
    font-size: 1.25rem;
  }

  .right-col .description {
    font-size: 0.95rem;
    padding: 0.4rem
  }
  .overview-content{
    padding: 3rem 0 0 0;
  }

}
/*what we do */
:root{
  --transition: all 0.3s ease;
}

.btn-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/*why choose us*/
.why-us-section {
    background-color: #f2eeeb;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 6.25rem 0;
    position: relative;
    z-index: 1;
}
.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem 1.875rem;
}
.single-feature svg{    
    color: #492908;   
    background-color: #fff;
    border-radius: 50px;
    padding:  0.5rem;
}
   
.arrow-vector {
    fill: rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.section-title h2 {
    color: #000; 
    font-size: clamp(1.5rem, 0.2179rem + 5.7026vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}
.section-title.five h2 span {
    color: #734212;
    font-weight: 400;
}

.section-title.five > span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.5rem;
  height: 3px;
  background-color: #734212;
}
.section-title.five > span {
  position: relative;
  display: inline-block;
  padding-left: 3.125rem; /* space for the line */
  color: #734212;
}

@media (max-width: 1199px) {
    .why-us-section {
        padding: 3rem 0 0 0;
    }
	.feature-list {
        gap: 3.125rem 1.875rem;
    }
	
}
@media (max-width: 767px) {
    .why-us-section .feature-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.875rem;
    }
}
.home3-company-info-section .company-info-img-and-countdown-area {
    position: relative;
}
.number{
	display: flex;
	align-items: center;
	padding: 0.8125rem 0.9375rem 0.8125rem 1.25rem;
	border-right: 1px solid #fff;
}
.number h3{
	color: #fff;    
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 0;
}
.countdown-area > span {
    color: #fff;    
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25rem;
    display: block;
    padding: 8px 1.625rem 8px 1.25rem;
}
.countdown-area .number span {
    color: #fff;    
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 0;
}
.countdown-area {
    background-color: #734212;
    display: inline-flex;
    align-items: center;
    border-radius: 6.25rem;
    position: absolute;
    top: unset;
    left: 13%;
}
.video-description-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  top:8rem;
}
.video-icon {
  width: 3.75rem;
  height: 3.75rem;
  min-width: 3.75rem;
  border: 2px solid red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.video-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -10px;
  width: 1px;
  height: 80%;
  background-color: #ccc;
}
/* Modal Styles */
.video-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  padding: 1.25rem;
  border-radius: 8px;
}

.video-popup-content iframe {
  width: 100%;
  height: 28.125rem;
  border: none;
}

.video-popup-content .close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.75rem;
  color: white;
  cursor: pointer;
}
/*sections padding*/
#advantages-container {
	padding: 3rem 1.2rem;
	position: relative;
}

.wardrobe-icon{
  color: #D28F51;
}

.advantages-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	max-width: 75rem;
	margin: 0 auto;
}

.section-title2 {
	text-align: left;
	margin-bottom: 2.75rem;
	margin-top: 3.75rem;	
	margin: 2.75rem auto;
	max-width: 75rem;
	text-align: left;
}

.section-title2 h2 {
	font-size: 1.3125rem;
	padding: 6px 0;
	padding-left: 1.25rem;
	max-width: 1rem;
	border-left: 3px solid #363636;
	line-height: 1.15;
	display: inline-block;
	vertical-align: top;
	margin: 0;
	text-transform: uppercase;
}

/* Individual advantage card */
.advantage-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 1.875rem 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: start;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: var(--transition); 
  transition: var(--transition);
  border-radius: 1rem;
}

.advantage-card:hover .advantage-title,
.advantage-card:hover .advantage-description,
.advantage-card:hover a {
  color: #fff !important;
  font-weight: 500;
  fill: #fff !important;
  background: transparent !important;
  transition: var(--transition);
}
.advantage-card:hover {
  background: #734212;
  color: #fff !important;
  font-weight: 500;
  transition: var(--transition);
}

.advantage-card:hover i,
.advantage-card:hover svg{
  color: #734212;
  -webkit-transition: var(--transition); 
  transition: var(--transition);
}
.btn-outline {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #D28F51;
  border-radius: 2rem;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #D28F51;
  color: #fff;
}
/* Icon container */
.icon-container {
	width: 5rem;
	height: 5rem;
	background-color: #f8f8f8;
    color: #734212;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
  font-size: 2.2rem;
}
.icon-container i:hover{
  color: #000;
  background: #D28F51;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.contact-list .icon {
	width: 2.5rem;
	height: 2.5rem;
	fill: #8C6E5D;
  padding: 0 0 0 1rem;
}
:root{
  --transition: 500ms all ease;
}

.archx-fun-fact-section {
    padding: 45px 0px;
    background-color: #D28F51;
}
/* Heading for each advantage */
.advantage-title {
	font-size: 1.3rem;
	margin-bottom: 0.9375rem;
	color: #222;
}
.service-shape {
  top: -15px;
  right: -10px;   
  opacity: 1;
}

/* Description text */
.advantage-description {
  font-family: 'Raleway';;
	color: #000;
	font-weight: 500;
	line-height: 1.75;
	font-size: 1rem;
    text-align: left;
}

/*overview*/
.sub-title {
	color: #ff9800;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.overview-section .images-grid{
  height: auto
}

.overview-content h2 {
	color: #404040;
	font-size: clamp(1.5rem, -0.5rem + 4vw, 2.2rem);
	margin: 0.6rem 0 0.9375rem 0;
}
@media (max-width: 1000px) {
  .overview-content h2 {
       margin-top: 2rem;
  }
   .who-we-are {
	   padding: 0 0 1rem 0;
	}
  .section-padding {
		padding: 5rem 0 1rem 0;
	}

}

@media (max-width: 767px) {
  .section-padding {
		padding: 2rem 0 1rem 0;
	}
}

.overview-content p {
	margin: 0 0 0 0;
}

.overview-content .features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 16px;
	margin-left: -10px;
	margin-right: -10px;
}

.overview-content .features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 100%;
	/*max-width: 50%;*/
	margin-top: 1.125rem;
	padding-left: 10px;
	padding-right: 10px;
}

.overview-content .features-list li span {
	position: relative;
	z-index: 1;
	color: #030001;
	font-size: 1rem;
	font-weight: 400;
	display: block;
	padding: 0.8125rem 0.9375rem;
	border-radius: 5px;
	border-left: 2px solid #D28F51;
	background-color: #ffffff;
	-webkit-box-shadow: -1px 3px 1.25rem 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 1.25rem 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.overview-content .features-list li span::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 0;
    height: 100%;
    border-radius: 5px;
    background-color: #734212;
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@media (max-width: 768px) {
   .overview-content .features-list li {
   	flex: 0 0 100%; /* 1 column layout on smaller screens */
   	max-width: 100%;
   }

   .images-grid .image-item{
    display: none;
   }
   .image-item.large {
       display: block;
   }
}

.overview-content .features-list li span:hover {
   color: #fff;
}

.overview-content .features-list li span:hover::before {
   width: 100%;
}

.overview-image {
   text-align: center;
}
/*product-slider*/
.py-7{
	padding: 7rem 0 5rem 0;
}
@media (max-width: 1000px){
	.py-7 {
		padding: 3rem 0 0 0;
	}
}
.swiper-container-wrapper {
  overflow: hidden;
}
.overlay-image {
	display: flex;
	align-items: center;
	width: 100%;
	aspect-ratio: 400 / 250;
	border-radius: 10px;
	object-fit: cover;
	background: #fff;
	border: 3px solid white;
	box-shadow: 0 4px 0.9375rem rgba(0,0,0,0.3);
	margin-bottom: 0.9375rem;
}
/*popular*/
.machine-card{
  background-image: url('../img/108357-1.webp');
  background-size: contain;
}
.prod-btn{
	background: #fff;
}
.popular-machines .text-primary{
	font-size: 0.9rem;
	color: #D28F51 !important;
	position: relative;
  letter-spacing: 1.5px; 
}
.text-primary::before{
  display: inline-block;
  content: "";
  position: relative;
  bottom: 2px;
  transform: translateY(-50%);
  width: 35px;
  height: 3px;
  background-color: #D28F51;
  margin: 0 0.5rem 0 0.5rem;
}

.overlay p{
	margin: 0 0 0.2rem 0;
}
.machine-card {
  min-height: 30rem;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.machine-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  color: #fff;  
}
.machine-card .tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.8rem;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
}

/*Brands*/
#brand-logos {
   padding: 3rem 0;
}

.brand-swiper {
   padding: 1.875rem 0;
   background: transparent;
}

.brand-swiper .swiper-slide {
   width: auto !important;
   display: flex;
   justify-content: center;
   align-items: center;
}

.brand-swiper img {
   object-fit: contain;
}

.lazy-load {
    opacity: 0.8;
    filter: blur(2px);
    transition: all 300ms ease;
}

.lazy-load.loaded {
    opacity: 1;
    filter: blur(0);
}

.slide-bg-image {
    background-color: #f0f0f0;
    transition: opacity 300ms ease;
}

.brand-swiper::before,
.brand-swiper::after {
   content: '';
   position: absolute;
   top: 0;
   width: 6.25rem;
   height: 100%;
   z-index: 2;
   pointer-events: none;
}

.brand-swiper::before {
   left: 0;
   background: linear-gradient(to left, rgba(242, 238, 235, 0), rgb(242, 238, 235));
}

.brand-swiper::after {
   right: 0;
   background: linear-gradient(to right, rgba(242, 238, 235, 0), rgb(242, 238, 235));
}

.brand-swiper .swiper-wrapper {
   transition-timing-function: linear !important;
}

/* general styles */
:root {
   --clr-neutral-100: hsl(0, 0%, 100%);
   --clr-primary-100: hsl(205, 15%, 58%);
   --clr-primary-400: hsl(215, 25%, 27%);
   --clr-primary-800: hsl(217, 33%, 17%);
   --clr-primary-900: hsl(218, 33%, 9%);
}
/*about-page*/
#about{
	padding: 5rem 0 3rem 0;
}
.abt-container {           
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	align-items: center;
	margin-bottom: 3.75rem;
}

.images-grid {
	display: grid;
	grid-template-columns: 1fr;	
	max-width: 600px;
	height: 31.25rem;
}

.image-item {
	padding: 8px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
}

.image-item img {
	width: 100%;
	object-fit: cover;
	border-radius: 1rem;
	flex: 1;	
}

.image-item.large {
	grid-column: 2;
	grid-row: 1 / 3;
	height: 100%;
	position: relative;
	top: 1.5rem;
}

.image-item.large img {
	/*height: 70%;*/
	min-height: 17.5rem;
}

.image-item:not(.large) img {
	height: 100%;
}

.content {
	padding-left: 1.25rem;
}

.about-title {
	color: #6b7280;
	font-size: 16px;
	margin-bottom: 1.25rem;
	font-weight: normal;
}

.main-title {
	font-size: 3rem;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 1.875rem;
	line-height: 1.2;
}

.description {
	color: #000;
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 40px;  
}

.buttons {
	display: flex;
	gap: 1.25rem;
}

.btn {
	padding: 0.6rem 1.5625rem;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: #1f2937;
	color: white;
	border-radius: 3.125rem;
}
.btn-secondary {
	background-color: transparent;
	color: #1f2937;
	border: 2px solid #1f2937;
	border-radius: 3.125rem;
}

.image-text {           
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.9375rem;
	color: #fff;
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	border-radius: 12px;
	margin: 8px;
  background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.9375rem;
	align-items: center;
	justify-content: center;
	color: #030001;
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.stats-text {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* Simplified Counters Section */
.counters-section {
	padding: 5rem 2.25rem;			
	position: relative;
	overflow: hidden;
}

.counters-container {
	max-width: 75rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.counters-title {
	text-align: center;
	margin-bottom: 3.125rem;
}

.counters-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.9375rem;
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.counters-title p {
	font-size: 1.1rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.charts_orb {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
	gap: 1.25rem;
	align-items: stretch;
	justify-items: center;
}

.orb {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border-radius: 1.25rem;
	text-align: center;
	box-shadow: 
		0 10px 1.5625rem rgba(0, 0, 0, 0.08),
		0 4px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	max-width: 15.625rem;
	min-height: 13.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.875rem 1.25rem;
	position: relative;
	border: 1px solid rgba(226, 232, 240, 0.5);
}

.orb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;	
	border-radius: 1.25rem;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.orb:hover {
	transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 
		0 1.25rem 40px rgba(0, 0, 0, 0.12),
		0 8px 16px rgba(0, 0, 0, 0.08);
}

.orb:hover::before {
	opacity: 1;
}

.orb_graphic {
	margin-bottom: 0.9375rem;
	position: relative;
	z-index: 2;
}
.orb_graphic .svg-inline--fa {
 color: #734212;
 font-size: 1.8rem;
}

.orb_icon {
	font-size: 2.8rem;	
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.9375rem;
	transition: transform 0.3s ease;
}

.orb_value {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: -0.02em;
}

.orb_label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-top: 12px;
	position: relative;
	z-index: 2;
}

/* Counter Animation */
@keyframes countUp {
	from { transform: translateY(1.25rem); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.count {
	animation: countUp 0.6s ease-out;
}

		
/* Responsive Design */
@media (max-width: 1024px) {
	.charts_orb {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.125rem;
	}
	
	.counters-title h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 1024px) {
  .charts_orb > .orb:nth-child(4):last-child {
    grid-column: 2 / 3;
    justify-self: center;
  }
}
/* Mobile Responsive */
@media (max-width: 960px) {
	
	.images-grid {
		max-width: 100%;
		height: auto;
	}

	.images-grid .image-item {
        display: none;
    }
    
    
	.image-item.large {
        display: block !important;
        grid-column: 1;
    }


	.content {
		padding-left: 0;
		order: 1;
	}

	.main-title {
		font-size: 36px;
	}

	.buttons {
		flex-direction: column;
		gap: 0.9375rem;
	}

	.btn {
		text-align: center;
	}

	.counters-title h2 {
		font-size: 2.5rem;
	}
  
}

@media (max-width: 768px) {
  #about .abt-container {
    display: flex ;  
    flex-direction: column ;
  }
      #about{
    	padding: 1rem 0 1rem 0;
    }
	.counters-section {
		padding: 3.125rem 0.9375rem;
	}
	
	.charts_orb {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.9375rem;
	}
	
	.orb {
		min-height: 200px;
		padding: 1.5625rem 0.9375rem;
		max-width: none;
	}
	
	.orb_value {
		font-size: 2.2rem;
	}
	
	.orb_icon {
		font-size: 2.4rem;
	}
	
	.counters-title h2 {
		font-size: 2rem;
	}
	
	.counters-title p {
		font-size: 1rem;
	}
  .video-description-wrapper {
    display: none;
  }
  .image-item:not(.large) img {
    height: 350px;
    margin: 0 0 -4rem 0;
  }
 
}

@media (max-width: 620px) {
	.charts_orb {
    display: flex;
    flex-direction: column;   
   }
}

@media (max-width: 520px) {
	.charts_orb {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.orb {
		min-height: 180px;
		padding: 1.25rem 0.9375rem;
	}
	
	.orb_icon {
		font-size: 1.5rem;
	}
	
	.orb_value {
		font-size: 2rem;
	}
	
	.orb_label {
		font-size: 0.85rem;
		letter-spacing: 1px;
	}
	
	.counters-title {
		margin-bottom: 40px;
	}
	
	.counters-title h2 {
		font-size: 1.8rem;
	}
  
}

@media (max-width: 480px) {           
	.main-title {
		font-size: 1.75rem;
	}
 .overview-content{
    padding: 0.4rem;
  }

	.image-item.large {
		display: block;
		grid-column: 1;
	}

	.image-item.large img {
		height: 13rem;
       background-size: contain;
	}

	.counters-section {
		padding: 1rem 0.9375rem;
	}
  #about {
    padding: 1rem 0 1rem 0;
  }

	.counters-title h2 {
		font-size: 2rem;
	}	
}
/*values*/
.home2-benefit-section {    
    padding: 3rem 0;
}
.benefit-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: 140px;
}
.benefit-img-wrap {
    position: relative;
    z-index: 1;
    margin-left: 1.875rem;
}

.benefit-img{
  -webkit-clip-path: polygon(78% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(78% 0, 100% 18%, 100% 100%, 0 100%, 0 0);
}

.home2-benefit-section .benefit-img-wrap .benefit-img {
   
    position: relative;
    z-index: 2;
}
.benefit-list .number {
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    transition: 0.7s;
}
.single-benefit:hover .number{
	background: #734212;	
	transition: all 0.5s ease;
  border: 0;
}
.single-benefit:hover .number span{
	color: #fff !important;
	transition: all 0.5s ease;
}
.single-benefit {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 3.125rem;
}
.single-benefit .content p {
    color: #000;   
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5625rem;
    margin-bottom: 0px;
}
.benefit-list .single-benefit .number span {
    color: #000;  
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    transition: 0.5s;
}

@media (max-width:1199px){
	.benefit-list {
        margin-left: 0px;
    }
}

/*values*/
.values-section {
    padding: 4rem 2rem;  
    text-align: center;
}

.counters-title {
    margin-bottom: 3rem;
}

.counters-title h2 {
    font-size: clamp(1.5rem, -0.125rem + 3vw, 2.5rem);
    color: #333;
    font-weight: 700;
}

.value-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    font-size: clamp(1.2rem, -0.125rem + 3vw, 1.5rem);
    color: #f44336;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    flex-grow: 1; /* Ensures p tag stretches to fill available space */
}

/* Responsive adjustments */
@media (max-width: 768px) {   
    .value-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 560px) {
    .value-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 2rem 1rem;
    }   
}
/*counter*/
.count-section {
   max-width: 75rem;
   width: 92%;
   margin: -4.5rem auto 2rem auto;
   padding: 0.5rem;
   background-color: #fff;
   box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
   border-radius: 8px;
   position: relative;
   z-index: 9;
}

.count-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   text-align: center;
}

.count-item {
   flex: 1 1 22%;
   padding: 1.25rem;
   min-width: 200px;
   position: relative;
   transition: transform 0.3s ease;
}

.count-item:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 20%;
   height: 60%;
   width: 1px;
   border-right: 2px dotted #ccc;
}

.count-item:hover {
   transform: scale(1.05);
}

.count-number {
   font-size: 2.5rem;
   font-weight: normal;
   color: #1a1a1a;
   -webkit-text-fill-color: transparent;
   -webkit-text-stroke: 1px #000;
}

.count-label {
   font-size: 1rem;
   color: #444;
   margin-top: 8px;
}

/* Mobile: 480px and down */
@media (max-width: 480px) {
   .count-item {
   	flex: 1 1 100%;
   	margin-bottom: 1.25rem;
   }

   .count-item::after {
   	display: none;
   }
}

/*---------------------------
   8. Deal Product Area CSS
-----------------------------*/

/* Quote Section */
.write-section {    
  background-image: url(../img/108357.webp);
	background-repeat: repeat;
	background-attachment: fixed; 
	background-position: center center;
	background-size: contain;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 22rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
	padding: 3rem 0;
}
#write{
	padding: 3rem 0 3rem 0;
}
.write-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 0;
}

.write-section > * {
    position: relative;
    z-index: 1;
}

.write-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
	align-items: center;
    gap: 3.75rem;
    position: relative;
    z-index: 2;
}

/* Image Section */
.write-image {
    flex: 1;
    max-width: 31.25rem;
    position: relative;
}

.write-image img {
    width: 100%;
    height: auto;
    border-radius: 0.9375rem;   
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}


/* Content Section */
.write-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.875rem;
    padding: 40px 0;
}

.write-content h2 {
    font-size: clamp(1rem, 0.1518rem + 4.2411vw, 2rem);
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
}

/* Call-to-Action Button */
.mt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    background: white;
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3.125rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;    
    max-width: 200px;
	margin: 0 auto;
}



.parallax-title {
   font-size: 3.5rem;
   margin-bottom: 2rem;
}

/* Container for the entire component */
#whatsapp-container{
   z-index: 50;
   position: relative;
}

.whatsapp-container {
   position: fixed;
   bottom: 5.5rem;
   right: 1.5rem;
   z-index: 50;
   font-family: 'Arial', sans-serif;
}

/* Circular WhatsApp button */
.whatsapp-btn {
   width: 3.75rem;
   height: 3.75rem;
   background-color: #4DCB5B;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   position: relative;
   z-index: 1;
}

/* Chat menu/popup */
.chat-popup {
   position: absolute;
   bottom: 4.375rem;
   right: 0;
   width: 18.5rem;
   background-color: white;
   border-radius: 8px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   overflow: hidden;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s ease;
}

.chat-popup.show {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

/* Header of the popup */
.popup-header {
   background-color: #4DCB5B;
   color: white;
   padding: 1.5rem;
   display: flex;
   align-items: center;
   font-weight: 500;
}

.popup-header svg {
   width: 1.25rem;
   height: 1.25rem;
   fill: white;
   margin-right: 10px;
}

/* Agent option */
.agent-option {
   padding: 0.8rem;
   display: flex;
   align-items: center;
   cursor: pointer;
   transition: background-color 0.2s;
   color: #555;
   margin: 0.5rem 0.2rem;
   background: #f5f7f9;
   border-left: 2px solid #2db742;
   border-radius: 2px 4px 2px 4px;
   position: relative;
   width: calc(100% - 0.4rem);
   overflow: hidden;
   text-decoration: none;
}

.agent-option:hover {
   background-color: #f5f5f5;
}

/* User icon */
.user-icon {
   width: 1.25rem;
   height: 1.25rem;
   fill: #666;
   margin: 0.5rem;
}

/* Agent name */
.agent-name {
   font-weight: 500;
   font-size: 14px;
}

/* Select agent text */
.select-agent {
   padding: 12px 16px;
   color: #999;
   font-size: 14px;
   text-align: center;
   border-top: 1px solid #eee;
}

/* Chat arrow/pointer */
.chat-arrow {
   position: absolute;
   bottom: -10px;
   right: 1.5625rem;
   width: 1.25rem;
   height: 10px;
   overflow: hidden;
}

.chat-arrow:after {
   content: "";
   position: absolute;
   width: 10px;
   height: 10px;
   background: white;
   transform: translateY(-5px) rotate(45deg);
   top: 0;
   left: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Transition for the button icon */
.whatsapp-icon,
.close-icon {
   width: 1.875rem;
   height: 1.875rem;
   fill: white;
   transition: transform 0.5s ease;
}

/* Rotate on active */
.whatsapp-btn.active .whatsapp-icon {
   transform: rotate(180deg);	
   opacity: 0;
}

.whatsapp-btn.active .close-icon {
   transform: rotate(180deg);
   opacity: 1;
}

/* Close icon hidden by default */
.close-icon {
   position: absolute;
   transition: transform 0.5s ease, opacity 0.3s ease;
   opacity: 0;
   pointer-events: none;
}

/* Animate agent options */
.agent-option {
   opacity: 0;
   transform: translateY(10px);
   animation: fadeInUp 0.4s ease forwards;
}

/* Delayed appearance per index */
.agent-option:nth-child(2) {
   animation-delay: 0.2s;
}

.agent-option:nth-child(3) {
   animation-delay: 0.4s;
}

.agent-option:nth-child(4) {
   animation-delay: 0.6s;
}

.agent-option:nth-child(5) {
   animation-delay: 0.8s;
}

@keyframes fadeInUp {
   to {
   	opacity: 1;
   	transform: translateY(0);
   }
}

.wa__btn_popup_txt {
   background-color: #dfdfdf;
   border-radius: 4px;
   color: #43474e;
   font-size: 14px;
   letter-spacing: 0.015em;
   line-height: 1.5;
   margin-right: 7px;
   padding: 8px 12px;
   position: absolute;
   right: 100%;
   top: 50%;
   transform: translateY(-50%);
   transition: all 0.3s ease;
   width: 190px;
   opacity: 0;
   pointer-events: auto;
}
.whatsapp-btn:hover .wa__btn_popup_txt{
    opacity: 1;
    visibility: visible;
    transform: translateY(-18px);
}

.whatsapp-btn.active .wa__btn_popup_txt {
   opacity: 0;
   transform: translateY(0.9375rem);
   visibility: hidden;
   pointer-events: none;
}

.wa__btn_popup_txt{
   display: block; 
   left: unset; 
   right: 100%;
   margin-right: 7px; 
   margin-left: 0px; 
   width: 190px;
}

/*scroll-to-top*/
/* Scroll-to-Top */
.scroll-top {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top__circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-top__circle path {
  stroke: #D28F51;
  stroke-width: 8%;
  fill: none;
  transition: stroke-dashoffset 0.25s ease-out;
}

.scroll-top__icon {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  transition: transform 0.2s ease;
}
/*faq*/
@media (max-width: 768px) { 
    .faq-grid { 
        grid-template-columns: 1fr; 
    } 
    #what-container{
        padding: 0.5rem 0.5rem;
    }     
}
#faq{
	padding: 5rem 0 5rem 0;
}
.mb-70{
	margin: 0 0 4.375rem 0;
}
.pt-7{
	padding: 5rem 0 0 0;
}
  .faq-container {
		max-width: 1300px;
		margin: 0 auto;
		padding: 1.25rem;
	}
	.faq-img img {
		border-radius: 210px;
	}
	.section-title > span {
		color: #D28F51;		
		font-size: 14px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.03em;
		text-transform: uppercase;
		display: inline-block;
		margin-bottom: 10px;
		position: relative;
	}
	.faq-title {
		text-align: center;
		margin-bottom: 3rem;
		font-size: clamp(1.5rem, -0.125rem + 3vw, 2.5rem);
		color: #333;
	}

	.faq-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.accordion {
		background-color: white;
		border-radius: 8px;
		box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.1);
		margin-bottom: 0.9375rem;
		overflow: hidden;
	}

	.accordion-header {
		padding: 0.5rem;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: clamp(1rem, -0.125rem + 3vw, 1.1rem);      
		color: #450000;
		background-color: #f9f9f9;
		transition: background-color 0.3s ease;
	}
  .accordion-body{
    margin: 0.5rem;
  }
	.accordion-content {
		max-height: 0;
		overflow: hidden;
		padding: 0 0.9375rem;
		transition: max-height 0.3s ease-out, padding 0.3s ease-out;
		background-color: #fff;
	}

	.accordion-content p {
		padding: 0 0 1rem 0;
		color: #000;
	}

	.accordion.active .accordion-content {
		max-height: 31.25rem; 
		padding: 0.9375rem;
    background: #fff;
	}

	.accordion-icon {
		font-size: 0.8rem;
		transition: transform 0.3s ease-in-out;
		transform: rotate(0deg);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem; 
		height: 1.5rem;
	}

	.accordion.active .accordion-icon {
		transform: rotate(225deg);
	}

  .accordion-button:not(.collapsed) {
    color: #492908 !important;
    background-color: #fff !important;
    box-shadow: inset 0 calc(-1 * 1px) 0 #deeede;
}

.accordion-button:focus,
.accordion-header:focus,
.accordion-button:focus-visible,
.accordion-button:focus-within {
  outline: none !important;
  box-shadow: none !important;
}
/*Detail-view*/
.featured-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #000;
    transition: all 0.3s ease;
    gap: 5px;
}
.featured-list i {
    color: #D28f51;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.featured-list svg{
    color: #d28f51;
    margin: 0 1rem 0 0;
}

.material-title svg{
    color: #521d01;
}
.material-title{
    font-weight:500;
}

.lead-para{
    font-family: "Raleway";
    color: #000;
    font-weight: 400;
}
/*carcass-container*/
 .image-swatch-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: url(../img/products/carcass/cb.webp);
    background-size: contain;
    background-position: center;
}

.main-image.fade-out {
    opacity: 0;
    transform: scale(0.98);
}

.main-image.fade-in {
    opacity: 1;
    transform: scale(1);
}

.swatch-thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.swatch-thumb {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    background: #f8f9fa;
    transform: scale(1);
}

.swatch-thumb:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.swatch-thumb.active {
    border-color: #D28F51;
    opacity: 1;
    transform: scale(1.1);
}

.color-indicator {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.color-indicator.updating {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
    
    .swatch-thumb {
        width: 60px;
        height: 60px;
    }
}

.back-button {
  position: absolute;
  top: -50px; 
  left: 10px; 
  z-index: 10; 
  border-radius: 8px;
  padding: 8px 10px !important;
  background: #1f2937;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transform-style: preserve-3d;
  backface-visibility: hidden; 
  border-radius: 50px;
}

/* Ensure no CSS transitions interfere with GSAP */
.detail-view-container .back-button,
.detail-view-container .detail-image,
.detail-view-container .btn {
  transition: none;
}
/* Ensure container supports positioning */
.position-relative {
    position: relative;
}
.detail-view-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.back-button:hover {
  background: rgba(2, 32, 63, 0.2); 
  color: #fff;
  text-decoration: none;
}
.view-details:hover{
  background: #1f2937;
  color: #fff;
}

.back-button svg {
  transition: transform 0.3s ease;
}
.btn:hover{
  background: #1f2937;
}

section {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#detailed-view{
  padding: 3rem 0;
}
.detail-view{
  position: relative;
}
.section-divider {
  margin: 60px 0;
  border-top: 2px solid #e9ecef;
}
.productSwiper {
  display: grid;
}
.swiper {
  width: 100%;
  padding-bottom: 30px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.image-wrapper{
  display: flex;
  justify-content: center;
  margin: 0 auto;
  background: url(../img/products/carcass/cb.webp) no-repeat center;
  padding: 0.5rem;
  border-radius: 1rem;
}

.reflexSwiper .swiper-slide{
    height: 100%;
}
.card {
  display: flex;
  flex-direction: column;
  height: 72%; /* Fixed total height */
  width: 100%; 
  border-radius: 16px;
  overflow: hidden;
  border: none;  
}
.card-img-top {
  height: 26.25rem;
  /*object-fit: cover;*/
  flex-shrink: 0;
}
.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
  justify-content: space-between;
}
.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
  overflow: hidden;
}
.card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 0.5rem;
  min-height: 2rem;
}
.card-text {
  font-size: 0.95rem;
  color: #757575;
  margin-bottom: 1rem;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}
.view-details {
  border-radius: 50px;
  font-weight: 500;
  background-color: #1f2937;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  align-self: flex-start;
}
.swiper-button-next,
.swiper-button-prev {
  color: #d32f2f;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #dee2e6;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: #d4721a;
  transform: scale(1.2);
}

@media (max-width: 576px) {
  .card {
    height: 80%;
  }
  .card-img-top {
    height: auto;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .swiper-button-next::after, 
  .swiper-button-prev::after {
    font-size: 14px;
  }
}
/*modal*/
#products-container {
  padding: 3rem 3rem;
}
.product-title{
  font-size: 1.3125rem;
  padding: 6px 0;
  padding-left: 1.25rem;
  /* max-width: 1rem; */
  border-left: 3px solid #D28F51;
  line-height: 1.15;
  display: inline-block;
  vertical-align: top;
  margin: 1.75rem auto;
  text-transform: uppercase;
}
.brand-text {
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 2;
  font-family: "Raleway", sans-serif;
}
.img-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 300px);
	gap: 20px;
	margin-top: 50px;
}

.grid-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
	transform: translateY(0);  
}
/* Grid layout with row spans */
.grid-item:nth-child(1) {
	grid-row: span 2;
}

.grid-item:nth-child(4) {
	grid-row: span 1;
}

.grid-item:nth-child(3) {
	grid-row: span 1;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.grid-item:hover img {
	transform: scale(1.1);  
}

.grid-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
	opacity: 1;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 2;
}

.grid-item:hover .grid-content {
  transform: translateY(0);
  opacity: 1;
}

.grid-content h3 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: 300;
}

.grid-content p {
  font-size: 0.9em;
  line-height: 1.6;
  opacity: 0.9;
  color: #fff;
}

.grid-item:nth-child(1) .grid-content h3,
.grid-item:nth-child(4) .grid-content h3 {
  font-size: 1rem;
}

.grid-item:nth-child(1) .grid-content p,
.grid-item:nth-child(4) .grid-content p {
  font-size: 1rem;
}
.content-image h5{
  font-size: 1.2em;
  margin: 10px 0;
  color: #ebc203;
}

/* Enhanced Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  backdrop-filter: blur(10px);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  background: #222;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.8);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.modal.active .modal-content {
  transform: scale(1) translateX(0) translateY(0);
}

.modal-image {
  flex: 1;
  min-width: 45%;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modal-text-container {
  flex: 1;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #555 #2d2d2d;
}

.modal-text-container::-webkit-scrollbar {
  width: 8px;
}

.modal-text-container::-webkit-scrollbar-track {
  background: #2d2d2d;
}

.modal-text-container::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
		
.modal-text-container::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.modal-text {
    padding: 60px;
}

.modal-text h2 {
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.modal-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

.content-section {
  margin-bottom: 40px;
}
.content-section h3, .content-section h4 {
	font-size: 1.8em;
	margin-bottom: 20px;
	font-weight: 300;
	color: #fff;
}

.content-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.content-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.content-image:hover img {
	transform: scale(1.05);
}

.content-image-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: #fff;
	padding: 15px;
	font-size: 0.9em;
}

.close-btn1 {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 1);
	border: none;
	border-radius: 50%;
	color: #ff0074;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-btn1:hover {
	background: rgba(255, 255, 255, 1);
	transform: rotate(90deg);
	color: #ff0074;
}

.grid-item {
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 0.8s ease forwards;
}

.grid-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (max-width: 960px) {
	.modal-content {
		flex-direction: column;
		max-width: 98vw;
		max-height: 98vh;
	}
	.modal-image {
		min-width: 100%;
		height: 40%;
	}
	.modal-text-container {
		height: 60%;
	}
	.modal-text {
		padding: 40px;
	}
  
	.content-images {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.img-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 250px);
	}
	.grid-item:nth-child(1) {
		grid-row: span 2;
	}
	.grid-item:nth-child(4) {
		grid-row: span 1;
	}
	.grid-item:nth-child(3) {
		grid-row: span 1;
	}
   
	.modal-text {
		padding: 30px;
	}	
	.close-btn {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
  #products-container{
    padding: 0;
  }
}

@media (max-width: 480px) {
	.img-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(5, 200px);
	}
	.grid-item:nth-child(1),
	.grid-item:nth-child(4),
	.grid-item:nth-child(5) {
		grid-row: span 1;
	}
	.modal-text {
		padding: 20px;
	}
	.modal-text h2 {
		font-size: 1.8em;
	}
	.modal-image {
		height: 30%;
	}
	.modal-text-container {
		height: 70%;
	}
}

body.modal-open {
	overflow: hidden;
}
/*Products-card*/
  /* ========== Keyframes ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#products{
  padding: 3rem 0;
}

.product-heading{
  padding: 6px 0;
  padding-left: 1.25rem;
  border-left: 3px solid #D28F51;
  line-height: 1.15;
  display: inline-block;
  vertical-align: top;
  margin: 2rem auto;
  text-transform: uppercase
}
/* ========== Selected Product Section ========== */
.selected-product {
  display: none;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.selected-product.active {
  display: flex;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

/* Animate sub-elements when active */
.selected-product.active .product-title,
.selected-product.active .product-description,
.selected-product.active .product-highlights li,
.selected-product.active .product-image,
.selected-product.active .product-info {
  animation: fadeUp 0.6s ease forwards;
}

/* Delays for staggered effect */

/* Base state for animation targets */
.product-title,
.product-description,
.product-highlights li,
.product-image,
.product-info {
  opacity: 0;
  transform: translateY(20px);
}

/* ========== Layout Styles ========== */
.product-image {
  flex: 1 1 210px;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  width: 20rem;  
  height: 11.875rem;
  border-radius: 0.75rem;
  /*object-fit: cover;*/
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-info {
  flex: 1 1 auto;
}

/* ========== Typography ========== */
.product-title {
  margin-top: 0;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #222;
}

.product-description {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-highlights {
  margin: 0;
  padding-left: 1rem;
  color: #555;
}

.product-highlights li {
  margin-bottom: 0.5rem;
}

/* ========== Product Grid ========== */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .selected-product {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Product Card Styles ========== */
.grid-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
}

.grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.grid-card.active {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.15);
  border-color: #D28F51;
}

.grid-card img {
  max-width: 100%;
  height: 20rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.grid-card h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.product-highlights svg{
  color: #D28F51;
}

/*contact*/
@media (max-width: 1399px) {
    .contact-form-wrap {
      padding: 1rem;
    }
}
@media (max-width: 991px) {
  .contact-wrapper {
    padding: 70px 40px;
  }

  .contact-form-wrap.two {
    margin-left: 0;
  }

  .contact-map-section iframe {
    min-height: 31.25rem;        
  }

  .contact-page-address-section .address-list .single-address {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .inner-contact-section .contact-content .contact-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.75rem;
  }
  .inner-contact-section .contact-content .contact-list .single-contact {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .contact-wrapper {
    padding: 3.75rem 1.25rem;
    border-radius: 1.25rem;
  }
}

@media (max-width: 1199px) {
  .contact-page-address-section h6 {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 768px) {
  .inner-contact-section .contact-content .contact-list {
    gap: 1.825rem ; 
  }
  .inner-contact-section .arrow-vector {
    display: none;
  }
}
@media (max-width: 576px) {
  .contact-wrapper {
    padding: 0!important;
  }
}
.inner-contact-section .contact-content .contact-list .single-contact .icon svg::after {
  content: "";
  height: 35px;
  width: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  background-color: rgba(0, 0, 0, 0.15);
}
.inner-contact-section .contact-content .contact-list .single-contact .icon svg {
  fill: #FB521E;
}
.address-list{
	padding: 0;
}
.contact-wrapper {
  background: #fff;;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 85px 3.125rem 85px 75px;
  border-radius: 1.875rem;
}
.contact-page-address-section h6 a {
  color: #cb0000;    
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(to bottom, #cb0000 0%, #cb0000 98%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 100%;
  transition: background-size 0.75s;
}
.contact-page-address-section .address-list .single-address {
  max-width: 195px;
  width: 100%;
  padding-bottom: 40px;
  position: relative;
}
.single-address::before {
    content: "Click to view on Google Maps";
    position: absolute;
    bottom: 108%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.single-address::after {
    content: "";
    position: absolute;
    bottom: 103%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.single-address:hover::before,
.single-address:hover::after {
    opacity: 1;
    visibility: visible;
}

.contact-page-address-section .address-list .single-address span {
  color: #000;   
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: underline;
  display: block;
  margin-bottom: 1.25rem;
}
.contact-map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  /*filter: invert(1) hue-rotate(180deg) brightness(0.9) grayscale(0.1); */   
}
.section-title.two span {
  color: #000;
  font-size: 12px;
  padding: 10px 17px;
  background-color: rgba(0, 0, 0, 0.05);
}
.form-inner {
    line-height: 1;
}
.form-inner label {
  color: #000;  
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  margin-bottom: 12px;
}

.inner-contact-section .section-title span svg {
    fill: #fb521e;
}
.form-inner input {
    width: 100%;
    background: transparent;
    color: #000;    
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 1.25rem;
    height: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.form-inner textarea {
    width: 100%;
    border-radius: 5px;
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.3);
    outline: none;
    font-size: 16px;
    font-weight: 500;
    padding: 1.25rem 1.5625rem;
    min-height: 10rem;
    resize: none;
}
.primary-btn4 .arrow {
    fill: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 3px;
    right: 3px;
    transition: 0.5s;
}

/* Clean loading button implementation */
#submitButton {
  position: relative;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background-color: #734212;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px; /* Prevents button from shrinking during loading */
  height: 44px; /* Fixed height */
}

#submitButton:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Button text */
#submitButton .btn-text {
  transition: opacity 0.2s ease;
}

/* Spinner - initially hidden */
#submitButton .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Loading state */
#submitButton.loading .btn-text {
  display: none; /* Completely hide text */
}

#submitButton.loading .spinner {
  display: inline-block; /* Show spinner */
}

/* Spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Optional: Pulsing effect during loading */
#submitButton.loading {
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    background-color: #e2802f;
  }
  to {
    background-color: #d4721a;
  }
}



.inner-contact-section .section-title span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6.25rem;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 23px;
}
.section-title.two span {
    color: #734212;
    font-size: 12px;
    padding: 10px 17px;
    background-color: rgba(0, 0, 0, 0.05);
}

.inner-contact-section .arrow-vector {
    fill: rgba(var(--black-color-opc), 0.2);
    margin-left: 68px;
    margin-bottom: 90px;
}
.inner-contact-section .contact-content .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.inner-contact-section .contact-content .contact-list .single-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.125rem;
}
.inner-contact-section .contact-content .contact-list .single-contact:last-child {
    margin-bottom: 0;
}
.inner-contact-section .section-title {
    margin-bottom: 5rem;
}
.contact-form-wrap {
  padding: 1rem 1.125rem;
  background-color: #FFF;
  border-radius: 1.25rem;
  margin-left: 3.125rem;
}

.contact-form-wrap button {
  margin-top: 40px;
}
.error-message {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error,
textarea.error {
    border: 2px solid #d32f2f !important;
}

input.valid,
textarea.valid {
    border: 2px solid #2e7d32 !important;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.form-message.error {
    background-color: #ffebee;
    color: #d32f2f;
}


/*FOOTER*/
.footer{  
  background-image: url(../img/108357-1.webp);
  background-position: center;
  background-size: contain;  
  padding: 20px 40px;
  text-align: left;
  z-index: 1;
  overflow: hidden;
}

.th-widget-contact i {
   vertical-align: middle;
   width: 1.25rem;
   margin-right: 8px;
}
.list-social__item {
	display: inline-block;
    margin: 0 0.3rem 0 0;
}

.list-social__link {
color: #fff;
background-color: #5a6f47;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}

.list-social__link i {
  font-size: 14px;
} 

.footer-menu{
  color: #fff;
	padding: 0;
}

.footer-menu li {
   margin-bottom: 10px;
}

.widget-area {
   padding: 6.875rem 0 3.375rem 0;  
}

.footer-info {
   margin-bottom: 10px;
}

.footer-widget {
    color: #fff;
    margin-bottom: 3.125rem;
}

.about-logo{
   max-width:16rem;
   margin: -1rem 0 1rem -1.4rem;	
}

.about-text {
   font-size: 1.125rem;
   max-width: 21.0625rem;
   margin-bottom: 10px;
}

.footer-layout2 .footer-widget.widget_nav_menu a {
   margin-bottom: 11px;
}

.footer-menu li a{
   margin: 0 0 0.7rem 0;
}

.widget_title {
   position: relative;
   font-size: 1.5rem;
   font-weight: 600;
   line-height: 2.125rem;
   font-family: var(--title-font);
   line-height: 1em;
   margin: -0.12em 0 1.75rem 0;
}

.footer-widget .widget_title:after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   border-top: none;
   height: 3px;
   width: 7.0625rem;
   background-color: transparent;
   background-image: -webkit-linear-gradient(left, #FF7A5F, transparent);
   background-image: linear-gradient(to right, #FF7A5F, transparent);
}

.footer-menu li a:before {
   content: "\f061";
   position: absolute;
   font-weight: 600;
   left: 0;
   top: 2px;   
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   transform: translateY(0);
   font-size: 0.9em;
   background-color: transparent;
   border: none;
   color: #fff;
   -webkit-clip-path: none;
   clip-path: none;
}

.footer-widget .widget_title {
   max-width: 270px;
   color: #fff;
   margin: -0.11em 0 1.875rem 0;
   padding: 0 0 1.125rem 0;   
}

.footer-info {
   display: block;     
   margin-top: -0.4rem;  
}

.footer-info:not(:last-child) {
   margin-top: 0;
   margin-bottom: 10px
}

.footer-info_title {
   font-size: 1.125rem;
   color: #fff;
   display: block;
   margin-bottom: 7px
}

.footer-info_icon {
   width: 1.625rem;
   height: 1.625rem;
   min-width: 1.625rem;
   line-height: 1.625rem;
   font-size: 14px;
   background-color: var(--theme-color);
   color: #fff;
   text-align: center;
   border-radius: 5px;
   gap: 8px;
   margin-right: 10px
}

.footer-info_text {
   display: block;
   color: var(--body-color);
   margin-top: -0.45em;
   margin-bottom: -0.45em;
   -webkit-align-self: center;
   -ms-flex-item-align: center;
   align-self: center
}

.footer-info .fas {
   display: inline-block;
   color: var(--theme-color);
   position: absolute;
   top: 10px;
   left: 0;
   font-size: 12px
}

.footer-info_link {
   display: inline-block;
   color: var(--body-color)
}


#footer-year {
   display: flex;
   justify-content: center;
   color: #330202;
   background: #fff;
   min-height: 3rem;
   align-items: center;
   box-shadow: rgba(0, 0, 0, 0.18) 0px 0px 2px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) and (orientation: landscape) {
   .sidebar__menu__wrapper {
   	overflow-y: auto;
   	-webkit-overflow-scrolling: touch;       
   }

   .sidebar__menu__wrapper__nav {
   	width: 100%;
   }

   .sidebar__menu__wrapper__nav > ul {
   	padding: 1rem;
   	margin: 0 auto;
   	width: 100%;
   	display: flex;
   	flex-direction: column;
   	justify-content: center;
   	align-items: center;
   }

   .sidebar__menu__wrapper__nav > ul > .menu-item {
   	margin: 1rem 0;
   }
   
   .menu-item > a {		
   	font-size: clamp(1.5rem, -0.5rem + 4vw, 2.5rem) !important;		
   }
}

@media (max-width: 768px) {
   .wrapper{
   	display: flex;
   	flex-direction: column-reverse;	
   }
   
   .advantages-container {
   	grid-template-columns: repeat(2, 1fr);
   }
   
   .hero__swiper--right {
   	padding: 1.5rem;
   	position: relative;
   }
   
   .count-item {
   	flex: 1 1 45%;
   	margin-bottom: 1.25rem;
   }
   
   .count-section{
   	position: relative;
   	bottom: 0;
   }

  .parallax-title {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
  
  .write-container {
	  flex-direction: column;
  }
   
}
@media (max-width: 576px) {
   .advantages-container {
   	grid-template-columns: 1fr;
   }
}

@media (max-width: 960px) {
   /* Show menu button on mobile */
   .sidebar__menu__button {      
   	visibility: visible;
   	display: flex;
   }

   /* Hide the regular navigation on mobile */
   .header nav ul {
   	display: none;
   }

   /* Make sure logo stays on the left */
   .logo {
   	flex-grow: 1;
   }
   
   .wrapper {
   	max-width: 100%;
   }
}
@media (max-width: 375px) {
   .chat-container {
   	left: 5px;
   	right: 5px;
   	padding: 8px;
   	gap: 8px;
   	font-size: 0.8125rem;
   }

   .agent-option {
   	font-size: 0.8125rem;
   	padding: 6px 8px;
   }

   .user-icon {
   	width: 1.125rem;
   	height: 1.125rem;
   }
}
