/* Jost Font*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');



*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: "Marcellus", serif;
  font-family: "Jost", Arial, Helvetica, sans-serif;

  font-weight:400;
}

html {
  scroll-padding-top:1rem;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:1rem;
}

ul li {
    list-style: none;
}

a {
    color:var(--darkgrayColor);
    text-decoration: none;
}

:root {
  --whiteColor: #ffffff;
  --lightgrayColor: #f5f5f5;
  --dimwhiteColor: #cac6c6;
  --redColor: #d40505;
  --greenColor: #006400;
  --darkgrayColor: #222222;
  --grayColor: rgb(88, 87, 87);
  --blueColor:rgb(74, 74, 199);
  --boxShadow: 0 .5rem .5rem 0 rgba(0,0,0,0.2);
  --boxShadow2: 0 .5rem .5rem .5rem rgba(0,0,0,0.1);
  --animate-duration: 2s;
	--blackColor: rgb(0, 0, 0);
	--darkgrayColor: #222222;
	--grayColor: rgb(88, 87, 87);
	--main_blue_Color:#003C7E;
  --lightblueColor:#e4f3f4;
	--orangeColor:#ff7d3b;
  --orangeColor:#FFA500;
  --limegrayColor:#e7ebf0;
  --formgrayColor:#F3F3F3;
  --greenColor-rgb: 34, 197, 94;  /* Adjust to match your green */
  --orangeColor-rgb: 255, 87, 34; /* Adjust to match your orange */
}

body {
  background:#f8f9fa;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef4f9 100%);
	min-height: 100vh;
}


::-webkit-scrollbar {
    width:10px;
}
::-webkit-scrollbar-thumb {
    background:var(--formgrayColor);
    border-radius:5px;
}
::-webkit-scrollbar-track {
    background:var(--whiteColor);
}
.container {
    padding:40px;
    max-width: 1500px;
    margin:0 auto;
}
@media (max-width: 768px) {
  .container {
    padding:1rem;
}
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orangeColor);
  z-index: 9999;
  transition: width 0.4s ease-out;
}
/* Context for relative positioning */
label {
  position: relative;
}

/* Base styles for both types of inputs */
input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  background: #fff;
  border: 1.5px solid #777;
  height: 1em;
  width: 1em;
  border-radius: 100%;
  vertical-align: middle;
  position: relative;
}
input[type="radio"] {
  vertical-align: text-top;
}
/* Remove the circular shape from checkboxes */
input[type="checkbox"] {
  border-radius: 0;
}

/* Styles for the pseudo-elements */
input[type="radio"]::before,
input[type="checkbox"]::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  top:0;
}

/* Center of the checked radio button */
input[type="radio"]:checked::before {
  border: 2px solid transparent;
  border-radius: 100%;
  background: var(--orangeColor);
  margin:1px;
}

/* The checkmark shape */
input[type="checkbox"]:checked::before {
  border-right: 2px solid var(--orangeColor);
  border-bottom: 3px solid var(--orangeColor);
  height: 110%;
  width: 30%;
  transform: rotate(50deg) translateY(-20%) translateX(-10%);
}

/* Some focus styles for accessibility */
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: solid 1px;
  outline-offset: 1px;
}
#back-to-top-btn {
  position: fixed;
  bottom:7px;
  right:15px;
  background-color: var(--orangeColor);
  color:var(--whiteColor);
  padding:5px 12px;
  font-size:12px;
  text-align: center;
  z-index: 500;
  cursor:pointer;
  display: none;
  border-radius:5px;
}
#back-to-top-btn:hover {
  background-color: var(--greenColor);
}

.main_heading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding:20px 0;
}

.dot-pattern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.dot-pattern .dot {
  width: 7px;
  height: 7px;
  background-color: #FFA500;
  border-radius: 50%;
}

.heading-text {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
@media (max-width: 500px) {
  .heading-text {
    font-size: 20px;
}
}
.sub-headline {
  font-size:17px;
  font-weight: 600;
  text-transform: uppercase;
  color:var(--orangeColor);
  text-align: center;
  padding:10px;
  padding-bottom:2px;
}
/* notifications popup */
.notify-popup {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  visibility: hidden;
  left: 50%;
  transform:translate(-50%, 70px);
  width: 100%;
  min-width: fit-content;
  max-height: fit-content;
  min-height: fit-content;
  background-color: var(--orangeColor);
  color: #00000099;
  border: 1px solid #94310099;
  border-radius:2px;
  gap: 40px;
  padding: 12px;
  z-index: 4000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, z-index 0s linear 0.3s;
}

.notify-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; 
  z-index: 3000;
  transform:translate(-50%, 0px);
}
.notify-popup p {
  color: #ffffff;
  font-size:16px;
  font-weight:500;
}
.notify-popup p,
.notify-popup .notification-close,
.notify-popup i {
  color: #ffffff;
}

.notify-popup .notification-close {
  width:auto;
  height: auto;
  border-radius:50%;
  font-size:20px;
  padding:3px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
.notify-popup {
  padding: 18px 10px;
  width: 100%;
  border-radius:0px;
}
.notify-popup p {
  font-size:14px;
  font-weight:700;
}
}

.whatsapp-button {
	position:fixed;
	bottom:54px;
	right:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width:50px;
  height:50px;
	padding:3px;
	background:var(--greenColor);
	border-radius:50%;
	z-index:500;
	box-shadow: 0 5px 5px 5px rgba(2, 245, 79, 0.1);
  animation: greenpulsing 2s infinite;
}
.whatsapp-button .fa-whatsapp {
	font-size:24px;
	color:var(--whiteColor);
}
.whatsapp-button:hover {
	background:var(--blackColor);
	color:var(--whiteColor); 
	border-radius:50%;
	transform: scale(1.1);
}
.whatsapp-button:hover .fa-whatsapp {
	color:var(--redColor);
}
/* Home styling starts */
 .service-details-hero-wrap::after,
 .blog-details-hero-wrap::after,
 .about-hero-wrap::after,
 .contact-hero-wrap::after,
 .blog-hero-wrap::after,
 .services-hero-wrap::after,
 .blogpage-hero-wrap::after,
 .services-bg3::after,
 .project-bg3::after,
 .projects-hero-wrap::after,
 .project-details-hero-wrap::after,
 .cars-hero-wrap::after,
 .car_details-hero-wrap::after,
 .team-hero-wrap::after,
 .about-bg3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.breadcrumb-animate {
  position: absolute;
  z-index: 100;
  bottom:100px;
  left:70px;
  color:var(--whiteColor);
  font-size:18px;
 }

 .breadcrumbs {
  text-transform: uppercase;
  font-size: 14px;
  color:var(--whiteColor);
  padding:10px 20px;
  opacity: 70%;
 }

.bread {
  font-size: 44px;
  color:var(--whiteColor);
  line-height: 46px;
  padding:5px 20px;
  
}
.chevron {
  font-size: 14px;
  padding:0 3px;
  color:var(--whiteColor)
}
.home-page a{
  color:var(--whiteColor);
  font-weight:700;
}
.home-page a:hover {
  color:var(--orangeColor);
}
 
 .icon-wrap {
  position: relative;
  display:flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  padding:20px;
 }

 .welcome-note .heading-title {
  text-align: center;
	font-size: 16px;
  color:var(--whiteColor);
 }
 
/* Benefits styling starts */
 .benefits-grid {
  display: grid;
  max-width:1200px;
  margin:0 auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 10px;
  perspective: 1000px;
  padding:20px;
}
.benefit-card {
  padding:10px 15px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 4px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height:3px;
  background: var(--orangeColor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.icon-container {
  width: 40px;
  height: 40px;
 
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .icon-container {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-icon {
  font-size: 30px;
  color: var(--orangeColor);
}
.benefit-icon .carbon-footprint {
  color: var(--greenColor);
}
.benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color:var(--blackColor);
}
.benefit-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grayColor);
  margin-bottom: 10px;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background:var(--orangeColor);
  border-radius: 50%;
  transform: translate(50%, 50%);
  z-index: 0;
  animation: orangepulsing 2s infinite;
}
.benefit-card.card_2::after {
  background:var(--greenColor);
  animation: greenpulsing 2s infinite;
}
@media (max-width: 768px) {
  .benefits-grid {
    gap: 20px;
  }
  .benefit-card {
    padding: 20px;
  }
  .benefit-title {
    font-size:22px;
  }
  .benefit-description {
    font-size: 15px;
  }
}

.home-about-section {
  margin: 50px 0;
  background: var(--whiteColor);
}
.home-about-img {
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%,0 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height:100%;
}
.home-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-about-body {
  padding: 20px 0;
}

.home-about-subheading {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orangeColor);
  margin-bottom: 16px;
}

.home-about-heading {
  font-size: 34px;
  font-weight: 700;
  color: var(--blackColor);
  margin-bottom: 22px;
  line-height: 1.2;
}

.body-text {
  font-size: 16px;
  line-height: 30px;
  color: var(--darkgrayColor);
  margin-bottom:24px;
}

.button, .orange_button {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 16px 32px;
  background: var(--greenColor);
  color: var(--whiteColor);
  text-decoration: none;
  border-radius: 1px;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 0 0 0 rgba(var(--greenColor-rgb), 0.5);
  z-index:20;
}
.button::after, .orange_button::after{
  content:"";
  position: absolute;
  left:0;
  bottom:0;
  width:0;
  height:100%;
  background:rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
  z-index:-1;
  transition: 0.3s ease-in-out;
}

.button:hover::after, .orange_button:hover::after {
  width:100%;
  box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
}

.button-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
  transform: translateY(30px);
  display:none;
}
.button-chevron {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.button:hover .button-arrow, .orange_button:hover .button-arrow {
  transform: translateY(0);
  opacity:1;
}
.button:hover .button-chevron, .orange_button:hover .button-chevron {
  transform: translateX(4px);
}
.orange_button {
  animation: none;
  background:var(--orangeColor);
  box-shadow: 0 0 0 0 rgba(var(--orangeColor-rgb), 0.5);
}

@keyframes greenpulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--greenColor-rgb), 0.8);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--greenColor-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--greenColor-rgb), 0);
  }
 
}

@keyframes orangepulsing {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--orangeColor-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--orangeColor-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--orangeColor-rgb), 0);
  }
 
}

@media (max-width: 768px) {
  .home-about-section {
    margin: 20px 0;
    margin-bottom:2px;
  }
  .home-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-about-img {
    height: 300px;
  }

  .home-about-heading {
    font-size: 32px;
  }
}


/*Counter styling here */
.counter-container-row {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
 
}
.counter {
 
  padding:50px 0;
 
}

.counter-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-icon-container .counter-icon {
  font-size:25px;
  color:var(--greenColor);
  padding-bottom:10px;
}

.counter-items {
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  gap:15px;
  font-size:18px;
}
.counter-items .number {
  font-size:21px;
  color:var(--blackColor);
}

.counter-items .plus-superscript {
  vertical-align: top;
  font-size:24px;
  color:var(--orangeColor);
  font-weight: 400;
}

.counter-items span {
  font-size:15px;
  color:var(--grayColor);
}

@media (max-width: 768px) {
.counter-container-row {
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.counter {
  padding-top:30px;
  padding-bottom:30px;
}

}
@media (max-width: 320px) {
.counter-container-row {
  grid-template-columns: 100%;
  gap:5px;
}
.counter {
  padding-top:20px;
  padding-bottom:20px;
}
}
/*Counter styling ENDS here */

 /* Header Styling Starts */
.header-section {
  display: block;
  top:0;
  left:0;
  width:100%;
  z-index:2000;
}
.header_top {
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap:15px;
  align-items: center;
  padding:8px 25px;
  background:var(--blackColor);
  color:var(--whiteColor);
}
 .header__top__items {
  display:flex;
  gap:10px;
  align-items:center;
  justify-content: flex-start;
}
.header__top__items .header-contact-icon {
  color:var(--whiteColor);
  font-size:17px;
} 

.header__top__items .subheading-title {
  color:var(--whiteColor);
  font-size:14px;
  line-height: 20px;
  font-weight:300;
}
@media (max-width: 768px) {
  .header__top__items {
    gap:5px;
  }
  .header__top__items.location {
    display:none;
  }
}
/*main header */
.header {
  display:flex;
  justify-content: space-between;
  gap:20px;
  align-items: center;
  width:100%;
  z-index: 2000;
  background:var(--whiteColor);
  padding:0 20px;
}
.header.sticky {
  position: fixed;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}
.logo-img {
  width:180px;
}
.nav ul {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  gap:5px;
  padding-right:30px;
}

.nav-item .nav-link {
  color:var(--blackColor);
  font-size: 16px;
  padding:8px 16px;
  font-weight: 700;
  position: relative;
  z-index:20;
}
.nav-item .nav-link .chevron {
  display:none;
}

.nav-item .nav-link.utility-item {
  padding:2px 16px;
  padding-right:6px;
}
.nav-item .nav-link::after {
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:100%;
  height:0;
  background:var(--orangeColor);
  opacity:0;
  transition: 0.3s ease-in-out;
  z-index:-1;
}
.nav-item .nav-link:hover::after {
  opacity:1;
  height:100%;
}
.nav-item .nav-link.utility-item:hover::after {
  opacity:0;
}
.nav-item .nav-link.active {
  color:var(--whiteColor);
}
.nav-item .nav-link.active::after {
  opacity:1;
  height:100%;
}
.nav-item .nav-link:hover {
  color:var(--whiteColor);
}
.menubars, .menuclosebtn {
  display:none;
}
.header .nav-item .utility-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.header .nav-item .utility-item .shopping-bag {
  font-size: 22px;
  color:var(--blackColor);
}
.header .nav-item .utility-item .qty {
  position: absolute;
  top: -12px;
  right: -12px;
  color: var(--whiteColor);
  font-size: 11px;
  font-weight: 500;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orangeColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-item .utility-item .qty > span {
  font-size: 11px;
}
/* Dropdown Styling */
.dropdown {
  position: relative;
}
.dropdown .dropdown-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  top: 160%;
  background: var(--whiteColor);
  min-width: 250px;
  padding: 15px 0;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Admin Dropdown Specific Styling */
.admin-dropdown .dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 400px;
  padding: 20px;
  gap: 10px;
}

.admin-dropdown .dropdown-content li {
  padding: 8px;
}

.admin-dropdown .dropdown-content .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.admin-dropdown .dropdown-content .nav-link:hover {
  background: rgba(var(--orangeColor-rgb), 0.1);
  transform: translateX(5px);
}

/* Products Dropdown Specific Styling */
.products-dropdown .dropdown-content {
  min-width: 300px;
}

.products-dropdown .category-section {
  padding: 15px 20px;
}

.products-dropdown .category-title {
  color: var(--blackColor);
  font-weight: 600;
  font-size: 16px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.products-dropdown .category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.products-dropdown .category-item {
  padding: 8px 12px;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
}
.products-dropdown .category-item::before {
  content: "";
  display: inline-block;
  top:0;
  left:0;
  width: 0;
  height: 6px;
  border-radius: 50%;
  background: var(--orangeColor);
  margin-right: 8px;
  vertical-align: middle;
}
.products-dropdown .category-item:hover::before {
  width: 6px;
}
.products-dropdown .category-item:hover {
  background: rgba(var(--orangeColor-rgb), 0.1);
  color: var(--orangeColor);
  padding-left: 18px;
}

/* Shared Dropdown Hover Effects */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      top: 135%;
      z-index: 1000;
  }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .dropdown .dropdown-content {
    position: absolute;
    left:0;
    box-shadow:none;
    min-width: fit-content;
    width:100%;
    max-height:0;
    transform: none;
    overflow: hidden; 
    border-radius: 1px;
    pointer-events: all;
  }

  .dropdown .dropdown-content.show {
    position: relative;
    max-height:500px;
    transform: max-height 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
    top:120%;
    z-index:2500;
    pointer-events: all;
  }

  /* Admin Dropdown Mobile Styles */
  .admin-dropdown .dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  .admin-dropdown .dropdown-content li {
    padding: 5px;
  }
  .admin-dropdown .dropdown-content .nav-link {
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
  }
  /* Products Dropdown Mobile Styles */
  .products-dropdown .category-section {
    padding: 8px;
  }

  .products-dropdown .category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .products-dropdown .category-item {
    padding: 8px;
    border-bottom: 1px solid #ccc;
  }

  .products-dropdown .category-item:hover {
    background: rgba(var(--orangeColor-rgb), 0.1);
    color: var(--orangeColor);
  }
}

@media (max-width: 768px) {
  .menubars {
    display: block;
    font-size: 20px;
    color: var(--blackColor);
  }
  .menuclosebtn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 800;
    font-size: 30px;
    color: var(--blackColor);
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-height:100vh;
    overflow-y: auto;
  }
  .nav ul::-webkit-scrollbar {
    width:2px;
  }

  .nav ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--whiteColor);
  }
  .nav-link {
    color: var(--blackColor);
    font-size: 16px;
    font-weight: 500;
  }
  .nav-item .nav-link .chevron {
    display:inline-block;
    transition: 0.3s ease-in-out;
    font-size: 13px;
    color:var(--blackColor);
    padding-left:5px;
  }
.nav-item .nav-link.active {
    color:var(--orangeColor);
  }
.nav-item .nav-link:hover {
    color:var(--orangeColor);
  }
.nav-item .nav-link::after {
    display:none;
  }
  .header {
    position: sticky;
    background: var(--whiteColor);
    padding: 10px 20px;
  }
  .logo-img {
    width:140px;
  }
  .nav {
    position: fixed;
    visibility: hidden;
    pointer-events: none;
    transform:translateX(-100%);
    top: 0;
    left:0;
    width: 100%;
    padding-top: 50px;
    background: var(--formgrayColor);
    height:100%;
    color: var(--blackColor);
    opacity: 0;
    padding:40px 60px;
    transition: all 0.3s ease-in-out;
  }
  .nav.active {
    visibility: visible;
    pointer-events: auto;
    transform:translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: var(--whiteColor);
  color: var(--blackColor);
  padding:20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  gap:30px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--whiteColor);
  color: var(--blackColor);
}

.footer-content {
  color: var(--blackColor);
  font-size: 15px;
}

.footer-logo {
  width: 220px;
}
.footer-content ul li {
  padding: 10px 0;
}
.footer-content ul li a {
  color: var(--blackColor);
  font-size: 15px;
}
.footer-content ul li a:hover {
  color: var(--orangeColor);
  text-decoration: underline;
  padding-left:3px;
}

.ftco-heading-2 {
  padding: 10px 0;
  font-size: 22px;
  font-weight:600;
}

.footer-content > p {
  color: var(--blackColor);
  font-size: 15px;
  line-height: 25px;
  padding-left: 10px;
  padding-bottom: 40px;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blackColor);
  font-size: 15px;
  padding: 20px;
  border-top: 1px solid var(--formgrayColor);
}

.footer-icons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: end;
  gap: 2px;
}

.ft-icon {
  padding: 10px;
  border-radius: 50%;
  color: var(--orangeColor);
  background: var(--formgrayColor);
  font-size: 18px;
}

.footer-content .ft-com-icon {
  padding-right: 10px;
  color: var(--orangeColor);
}

.ft-icon:hover {
  color: var(--orangeColor);
}

.copyright-mark {
  color: var(--orangeColor);
  padding-left: 10px;
}

.text {
  font-size: 16px;
  padding-left: 5px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 100%;
  }
}

.homeSwiper {
  width: 100%;
  height: 76vh;
  position: relative;
}

.home-hero-wrap_1,
.home-hero-wrap_2,
.home-hero-wrap_3 {
  position: relative;
  height: 76vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index:100;
}

.home-hero-wrap_1::after,
.home-hero-wrap_2::after,
.home-hero-wrap_3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}


.welcome-note .swiper-information-text {
  text-align: center;
  padding-bottom: 35px;
  font-size: 16px;
  line-height: 30px;
  color: var(--whiteColor);
  font-weight: 700;
}

.welcome-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: var(--whiteColor);
  z-index: 100;
}

.welcome-note-title {
  font-size: 35px;
  color: var(--whiteColor);
  padding: 25px;
  line-height: 40px;
  font-weight: 600;
}

.hero-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.button-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: var(--orangeColor);
  z-index: 1200;
}

@media (max-width: 768px) {
  .homeSwiper {
    width: 100%;
    height: 70vh;
    position: relative;
  }
  .home-hero-wrap_1,
  .home-hero-wrap_2,
  .home-hero-wrap_3 {
    height: 70vh;
  }

  .welcome-note-title {
    font-size: 32px;
  }
  .welcome-note .swiper-information-text {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .homeSwiper {
    width: 100%;
    height: 65vh;
    position: relative;
  }
  .home-hero-wrap_1,
  .home-hero-wrap_2,
  .home-hero-wrap_3 {
    height: 65vh;
  }
  .welcome-note-title {
    font-size: 27px;
    padding: 15px;
    line-height: 30px;
  }
  .welcome-note .swiper-information-text {
    font-size: 17px;
    font-weight:500;
  }
}

.homeSwiper .swiper-button-next::after, 
.homeSwiper .swiper-button-prev::after {
  content: '';
}

/*Why choose section */
.why-choose-section {
  padding: 40px 10px;
  background: var(--whiteColor);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solar-image {
  border-radius: 2px;
  width:100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.solar-image img {
  width: 100%;
  height: auto;
  display: block;
}
.description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--darkgrayColor);
  margin-bottom: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-box {
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 23px;
  font-weight:400;
  color: var(--orangeColor);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-text {
  font-size: 16px;
  color: var(--blackColor);
  font-weight:500;
  line-height: 1.4;
}
.stats-utilities-container {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  gap:6px;
  font-size:22px;
  color:var(--greenColor);
}
@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    gap: 20px;
  }
  .stat-number {
    font-size: 19px;
  }
}

/* Home-Services Starts */
.home-services-headline-container {
    padding:20px;
    text-align: center;
  }
  .home-services-headline-container .services-headline {
    font-size:30px;
    color:var(--blackColor);
    text-align: center;
    padding:10px;
  }

  .home-services-headline-container .services-highlight {
    font-size:16px;
    color:var(--grayColor);
    text-align: center;
    line-height: 30px;
    padding:10px;
  }

.home-services-container {
	display:grid;
	grid-template-columns: repeat(3, 1fr);
	padding:10px;
	gap:30px;
  }
/* Service card */
	@media(min-width:768px) and (max-width:1024px) {
.home-services-container {
		grid-template-columns:repeat(2, 1fr);
		padding:0px;
		gap:10px;
	}
	}
	
@media(max-width:768px) {
.home-services-container {
		grid-template-columns: 1fr;
		padding:0px;
		gap:10px;
	}
}









/* home products starts */
.home-products-section {
  margin-bottom:30px;
  background:var(--whiteColor);
}
.home-products-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  justify-content: center;
  align-items: center;
  padding:20px 0;
}
@media (max-width: 768px) {
  .home-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 330px) {
  .home-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Home BLOG starts */
.home-blogs-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  justify-content: center;
  align-items: center;
}

@media (min-width:768px) and (max-width:1024px) {
.home-blogs-container {
 grid-template-columns: repeat(2, 1fr);
 gap:20px;
 padding:20px;
}
}

@media (max-width:768px) {
.home-blogs-container {
 grid-template-columns: 100%;
 gap:10px;
 padding:10px;
}
}
/* Testimonial FAQ section starts */
.testimony-faq-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--whiteColor);
  background-attachment: fixed;
}
.testimony-faq-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  
}
/* testimonials start */
.testimonial-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
  justify-content:center;
  z-index: 200;
  position: relative;
}

.review-swiper-container {
  width:100%;
}
.testimonial-card {
    background: var(--whiteColor);
    border-radius: 2px;
    padding: 20px;
    height: auto;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .client-image {
    width: 50px;
    height: 50px;
    padding:4px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #ccc;
  }
  .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .client-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #45011a;
    margin: 0 0 5px 0;
  }

  .client-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  .quote-icon {
    font-size: 48px;
    color: #45011a;
    opacity: 0.1;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grayColor);
    margin-bottom: 24px;
  }

  .rating {
    color: #ffd700;
    font-size: 20px;
    margin-top: 20px;
  }

  .swiper-pagination {
    position: relative;
    margin-top: 40px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #45011a;
    opacity: 0.3;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    opacity: 1;
  }

  .testimonial-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f4f8;
    border-radius: 2px;
    font-size: 12px;
    color: #45011a;
    margin-top: 15px;
  }

  @media (max-width: 768px) {
    .testimonial-card {
      padding: 15px;
    }
  }

@media (max-width:768px){
.testimonial-grid {
  grid-template-columns:100%;
  gap:1rem;
}
}
/* testimonials end */
/*  faq starts */
.faq .heading {
  font-size:3.5rem;
  text-align: center;
  color:var(--blackColor);
  opacity:80%;
  padding-bottom: 3rem;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    z-index: 200;
    position: relative;
}
.faq-item {
    background: white;
    background:rgb(224, 251, 224);
    border-radius: 1px;
    margin-bottom: 4px;
    overflow: hidden;
    border-bottom: 2px solid var(--orangeColor);
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--blackColor);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color:var(--greenColor);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color:var(--grayColor);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px 20px;
    color:var(--grayColor);
    background: #f8fafc;
}

.highlight {
    color: #4299e1;
}


  /*partners section */
.partners-section {
  background: var(--whiteColor);
  margin:40px 0;
  padding:20px 0;
}
.partner-logo-container {
  width:100%;
  height:20vh;
  padding:20px;
  background: var(--whiteColor);
}
.partner-logo-container:hover {
  cursor:grabbing;
}
.partner-logo-container img {
  width:100%;
  height:100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-logo-container {
    padding:10px;
  }
}

/*Subscription starts */
.subscribe-section {
  background: var(--darkgrayColor);
  margin-bottom: -20px;
  padding:30px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.subscribe-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index:-1;
}
.subscribe-to-newsletter-heading {
  text-align: center;
  font-size:30px;
  color:var(--whiteColor);
  font-weight: 700;
  padding-bottom: 10px;
}

.subscribe-to-newsletter-subheading {
  text-align: center;
  font-size:17px;
  line-height: 25px;
  color:var(--whiteColor);
  font-weight: 500;
}

.subscribe-form {
  max-width:600px;
  width:100%;
  margin:20px auto;
  border-radius: 1px;
}
.subscribe-form .input {
  width:100%;
  padding:15px;
  background: var(--whiteColor);
  border-radius: 1px;
  font-size: 15px;
  color:var(--blackColor);
  border-radius:1px;
}

.subscribe-form .input-submit-container {
  display:flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  width:100%;
  color:var(--whiteColor);
}
.subscribe-form .input-submit-container .sub-form {
  width:100%;
  border-radius:8px;
}
.subscribe-button {
  padding:14px 20px;
  border-radius:1px;
  font-size:15px;
  background: var(--orangeColor);
  color:var(--whiteColor);
  outline:none;
  cursor:pointer;
}

.subscribe-button:hover {
  transform: scale(1.03);
  background: var(--grayColor);
  color:white;
  cursor:pointer;
}

@media (max-width: 400px) {
  .subscribe-form .input-submit-container {
    display:flex;
    flex-wrap: wrap;
  }
  .subscribe-to-newsletter-heading {
    font-size:25px;
  }
  .subscribe-button {
    width:100%;
  }
  
}

/*about-page-styles */
.about-hero-wrap {
  position: relative;
  height:40vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-bg2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 20;
  margin-top:50px;
  margin-left: 50px;
  margin-bottom:50px;
  margin-right: -80px;
}
.about-bg3 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: top;
  position: relative;
  height:50vh;
  background-attachment: fixed;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns:2fr 4fr;
  margin:50px 0;
}
.about-paragraph-section {
  padding-top:70px;
  padding-bottom:70px;
  padding-right:70px;
  padding-left:150px;
  font-size: 16px;
  background-color: var(--whiteColor);
  box-shadow:var(--boxShadow2);
}
.about-paragraph-section .subheading {
  text-transform: uppercase;
  color:var(--blackColor);
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 20px;
}
.about-paragraph-section .heading {
  color:var(--blackColor);
  font-size: 40px;
  font-weight: 700;
}
.about-paragraph-section > p {
  word-spacing: 3px;
  line-height: 30px;
  font-size: 17px;
  color:var(--grayColor);
  margin-bottom: 20px;
  margin-top:20px;
}

.about-intro-section {
  font-size:17px;
  height:50vh;
}

.heading-section-wordings {
  position: relative;
  text-align: center;
  max-width:600px;
  margin:auto;
  z-index: 200;
  padding:50px 20px;
}
.heading-section-wordings > h2 {
  font-size:32px;
  font-weight:600;
  padding-bottom: 20px;
  color:var(--whiteColor);
}

@media (max-width: 768px) {
  .about-bg2 {
    display:none;
  }
  .about-bg3 {
    margin-left:0;
  }
  .heading-section-wordings > h2 {
    font-size:22px;
    font-weight:600;
    padding-bottom: 20px;
  }
  .about-section {
    grid-template-columns:100%;
    margin:20px;
  }

  .color-blank-container {
    display:none;
  }
  .about-paragraph-section {
    padding-top:20px;
    padding-bottom:30px;
    padding-right:20px;
    padding-left:20px;
    font-size: 16px;
  }
  .about-intro-section {
    height:40vh;
  }
}


/*Our History starts */
.about-us-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: start;
  background: var(--whiteColor);
  gap:40px;
}
.about-content {
  flex: 1;
}
.about-tabs {
  display:flex;
  flex-direction:column;
  max-width:fit-content;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  border-radius: 2px;
  gap:10px;
  padding:40px 20px;
}

.about-tabs .about-item {
  color:var(--blackColor);
  border:1px solid var(--greenColor);
  font-size:17px;
  text-align: center;
  font-weight: 600;
  padding:13px 25px;
  width:100%;
  display:block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius:10px;
}
.about-tabs .about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--greenColor);
  opacity:0.3;
  color:var(--whiteColor);
  transition: all 0.3s ease;
  cursor: pointer;
}
.about-tabs .about-item:hover::before {
  left: 0;
  cursor: pointer;
  color: var(--whiteColor);
}

.about-tabs .about-item.active {
  color:var(--whiteColor);
  background:var(--greenColor);
  cursor: pointer;
}
.about-container1, .about-container2, .about-container3 {
  background-color: var(--whiteColor);
  padding:40px;
  border-radius:1px;
}
 .about-container2, .about-container3 {
  display:none;
}
.about-container4 ul li {
  list-style-type: none;
}
.vision-body, .mission-body, .core-values-body, .history-body {
  font-size:16px;
  font-weight:400; 
  line-height:30px; 
  color:var(--darkgrayColor);
}
.about-header {
  color:var(--greenColor); 
  font-weight:800;
  font-size:22px;
  padding:4px 0;
  position: relative;
  z-index:50
}
.about-underline {
  height:3px;
  width:10%;
  background-color: var(--orangeColor);
  margin-bottom:20px;
}
.history-body, .vision-body, .mission-body {
  border-radius: 8px;
  padding-left:20px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--greenColor);
}
.core-values-body li {
  margin-bottom: 12px;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 3px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--greenColor);
}
.core-values-body li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.core-values-body strong {
  color: var(--greenColor);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .about-us-container {
    flex-wrap:wrap;
    flex-direction: column;
  }
.about-tabs {
  border: none;
  gap:4px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding:10px;
}
.about-tabs .about-item {
  border:2px solid var(--greenColor);
  padding:8px 16px;
}
.about-container1, .about-container2, .about-container3 {
  padding:8px;
  border-radius:0px;
}
}

/* blog page */
.blog-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 50vh;
  }
  .blog-post-body {
   text-align: center;
   padding:40px;
   padding-top:0px;
   margin:20px auto;
   font-size:17px;
  }
  .blog-post-body .blog-text {
   margin:20px auto;
   font-size:18px;
   line-height:30px;
   color:rgb(99, 96, 96);
  }
  .blog-author-details {
   display:flex;
   flex-wrap:wrap;
   gap:12px;
   justify-content: center;
   align-items: center;
   margin-bottom: 15px;
   color:var(--orangeColor);
   font-size:16px;
  }
  .blog-author-details a {
   color:var(--orangeColor);
   font-size:16px;
   font-weight: bold;
  }
 .blog-heading a {
   color:var(--blackColor);
   font-size:20px;
   font-weight: bold;
  }
 .pagination-buttons {
   display:flex;
   flex-wrap: wrap;
   gap:15px;
   justify-content: center;
   align-items: center;
   padding-bottom:10px;
 }
 .pagination-buttons>li a {
   color:var(--orangeColor);
   font-size:15px;
   border-radius:50%;
   padding:10px 15px;
   border:.1px solid #ccc;
   background-color:var(--whiteColor);
   cursor:pointer;
 }
 .pagination-buttons>li a:hover {
   background-color:var(--orangeColor);
   color:var(--whiteColor);
 }
 .pagination-buttons>li a.active {
   background-color:var(--orangeColor);
   color:var(--whiteColor);
 }
 
 @media (max-width:768px) {
   .blog-post-body {
     padding:10px;
   }
   .blog-img-container {
     padding:20px;
     padding-bottom:10px;
   }
 }
/*Service-card*/
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orangeColor);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card-img-container {
  width: 100%;
  height: 230px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  overflow: hidden;
}

.service-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img-container img {
  transform: scale(1.1) rotate(-2deg);
}

.service-overlay-button {
  position: absolute;
  bottom: -10%;
  right: 50%;
  transform: translateX(50%);
  background: var(--orangeColor);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
}

.service-card:hover .service-overlay-button {
  bottom: 15%;
  opacity: 1;
}
.service-overlay-button:hover {
  opacity:0.8;
}

.service-card-body {
  padding: 20px 15px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blackColor);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.service-card-body h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: 5px;
  background: var(--orangeColor);
  transition: all 0.4s ease;
}

.service-card:hover .service-card-body h3::before {
  width: 30px;
  margin-right: 10px;
}

.service-card-body p {
  color: var(--grayColor);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-read-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--orangeColor);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.service-read-more-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orangeColor);
  transition: width 0.3s ease;
}

.service-read-more-link:hover::after {
  width: 100%;
}

.read_more_arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-read-more-link:hover .read_more_arrow {
  transform: translateX(5px);
}

/* Admin controls */
.admin-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 10px 5px;
  padding-top:8px;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index:20;
}

.admin-controls .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 4px;
  background: rgba(var(--greenColor-rgb), 0.1);
  transition: all 0.3s ease;
  border:1px dotted var(--greenColor);
}
.admin-controls .admin-link.project {
  background: var(--orangeColor);
  transition: all 0.3s ease;
}
.admin-controls .admin-link:hover {
  background: var(--orangeColor);
  color: white;
}

.admin-controls .admin-link:hover::after {
  display: none;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
/* Services page */
.services-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  }
  .services-bg3 {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   z-index: 5;
   position: relative;
 }
 .services-headline-container {
  padding:20px;
  text-align: center;
 }
 .services-headline-container .services-headline {
  font-size:30px;
  font-weight: 700;
  color:var(--blackColor);
  text-align: center;
  padding:10px;
 }
 .services-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  padding:20px;
  gap:30px;
  background:var(--whiteColor);
 }

@media(min-width:768px) and (max-width:1024px) {
.services-container {
 grid-template-columns:repeat(2, 1fr);
 padding:0px;
 gap:20px;
}
}

@media(max-width:768px) {
.services-container {
 grid-template-columns: 1fr;
 padding:0px;
 gap:10px;
}
}
/* Service detail page */
.service-details-hero-wrap {
	position: relative;
	background-attachment: fixed;
  background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	height:50vh;
}
.service-details-intro-container {
 display:grid;
 grid-template-columns: 3fr 1fr;
 gap:30px;
}

.service-details-intro-text-container {
 padding:30px;
 align-items: center;
 background:var(--whiteColor);
}

.service-details-intro-text-container .service-details-welcome-heading {
 font-size:25px;
 line-height:30px;
 color:var(--greenColor);
 font-weight:700;
 padding-bottom:5px;
 margin-bottom:15px;
 border-bottom: 2px dotted var(--orangeColor);
}
.key_service_details-title {
 font-size:17px;
 line-height:30px;
 color:var(--blackColor);
 font-weight:600;
 padding-bottom:20px;
}
.service-details-intro-text-container .service-details-welcome-body {
 font-size:15px;
 line-height:32px;
 color:var(--darkgrayColor);
 font-weight:400;
 padding-bottom:20px;
 white-space: pre-line;
}

.service-details-img-container {
 width:100%;
 height:160px;
}
.service-details-img-container img {
 width:100%;
 height:100%;
 object-fit: cover;
}

.contact-us-container {
 margin-top:-5px;
 background-color: var(--orangeColor);
 padding:25px;
 padding-top:20px;
}

.contact-us-container .head-text {
 font-size: 20px;
 font-weight: 700;
 color:var(--whiteColor);
 padding:10px 0;
}
.contact-us-container p {
 font-size: 15px;
 font-weight: 400;
 color:var(--blackColor);
 padding-bottom:20px;
 line-height: 25px;
}
.operation-schedule-container {
 margin:20px auto;
 padding:10px;
 font-size: 17px;
}

.operation-schedule-container .open-time-headline {
 padding:10px 0;
 font-size: 20px;
 color:var(--blackColor);
 font-weight: 600;
}

.operation-schedule-container p {
 padding:10px 0;
 font-size: 15px;
 color:var(--darkgrayColor);
 font-weight: 500;
}

.operation-schedule-container .operation-time-icon {
 padding-right:10px;
 font-size: 14px;
}
.key_service-details {
 line-height:30px;
 font-size:15px;
 font-weight:400;
 color:var(--darkgrayColor);
 margin-left: 30px;
 margin-bottom: 10px;
 list-style-type: disc;
}

.service-image-container {
 margin:30px auto;
 width:100%;
 height:80vh;
}
.service-image-container img {
 width:100%;
 height:100%;
 object-fit: cover;
}

@media (max-width: 768px) {
 .service-details-intro-container {
   grid-template-columns: 1fr;
   gap:5px;
 }
 .service-details-intro-text-container {
   padding:10px;
   align-items: center;
 }
 .service-image-container {
  height:30vh;
 }
 .service-details-intro-text-container .service-details-welcome-body {
   font-size:15px;
   line-height:25px;
   padding-bottom:10px;
 }
}

/* projects page */
.projects-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%,0 90%);
}
.project-bg3 {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   z-index: 5;
   position: relative;
   height:50vh;
}
.projects-headline-container {
  padding:20px;
  text-align: center;
}
.projects-headline-container .projects-headline {
  font-size:25px;
  color:var(--blackColor);
  font-weight:700;
  text-align: center;
  padding:10px;
}
.projects-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  padding:20px;
  gap:20px;
}
.project-overlay-button {
 background: none;
 color:var(--orangeColor);
 font-size:15px;
 border:2px solid var(--orangeColor);
 border-radius:2px;
 padding:10px 16px;
 transition: .4s ease-in-out;
}

.project-overlay-button:hover {
 background: var(--orangeColor);
 color:var(--whiteColor);
}
.project-category {
   color:var(--whiteColor);
   background: var(--greenColor);
   font-size:15px;
   padding:14px 20px;
   border-radius: 2px;
   cursor:pointer;
}
.project-category.selected {
   color:var(--whiteColor);
   background: var(--orangeColor);
   cursor:pointer;
}
.project-category:hover {
   color:var(--whiteColor);
   background: var(--orangeColor);
   transform: scale(1.07);
}
@media(min-width:768px) and (max-width:1024px) {
.projects-container {
   grid-template-columns:repeat(2, 1fr);
   padding:0px;
   gap:20px;
}
}

@media(max-width:768px) {
.projects-container {
   grid-template-columns: 1fr;
   padding:0px;
   gap:10px;
}
.project-bg3 {
   margin-left:0px;
   }
}
/* Projects Start */
.project-card {
  position: relative;
  min-height:350px;
  overflow: hidden;
  border-radius:1px;
}
.project-card img {
  position: absolute;
  width:100%;
  height:100%;
  object-fit: cover;
  transition: .4s ease-in-out;
}
.project-card::after {
  content: "";
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.4);
}

.project-card:hover img {
  transform: scale(1.1);
  cursor: pointer;
}
.project-card-body {
  position: relative;
  transition: .4s ease-in-out;
  padding:20px;
  z-index:2;
}
.project-card-body h3 {
  color:var(--orangeColor);
  background: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  font-weight: 800;
  padding:10px;
  padding-bottom:20px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 55% 90%, 50% 100%, 45% 90%, 0% 90%);
}

.project-card-body p {
  color:var(--whiteColor);
  font-weight: 500;
  font-size: 15px;
  line-height:27px;
  padding-bottom:30px;
}

.project-overlay-button {
  background: var(--orangeColor);
  color:var(--whiteColor);
  font-size:15px;
  border:2px solid var(--orangeColor);
  border-radius:1px;
  padding:11px 16px;
  transition: .3s ease-in-out;
  }

.project-overlay-button:hover {
 opacity:0.8;
}

.view-more-projects-btn {
  display:flex;
  justify-content: center;
  align-items: center;
  margin-top:20px;
}
.view-more-projects-link {
  color:var(--orangeColor);
  font-size:18px;
}
/* Project details */
.project-details-hero-wrap {
	position: relative; 
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 50vh;
}

.project-details-intro-container {
	display:grid;
	grid-template-columns: 3fr 1fr;
	gap:30px;
}

.project-details-intro-text-container {
	padding:30px;
	align-items: center;
	background:var(--whiteColor);
}

.project-details-intro-text-container .project-details-welcome-heading {
	font-size:23px;
	line-height:30px;
	color:var(--greenColor);
	font-weight:600;
	padding-bottom:5px;
	margin-bottom:15px;
	border-bottom: 2px dotted var(--orangeColor);
}

.project_detail {
	font-size:15px;
	line-height:30px;
	color:var(--blackColor);
	font-weight:600;
	padding-bottom:20px;
}
.project_detail p {
	font-size:15px;
	line-height:30px;
	color:var(--blackColor);
	font-weight:600;
}
 .project_detail .project-detail-text {
	font-size:15px;
	color:var(--grayColor);
	font-weight:400;
	padding-bottom:20px;
}
.project-details-img-container {
	width:100%;
}
.project-details-img-container img {
	width:100%;
}

.contact-us-container {
	margin-top:-5px;
	background-color: var(--orangeColor);
	padding:25px;
	padding-top:20px;
}

.contact-us-container .head-text {
	font-size: 20px;
	font-weight: 700;
	color:var(--whiteColor);
	padding:10px 0;
}
.contact-us-container p {
	font-size: 15px;
	font-weight: 400;
	color:var(--blackColor);
	padding-bottom:20px;
	line-height: 25px;
}
.operation-schedule-container {
	margin:20px auto;
	padding:10px;
	font-size: 17px;
}

.operation-schedule-container .open-time-headline {
	padding:10px 0;
	font-size: 20px;
	color:var(--blackColor);
	font-weight: 600;
}

.operation-schedule-container p {
	padding:10px 0;
	font-size: 15px;
	color:var(--darkgrayColor);
	font-weight: 500;
}

.operation-schedule-container .operation-time-icon {
	padding-right:10px;
	font-size: 14px;
}

.site-statistics {
	margin:20px auto;
	padding:10px;
	font-size: 16px;
	color:var(--blackColor);
}

.site-statistics h3 {
	font-size:20px;
	color:var(--blackColor);
	font-weight:600;
	padding-bottom:15px;
}
.site-statistic-detail {
	color:var(--blackColor);
	font-weight:600;
	font-size:16px;
	line-height:30px;
}

.site-statistic-detail span {
	color:var(--darkgrayColor);
	font-weight:400;
	font-size:16px;
	margin-left:10px;
}

.detailed-project-item-list {
	line-height:30px;
	font-size:15px;
	font-weight:normal;
	color:var(--blackColor);
	margin-left: 30px;
}

.detailed-project-item-list li {
	list-style-type: disc;
}

.project-image-container {
	margin:30px auto;
	width:100%;
	height:80vh;
}
.project-image-container img {
	width:100%;
	height:100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.project-details-intro-container {
		grid-template-columns: 1fr;
		gap:5px;
	}
  .project-details-img-container {
    display: none;
  }
  .project-image-container {
    height:30vh;
  }
	.project-details-intro-text-container {
		padding:10px;
		align-items: center;
	}
	.project-details-intro-text-container .project_detail {
		font-size:15px;
		line-height:25px;
		padding-bottom:10px;
	}
}

/*Blogs list page styling */
.blogpage-hero-wrap {
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  background-position: center center;
  }
.blogs-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.all_blogs_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 10px;
  margin-top: 20px;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card {
  background: white;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.post-card::after {
  content:"";
  position: absolute;
  background: var(--orangeColor);
  left:0;
  width:4px;
  top:0;
  height:0;
  transition: 0.3s ease-in-out;
  z-index:-1;
}
.post-card:hover::after {
  height:100%;
}
.post-card:hover {
  transform: translateY(-3px);
}
.post-card:hover .post-image-container .post-image {
  transform: scale(1.04);
}
.post-image-container {
  overflow: hidden;
  border-radius: 1px 1px 0 0;
  position: relative;
  height: 200px;
  width:100%;
}

.post-image-container .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:0.3s linear;
}
.post-content {
  padding: 24px;
}

.post-tag {
  display: inline-block;
  padding:6px 10px;
  background: var(--formgrayColor);
  color: var(--orangeColor);
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 8px;
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackColor);
  padding:10px 0;
  line-height:30px;
  position: relative;
}
.post-title:hover {
  color: var(--greenColor);
}
.post-title::after {
  content: "";
  position: absolute;
  width: 10%;
  left:0;
  bottom:0;
  height: 1.8px;
  margin-bottom:10px;
  background: var(--orangeColor);
}
.post-title:hover::after {
  width:100%;
  transition: width 0.3s ease-in-out;
}
.post-excerpt {
  padding:10px 0;
  color: var(--grayColor);
  line-height: 1.6;
}
.blog-post-tags {
  margin-top:14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border:1px solid #ccc;
  background:#f3f3f3;
  padding:2px;
  object-fit: cover;
}
/* Admin controls */
.admin-controls {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 10px 5px;
  padding-top:8px;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index:20;
}

.admin-controls .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: 4px;
  background: rgba(var(--greenColor-rgb), 0.1);
  transition: all 0.3s ease;
  border:1px dotted var(--greenColor);
}
.admin-controls .admin-link.project {
  background: var(--orangeColor);
  transition: all 0.3s ease;
}
.admin-controls .admin-link:hover {
  background: var(--orangeColor);
  color: white;
}

.admin-controls .admin-link:hover::after {
  display: none;
}

/*Blogs Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 70px;
  height: fit-content;
}

.sidebar-section {
  background: white;
  border-radius: 2px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
}

.blogs-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blogs-search-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 15px;
  outline: none;
}

.blogs-search-input:focus {
  border-color: var(--orangeColor);
}

.search-button {
  padding: 12px 20px;
  background: var(--orangeColor);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
}

.search-button:hover {
  background: var(--orangeColor);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.recent-post-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.related-blog-image {
  width: 60px;
  height: 60px;
  object-fit:contain;
}

.blogs_categories_list {
  max-height:200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_tags-list {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
} 

.recent-post-item {
  text-decoration: none;
  padding-bottom:5px;
  color: var(--darkgrayColor);
  transition: color 0.1s ease;
  border-bottom: 1px solid rgba(204, 204, 204,0.5);
}
.recent-post-item span {
  margin-right:10px;
  font-size:25px;
  color: var(--orangeColor);
  transition: color 0.1s ease;
}
.recent-post-item:hover span {
  transform:translateX(-10px);
}
.recent-post-item:hover {
  color: var(--orangeColor);
}
.search_query_title {
  font-size:22px;
  font-weight:500;
  color:#232323;
  padding:10px 0;
}
.search_query_title>span {
  color:var(--orangeColor);
}
.search_results_count {
  font-size:17px;
  color:#232323;
  font-weight:400;
}
.search_results_count>span {
  color:#000000;
  font-weight:500;
}
.no_blogs_found {
  display:flex; 
  justify-content: center; 
  align-items: center; 
  min-height:50vh;
}
.no_blogs_found .no_blogs_text {
  color:#2d3436;
  font-size:18px;
}

@media (max-width: 768px) {
  .blogs-container {
    grid-template-columns: 1fr;
    padding:8px;
    padding-bottom:20px;
  }

  .post-image-container {
    height: 200px;
  }
  .post-content {
    padding: 10px;
  }
  
  .post-image-container .post-image {
   object-fit: cover;
  }
}


/*Blog detail page */
.blog-detail-section {
  max-width:1400px;
  margin:30px auto;
  width:100%;
  padding:30px;
  padding-top:20;
  margin-top:0;
  line-height:30px;
  color:#333;
  min-height:100vh;
}
.blog_details_grid {
  display:grid;
  grid-template-columns: 4fr 2fr;
  gap:30px;
  justify-content:center;
  padding-top:20px;
}
.blog-detail {
  line-height: 30px;
  padding:20px;
  color:#333;
}
.blog-detail .blog_detail_title {
  color: var(--blackColor);
  font-size: 23px;
  padding: 15px 0;
  font-weight:600;
  line-height: 30px;
  position: relative;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::after {
  position: absolute;
  content: "";
  height: 2px;
  width:30%;
  left:0;
  bottom: 0;
  background-color: var(--orangeColor);
  border-radius: 2px;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
  left:0;
  top:50%;
  margin-right:6px;
  transform: translateY(-50%);
}
.blog-detail .blog_detail_title:hover::after{
  width:100%;
}
.post-meta .dot {
  color: var(--orangeColor);
  font-size: 16px;
}

.blog-cover-image-container {
  display:flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding:10px 0;
}
.blog-cover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:5px;
}

.blog-content img {
 width:100%;
 height:auto;
 object-fit: cover;
}
  .comments_container h4 {
    text-align: left;
    font-size:20px;
    font-weight:500;
    color:#000000;
    padding:15px 0;
  }
  .comments_container .blog-comment {
    display:flex;
    flex-direction: column;
    gap:4px;
    color:#000000;
    padding-bottom:8px;
    border-bottom:1px solid #f3f3f3;
  }
  .comments_container .no-blog-comments-container {
    display:flex;
    justify-content: center;
    align-items: center;
    color:#313030;
  }
  .blog_comment_form .form-group {
    display:flex;
    gap:10px;
    }
  .blog_comment_form input {
    width:100%;
    border:1px solid #ccc;
    padding:12px;
    color:var(--darkgrayColor);
    font-size:16px;
    margin:10px 0;
    border-radius:1px;
  }
  .blog_comment_form textarea {
    width:100%;
    border-radius:1px;
    border:1px solid #ccc;
    padding:12px;
    color:var(--darkgrayColor);
    font-size:16px;
    margin:10px 0;
    resize: vertical;
    height:120px;
  }
  .blog_comment_form input::placeholder,
  .blog_comment_form textarea::placeholder {
    color:#2d3436;
  }
  .blog_comment_form input:focus,
  .blog_comment_form textarea:focus {
    border:1px solid var(--orangeColor);
  }
  .blog_comment_form .blog_comment_btn {
    width:30%;
    border:2px solid transparent;
    background:var(--orangeColor);
    color:#ffffff;
    padding:14px 20px;
    font-size:15px;
    border-radius:1px;
  }
  .blog_comment_form .blog_comment_btn:hover {
    border:2px solid var(--orangeColor);
    background:#ffffff;
    color:var(--orangeColor);
    cursor: pointer;
  }
@media (max-width:600px) {
  .blog_comment_form .blog_comment_btn {
    width:100%;
  }
}
@media (max-width:430px) {
  .blog-cover-image-container {
    margin-top:20px;
    height: 200px;
    padding:0;
  }
  .blog-cover-image-container img {
   border-radius:2px;
  }
}
@media screen and (max-width:768px) {
  .blog_details_grid {
    grid-template-columns: 1fr;
}
.blog-detail-section {
    padding:8px;
    padding-top:30;
}
.blog-detail {
    padding:10px;
}
}

/* Cart-styling-section */
.cart-section {
  background-color:#f3f3f3;
  color: var(--darkgrayColor);
  max-width: 1400px;
  width:100%;
  margin: 0 auto;
  padding: 10px;
}

.cart-container {
  display:grid;
  gap:30px;
  grid-template-columns:3fr 1fr;
  justify-content:center;
  padding:20px;
  padding-top:0;
  margin-top:10px;
  border-radius: 2px;
  background:var(--whiteColor);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}
.cart-item {
  display: flex;
  justify-content:flex-start;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}
.cart-item-info {
  display: flex;
  justify-content:flex-start;
  flex-direction: column;
  align-items:start;
  gap:5px;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 20px;
  border-radius: 3px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-item p {
  font-size:16px;
  color:var(--darkgrayColor);
  transition: color 0.3s ease;
}
.cart-item p:hover {
  color:var(--orangeColor);
}

.update-cart-quantity-container {
  display:flex;
  background: #f4f6f7;
  align-items:center;
  border-radius:5px;
  border:1px solid #ccc;
  padding: 6px 12px;
  gap:10px;
}
.update-cart-quantity-container .decrease-quantity,
.update-cart-quantity-container .increase-quantity {
 cursor:pointer;
 transition: color 0.3s ease;
}
.update-cart-quantity-container .chevron {
  color: var(--grayColor);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.update-cart-quantity-container .chevron:hover {
  color: var(--orangeColor);
}
.cart-item-quantity {
  margin: 0 0.5rem;
  font-weight: 500;
  color:var(--darkGrayColor);
}
@media screen and (max-width:768px) {
.cart-container {
  gap:20px;
  grid-template-columns:100%;
  padding:10px;
}
}
@media screen and (max-width:530px) {
.cart-container {
  gap:20px;
  grid-template-columns:100%;
  padding:10px;
}
.update-cart-quantity-container {
  flex-direction: column-reverse;
  padding:6px 8px;
  gap:1px;
}
.cart-item {
  gap:5px;
  padding:5px;
}
.cart-item img {
  width: 50px;
  height: 50px;
  object-fit:contain;
  border-radius: 2px;
  margin-right: 5px;
}
.cart-item p {
  font-size:14px;
}

.table-headings-row th {
  font-size:16px;
}
.table-subtotal {
  display:none;
}
}

@media screen and (max-width:390px){
.table-size_color {
  display:none;
}
}
th {
  border-bottom: 1.7px solid var(--formgrayColor);
  padding:10px 0;
  text-align:start;
}
td {
  border-bottom: 1px solid var(--formgrayColor);
}
.table-headings-row th {
  text-transform: uppercase;
  color: var(--darkgrayColor);
  font-weight:700;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--formgrayColor)
}

.table-contents-row:hover {
  background-color: #f9f9f9;
}
.update-cart-form button {
  display:flex;
  justify-content: center;
  align-items: center;
  background: var(--formgrayColor);
  width:32px;
  height:32px;
  border-radius: 50%;
}
.update-cart-form .remove-btn{
  color:var(--grayColor);
  font-size:24px;
  cursor:pointer;
}
.update-cart-form .remove-btn:hover{
  color:var(--orangeColor);
}

.cart-summary-container {
  background:var(--whiteColor);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #ecf0f1;
  border-top:none;
}
.cart-total {
  margin:10px 0;
}
.cart-total-column .cart-column-title {
  font-size:20px;
  color:var(--blackColor);
  font-weight:600;
  padding-bottom:10px;
  margin-bottom:14px;
  border-bottom: 2px solid #ecf0f1;
}
.cart-total-column p {
  display: flex;
  justify-content: space-between;
  font-size:16px;
  border-bottom:1px solid #ecf0f1;
  line-height:30px;
  color:var(--grayColor);
  padding:10px 0;
}
.cart-total-column p span {
  color:var(--darkgrayColor);
  font-weight:500;
}
.cart-total-column p .overall-cart-total {
  font-size:16px;
  color:var(--greenColor);
  font-weight:500;
  padding:4px 8px;
}
.cart-actions  {
  display:flex;
  justify-content:flex-start;
  gap:10px;
  flex-direction:column;
}
.cart-actions .continue-to-checkout-btn {
  cursor:pointer;
  text-align: center;
  padding:12px 16px;
  font-size:15px;
  font-weight:700;
  color:var(--whiteColor);
  width:100%;
  background:var(--orangeColor);
}
.cart-actions .continue-to-checkout-btn:hover {
  opacity:0.8;
}
tr td {
  padding:10px;
}
.empty-cart-message-container {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
  text-align:center;
  gap:15px;
  padding:60px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.empty-cart-message-container img {
  width:50px;
  height:auto;
  opacity:0.6;
}
.empty-cart-message-container p {
  color:var(--darkgrayColor);
  font-size:16px;
  line-height:30px;
  font-weight:400;
}
.continue-shopping-link {
  color:var(--whiteColor);
  padding:12px 16px;
  cursor:pointer;
  background:var(--orangeColor);
  font-size:14px;
  border-radius:1px;
}
.continue-shopping-link:hover {
 opacity: 0.8;
}
.recommended-products-section {
  margin-top:50px;
}
.recommended-products-container {
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:5px;
  justify-content:center;
  align-items: center;
  padding:10px 30px;
}
.recommended-products-heading {
  padding-bottom:10px;
  font-size:24px;
  text-align:center;
  color:var(--blackColor);
  font-weight:500;
  position: relative;
}
.recommended-products-heading::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:16%;
  height:2px;
  background:var(--blackColor);
  transform:translateX(-50%);
}
@media screen and (max-width:1024px) {
  .recommended-products-container {
      grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .recommended-products-container {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .recommended-products-container {
      grid-template-columns: repeat(2, 1fr);
      padding:10px;
  }
  .recommended-products-heading {
      font-size:20px;
}
}
@media screen and (max-width: 340px) {
  .recommended-products-container {
      grid-template-columns: 1fr;
      padding:10px;
  }
}

/* checkout */
.checkout-container {
  display:grid;
  grid-template-columns: 3fr 2fr;
  gap:50px;
  justify-content:center;
  align-items:start;
  padding:50px 0;
  padding-top:15px;
}
.checkout-summary-container {
  margin:0 20px;
}
.checkout-container .checkout-summary-column {
 padding:20px;
 background: var(--whiteColor);
 box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.checkout-container .checkout-summary-column p {
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  line-height:30px;
  align-items: center;
  color:var(--grayColor);
  font-size:15px;
}
.checkout-container .checkout-summary-column p span {
color:var(--blackColor);
font-weight:500;
font-size:16px;
}
.checkout-container .checkout-summary-column p .total_payable {
  color:var(--blackColor);
  font-weight:700;
  font-size:17px;
}
 .checkout-title {
  color:var(--blackColor);
  font-size:22px;
  font-weight: 600;
  text-align: start;
  padding-bottom:5px;
  margin-bottom:10px;
 }

 .checkout-items-section {
  background:#ffffff;
  padding:20px;
}
.checkout-item-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:5px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.checkout-item-image {
  width:50px;
  height:50px;
  object-fit: contain;
}

.checkout-info-container {
  padding:0 20px;
  padding-left:40px;
}
.payment_method{
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.payment_method input {
  margin-bottom:15px;
}
.checkout-info-container .modify-cart-btn-container {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  margin:20px 0;
}
.checkout-info-container .modify-cart {
  padding:4px 10px;
  font-size:15px;
  color:var(--blackColor);
  font-weight:600;
  background:rgb(211, 186, 138);
}
.checkout-info-container .modify-cart:hover {
  background:orange;
}
#checkout-form {
  width:100%;
}

#checkout-form .checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
#checkout-form .checkout-form-grid .full-width {
  grid-column: 1 / -1;
}
#checkout-form label {
  display:block;
  color:var(--blackColor);
  font-size:15px;
  padding:5px 0;
}
#checkout-form input[type=text] {
  width:100%;
  color:var(--blackColor);
  font-size:15px;
  padding:12px 14px;
  border:1px solid #ccc;
  background:transparent;
}
#checkout-form .custom-select {
  width:100%;
  color:var(--blackColor);
  font-size:15px;
  padding:7px;
  cursor:pointer;
  border:1px solid #ccc;
  background: transparent;
}
#checkout-form input:focus {
  border:1px solid var(--orangeColor);
}
#checkout-form .checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#checkout-form .checkbox-container input[type="checkbox"] {
  margin-right: 12px;
  cursor: pointer;
  color:var(--orangeColor);   
}
.checkout-button-container {
  display:flex;
  justify-content:flex-start;
  margin:20px 0;
  gap:20px;
  align-items: center;
}
.checkout-button-container a {
  color:var(--blackColor);
  font-size:18px;

}
#checkout-button {
  width:100%;
  padding:13px 10px;
  color:var(--whiteColor);
  border-radius:1px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  background:var(--orangeColor);
}

#checkout-button:hover {
  opacity:0.8;
}

  .place-order-btn {
      margin-top:20px;
  }
  @media screen and (max-width:768px) {
  .checkout-container {
      grid-template-columns:100%;
      gap:20px;
      margin-bottom:30px;
  }

  .checkout-info-container {
      padding:10px;
      order:2;
  }
  .checkout-container .checkout-col-2 {
  order:1;
  }
  .checkout-container .checkout-col-2 {
  min-height:40vh;
  margin-top:30px;
  }
}
@media screen and (max-width:400) {
  #checkout-form .checkout-form-grid {
      grid-template-columns:1fr;
      }
  }

  /* Product_details_page */
.page-details {
  align-items: center;
  text-align: start;
  padding: 12px 30px;
  background:var(--formgrayColor);
  color: var(--blackColor);
  box-shadow:  0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight:700;
  font-size: 24px;
}
.page-details span {
  color: var(--blackColor);
  font-size: 16px;
}
.page-details span a {
  text-decoration: none;
  transition: transform 0.3s ease;
}
.page-details span a:hover {
  transform: scale(1.1);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.page-details .rasquo {
  color: #333333;
  font-size: 30px;
  padding: 0 15px;
}
@media screen and (max-width:768px) {
  .page-details {
      padding: 12px 20px;
  }
}

/* Product-card-styles CSS 
.product_card {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  overflow: hidden;
  background-color: #ffffff; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  .product_card .product-img {
    position: relative;
    width: 100%;
    height: 250px;
    display: block;
    z-index: 1;
    overflow: hidden; 
}
    .product_card .product-img img {
      width: 100%;
      height:100%;
      object-fit:contain;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms; 
    }
    .product_card .product-img .hover-img {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      opacity: 0;
      visibility: hidden; 
    }
    .product_card .product-img .product-badge {
      background-color: var(--orangeColor);
      color: #ffffff;
      font-weight:400;
      padding: 2px 8px;
      display: inline-block;
      line-height: 25px;
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 10; 
    }
    .product_card .product-img .product-badge span {
      font-size:12px;
    }

  .product_card .product-description {
        position: relative;
        z-index: 1;
        padding:14px 12px;
        display:flex;
        flex-direction:column;
    }
    .product_card .product-description span {
      font-size: 10px;
      text-transform: uppercase;
      color: #787878;
      margin-bottom: 15px;
      letter-spacing: 0.75px;
      font-weight: 600; 
    }
    .product_card .product-description>a h6 { 
      font-size:15px;
      font-weight:600;
      color: var(--blackColor);
      margin-bottom: 8px; 
    }
    .product_card .product-description p {
      padding:3px 0;
      font-size: 14px;
      font-weight: 600;
      color: var(--darkgrayColor); 
    }
      .product_card .product-description p span {
        font-size: 14px;
        font-weight: 700;
        color: #aaaaaa;
        margin-right: 10px;
        text-decoration: line-through; 
    }
    .product_card .product-description .hover-content {
        position: absolute;
        width: calc(100% - 40px);
        top: -20px;
        left: 20px;
        right: 20px;
        opacity: 0;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
    }
     .product_card:hover .hover-content {
        opacity: 1;
        top: -50px;
    }

    .product_card .sold-out {
        position:absolute;
        top:10px;
        right:50%;
        transform:translateX(50%);
        color:var(--whiteColor);
        background:var(--blackColor);
        font-size:13px;
        border-radius:2px;
        padding:4px 10px;
        z-index: 20;
    }
  .product_card:hover .product-img .hover-img {
    opacity: 1;
    visibility: visible; 
  }
    .product-description .rating {
      line-height: 18px;
      margin-bottom: 5px;
  }
  .product-description .rating i {
      font-size: 10px;
      color: var(--orangeColor);
      margin-right: -4px;
  }
  
  .product-description .rating i:last-child {
      margin-right: 0;
  }
  
  .product_card .hover_content {
      position: absolute;
      bottom: 20%;
      left: 0;
      right: 0;
      opacity: 0;
      transition: all 0.4s ease-in-out;
      z-index: 1; 
      width:100%;
      display:flex;
      justify-content:space-between;
      gap:5px;
      padding:10px;
      z-index: 20;
  }
  .product_card:hover .hover_content {
      opacity: 1;
      transition: all 0.4s ease-in-out;
      bottom: 30%; 
  }
  .product_card .hover_content a {
      display:flex;
      justify-content:center;
      align-items:center;
      flex-wrap:nowrap;
      gap:3px;
      color: var(--blackColor);
      width: 100%;
  }
  .product_card .hover_content a>span{
      font-size: 12px;
      font-weight: 400; 
  }
  .product_card .hover_content a.add-to-cart, 
  .product_card .hover_content a.quick_view {
      padding:11px 3px;
      cursor: pointer;
      width:100%;
      text-transform: uppercase;
  }
  .product_card .hover_content a.add-to-cart .card-icon, 
  .product_card.hover_content a.quick_view .card-icon {
      font-size: 15px; 
  }
  .product_card .hover_content a.add-to-cart {
      background: var(--orangeColor);
      color: var(--whiteColor); 
      text-align: center;
  }
  .product_card .hover_content a.add-to-cart:hover {
      opacity:0.8;
  }
  .product_card .hover_content a.quick_view {
      background: var(--blackColor);
      color: var(--whiteColor);
      cursor: pointer;
  }
  .product_card .hover_content a.quick_view:hover {
     opacity: 0.8;
  }
  .product-action {
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 10px;
      gap:20px;
  }
  .product-action a {
      font-size: 20px;
      color: var(--blackColor);
      transition: all 0.3s ease-in-out;
  }
  .product-action a:hover {
      color: var(--orangeColor);
  }
@media screen and (max-width:768px) {
  .product_card .add-to-wishlist-btn {
      right:10px;
      opacity:1;
  }
  .product_card .hover_content {
      position:relative;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 1;
      transition: all 0.4s ease-in-out;
      z-index: 1; 
      display:flex;
      justify-content:space-between;
      gap:5px;
      padding:10px;
      z-index: 20;
  }
  .product_card .hover_content a.add-to-cart{
      padding:11px 10px;
     
  }
  .product_card .hover_content a.quick_view {
     display: none;
  }
}
@media screen and (max-width:400px) {
  .product_card .product-img {
      height: 170px;
  }
}
*/
/* Product_details_page */
.page-details {
  align-items: center;
  text-align: start;
  padding: 12px 30px;
  background:var(--whiteColor);
  color: var(--blackColor);
  font-weight:700;
  font-size: 24px;
}
.page-details span {
  color: var(--blackColor);
  font-size: 16px;
}
.page-details span a {
  text-decoration: none;
  transition: transform 0.3s ease;
}
.page-details span a:hover {
  transform: scale(1.1);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.page-details .rasquo {
  color: #333333;
  font-size: 30px;
  padding: 0 15px;
}
@media screen and (max-width:768px) {
  .page-details {
      padding: 12px 20px;
  }
}
.product-detail-card {
  width:100%;
  border-radius:2px;
  background-color: var(--whiteColor);
}
.product-card-top {
  padding:20px;
  margin:30px auto;
  display:grid;
  grid-template-columns:1fr 1fr;
}
.product-imgs {
  display:flex;
  gap:10px;
  justify-content:flex-start;
  align-items:start;
}
.img-display{
  overflow: hidden;
  background:var(--whiteColor);
  position:relative;
}
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blackColor);
  border: none;
  cursor: pointer;
  font-size: 14px;
  z-index: 10;
  width:26px;
  height:26px;
}
.prev-btn {
  left: -50px;
  opacity:0;
}
.next-btn {
  right: -50px;
  opacity:0;
}
.img-display:hover .prev-btn {
  transition:0.3s linear;
  opacity: 1;
  left:10px;
}
.img-display:hover .next-btn {
  transition:0.3s linear;
  opacity: 1;
  right: 10px;
}
.prev-btn:hover, .next-btn:hover {
  background: var(--whiteColor);
}
.img-showcase{
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
  height:400px;
}
.img-showcase img{
  transition: none;
  width:100%;
  min-width: 100%;
  height:auto;
  object-fit:contain;
  display: block;
  cursor: zoom-in;
}
.img-select{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap:10px;
}
.img-select .img-item{
  height:74px;
  width:74px;
  max-width:fit-content;
  border:0.5px solid #ccc;
  margin-right:5px;
  border-radius:1px;
}
.img-select .img-item.active {
  border: 2.4px solid var(--blackColor);
  opacity:0.5;
}
.img-select .img-item img {
  height:100%;
  width:100%;
  object-fit:contain;
  border-radius:1px;
}
.img-item:hover{
  opacity: 0.8;
}
@media screen and (max-width:768px) {
  .prev-btn {
      opacity: 1;
      left:10px;
  }
  .next-btn {
      opacity: 1;
      right:10px;
  }
  }
@media (max-width: 500px) {
.img-showcase{
  height:300px;
}
.product-imgs {
 flex-wrap:wrap;
}
.img-select{
  flex-direction: row;
}

}
@media (max-width: 400px) {
.img-showcase{
  height:260px;
}
.img-select .img-item{
  height:50px;      
  margin-right:2px;
  border-radius:2px;
}
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6000;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  width: 90%;
  height: 90%;
  margin: 2% auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoomed {
  cursor: move !important;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #f1f1f1;
  font-size: 32px;
  cursor: pointer;
  z-index: 1001;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px;
  cursor: pointer;
  font-size: 24px;
  border: none;
  border-radius: 4px;
  z-index: 1001;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#prevButton {
  left: 15px;
}

#nextButton {
  right: 15px;
}

.zoom-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  gap: 10px;
}

.zoom-button {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.zoom-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.product-info {
  display: flex;
  flex-direction: column;
  padding: 15px 40px;
}
.product-info .card-title {
  font-size:24px;
  color:var(--blackColor);
  font-weight:600;
  margin-bottom:10px;
}
.product-info .card-text {
  display:flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 7px;
  gap:10px;
  color:var(--darkgrayColor);
  font-size: 16px;
  padding-bottom:5px;
}
.product-info .card-text .product-price {
  color:var(--blackColor);
  font-weight:600;
  font-size: 18px;
}
.product-info .card-text .former_price {
  color:var(--grayColor);
  font-weight:400;
  font-size: 16px;
  text-decoration: line-through;
}
.product-info .card-text .percentage_offer {
  color:var(--orangeColor);
  font-weight:700;
  font-size: 16px;
}
.product-info .card-text .product_availability_tag {
  color:var(--whiteColor);
  background:rgba(0, 128, 0, 0.7);
  font-weight:500;
  font-size: 14px;
  border-radius:4px;
  padding:3px 16px;
  text-align: center;
}
.social-share-links-container {
  display: flex;
  justify-content: flex-start;
  gap:14px;
  flex-wrap: wrap;
  align-items: center;
  padding-top:8px;
  margin:10px 0;
}
.social-share-links-container a>i {
 color:var(--blackColor);
 font-size:14px;
 border:1px solid #ccc;
 padding:4px;
 width:24px;
 height:24px;
 cursor:pointer;
 transition: all .3s linear;
 display:flex;
 align-items: center;
 justify-content: center;
}
.social-share-links-container a .fa-x-twitter {
  background:var(--blackColor);
  color:var(--whiteColor);
}
.social-share-links-container a .fa-facebook {
  background:rgb(33, 116, 249);
  color:var(--whiteColor);
}
.social-share-links-container a .fa-whatsapp {
  background:var(--greenColor);
  font-size:17px;
  color:var(--whiteColor);
}
.social-share-links-container .share-title-container {
  display:flex;
  gap:8px;
  align-items: center;
  justify-content:flex-start;
  font-size:13px;
  color:var(--grayColor);
  cursor:pointer;
}
.social-share-links-container .share-title-container img {
  width:20px;
}

.social-share-links-container a>i:hover {
 color:var(--orangeColor);
}

.social-share-links-container a,
.product .add-to-wishlist-btn .heart-icon {
  position: relative;
}

.social-share-links-container a::after,
.product .add-to-wishlist-btn .heart-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--blackColor);
  color: var(--whiteColor);
  padding: 5px 10px;
  border-radius: 1px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  transition: opacity 0.3s, visibility 0.3s;
  clip-path: polygon(
      0% 0%, 100% 0%, 100% 80%, 55% 80%, 50% 100%, 45% 80%, 0% 80%
  );
  padding-bottom: 10px;
}

.social-share-links-container a:hover::after,
.product .add-to-wishlist-btn .heart-icon:hover::after {
  opacity: 1;
  visibility: visible;
}

.product-info .cart-form {
  margin-top: 18px;
}
.product-info .cart-form label {
  display:inline-block;
  margin-bottom:5px;
  font-size:16px;
  color:var(--darkgrayColor)
}

.quantity-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 1px;
  overflow: hidden;
}

.quantity-input-wrapper .quantity-btn {
  background: #f3f3f3;
  border: none;
  color: #333;
  font-size: 14px;
  padding: 12px 14px;
  cursor: pointer;
}
.quantity-input-wrapper .quantity-btn:hover {
  background: #e0e0e0;
}
.quantity-input-wrapper .quantity-input {
  text-align: center;
  border: none;
  font-size: 14px;
  -moz-appearance: textfield;
  width: 50px;
}
.quantity-input-wrapper .quantity-input::-webkit-inner-spin-button,
.quantity-input-wrapper .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.size-group, .color-group {
  margin-bottom: 20px;
}
.option-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.size-options, .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color-select-container {
  display:flex;
  justify-content:center;
  align-items:center; 
  gap:5px;
}
.size-option {
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius:5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 400;
  font-size:11px;
  background: white;
  padding:4px;
}
.size-option:hover {
  background:var(--blackColor);
  color:var(--whiteColor);
}
.color-option {
  width: 21px;
  height: 21px;
  border: 2px solid #ccc;
  border-radius:5px;
  cursor: pointer;
  position: relative;
}
.size-option.selected {
  border-color: var(--orangeColor);
  background-color: black;
  color: white;
}
.color-option.selected {
  border-color:var(--orangeColor);
  transform: scale(1.1);
}
.btn:disabled {
  opacity:0.6;
  cursor: not-allowed;
}
.hidden-input {
  display: none;
}
.cart-form .add-to-cart-btn-container  {
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
}
.cart-form .add-to-cart-btn-container .variant-add-to-cart-btn {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:50%;
  padding:12px;
  background:var(--orangeColor);
  color:var(--whiteColor);
  border:none;
  border-radius:1px;
  cursor:pointer;
  position: relative;
}
.product_card_form .add-to-cart-btn {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
  background:var(--orangeColor);
  color:var(--whiteColor);
  border:none;
  border-radius:1px;
  cursor:pointer;
  position: relative;
}
.product_card_form .add-to-cart-btn>span {
  color:var(--whiteColor);
  font-size: 12px;
}
.add-to-cart-btn-loader {
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 1px;
  background:var(--orangeColor);
  z-index: 10;
}
.add-to-cart-btn-loader .spinner {
  border: 1.2px solid #959595;
  border-left-color: #000000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 0.3s linear infinite;
  padding:6px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cart-form .add-to-cart-btn-container .variant-add-to-cart-btn .cart-icon{
 font-size:17px;
}
.cart-form .add-to-cart-btn-container .variant-add-to-cart-btn:hover {
  background:var(--greenColor);
  color:var(--whiteColor);
}
.whatsapp-order-form {
   margin-top: 20px;
}
.whatsapp-order-form .order-via-whatsapp-button-container  {
  margin:10px 0;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  text-align: center;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button {
  color:var(--whiteColor);
  background:green;
  padding:11px 30px;
  font-size:13px;
  display:flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  border-radius:2px;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button.disabled {
  opacity: 0.8;        
  cursor: not-allowed;
  pointer-events: auto;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button .fa-whatsapp{
  font-size:22px;
  padding-right:10px;
}
.whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button>a{
 font-size:12px;
 color:var(--whiteColor)
}
@media screen and (max-width:500px) {
  .whatsapp-order-form .order-via-whatsapp-button-container .order-via-whatsapp-button {
      width:100%;
  }
  .cart-form .add-to-cart-btn-container .variant-add-to-cart-btn {
      width:100%;
  }
}

.more-product-details-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid var(--formgrayColor);
  max-width: fit-content;
  margin: 15px auto;
  border-radius: 2px;
  position: relative; /* Added to position the sliding border */
}
.more-product-details-container .details-headings {
  padding: 10px 24px;
  color: var(--blackColor);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
.more-product-details-container .sliding-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--orangeColor);
  transition: all 0.3s ease-in-out;
  width: 0;
}

.more-product-details-container .details-headings.active {
  font-weight: 600;
  color: var(--orangeColor);
}
.product-description-container {
  padding:20px;
}
.product-description-container .product-description-title {
  color:var(--blackColor);
  font-size:22px;
  font-weight:500;
  padding-bottom:8px;
  margin-bottom:10px;
  border-bottom:1px solid var(--whiteColor);
}
.product-description-container .product-description-title>span {
  color:var(--orangeColor);
  font-size:20px;
  font-weight:500;
}
.product-description-container .description-text {
  list-style-type: disc;
  padding:3px 0;
  margin-left:22px;
  color:var(--grayColor);
  font-size:15px;
  font-weight:400;
  line-height:30px;
}
.container1, .container2, .container3 {
  margin-top:30px;
  padding:0 20px;
}
.container2 {
  display:flex;
  flex-direction:column;
  gap:10px;
}
.container2 .product_desc {
  display:flex;
  gap:10px;
  justify-content:flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin:16px 0;
}
.container2 .product_desc .product_colors_list,
.container2 .product_desc .product_sizes_list {
  border:1px solid #ccc;
  font-size:13px;
  padding:6px 10px;
  border-radius:5px;
  
}
.container2 .product_desc h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:500;
}
.container2 .product_desc p {
  color:var(--grayColor);
  font-size:15px;
  font-weight:400;
}
.product-description-container .container2,
.product-description-container .container3 {
display:none;
}

/* product review */
.main-product-reviews-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  justify-content:center;
  align-items: start;
}
@media (max-width: 768px) {
 .main-product-reviews-container {
      grid-template-columns:1fr;
  }
  .container1, .container2, .container3 {
      margin-top:20px;
      padding:5px;
  }
}
.review-form .star-rating {
  direction: rtl;
  display: inline-block;
}

.review-form .star-rating input {
  display: none; /* hidden radio buttons */
}

.review-form .star-rating label {
  font-size: 22px;
  color: var(--grayColor); 
  cursor: pointer;
}

.review-form .star-rating input:checked ~ label {
  color: #ffa500;
}

.review-form .star-rating label:hover,
.review-form .star-rating label:hover ~ label {
  color: #ffa500;
}

.review-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width:100%;
}
.review-form p {
  display: block;
  margin-bottom: 10px;
  width:100%;
}
.review-form input[type="text"] {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-bottom:1px solid #ccc;
  background:transparent;
  &:focus {
      border-bottom:1px solid var(--orangeColor);
  }
}
.review-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  resize: vertical;
  border-bottom:1px solid #ccc;
  background:transparent;
  &:focus {
      border-bottom:1px solid var(--orangeColor);
  }
}
.product-review-posts-container {
  margin-bottom:30px;
  border:1px solid #ccc;
  padding:20px;
  height:100%
}
.product-review-posts-container .total-reviews,
.product-review-posts-container .review-customer-name,
.product-review-posts-container .review-comment  {
  margin-bottom:20px;
  font-weight:400;
  font-size:17px;
  color:var(--darkgrayColor);
}
.product-review-posts-container .total-reviews>span,
.product-review-posts-container .review-customer-name>span,
.product-review-posts-container .review-comment>span  {
  font-weight:500;
  color:var(--blackColor);
}
.product-review-posts-container .user-review {
  margin-bottom:12px;
  border-bottom:1px solid #ffffff;
}
.product-review-posts-container .no-reviews-yet {
  color:var(--blackColor);
  font-size:16px;
  padding:10px 0;
  font-weight:400;
}
.product-review-posts-container .no-reviews-yet>span {
  color:var(--blackColor);
  font-size:16px;
  font-weight:700;
}
.product-review-posts-container p {
  color:var(--grayColor);
  font-size:16px;
  padding:4px 0;
  font-weight:500;
}
.product-review-posts-container p>span {
  color:var(--blackColor);
  font-size:16px;
  padding:8px 0;
  font-weight:400;
}
.product-review-posts-container .star-rating {
  color: #ffa500;

}
.product-review-posts-container .star-rating .star-customer-rated {
  color: #ffa500;
  font-size: 20px;
}
.product-review-posts-container .star-rating .star-unrated {
  color:var(--grayColor);
  font-size: 20px;
}

.review-container {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.review-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.review-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.review-score {
  font-size: 22px;
  font-weight: 700;
  margin-right: 10px;
}

.review-stars i {
  color: #ffa500;
  margin-right: 2px;
}

.review-count {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}

.review-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-bar {
  display: flex;
  align-items: center;
}

.review-bar-label {
  width: 60px;
  font-size: 14px;
}

.review-bar-progress {
  flex-grow: 1;
  height: 10px;
  background-color: #ddd;
  border-radius: 2px;
}

.review-bar-percentage {
  width: 40px;
  font-size: 14px;
  text-align: right;
}
.product_review_btn {
  display: inline-block;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--orangeColor);
  border-radius: 1px;
  transition: background-color 0.3s ease;
  cursor:pointer;
}
.product_review_btn:hover {
  background-color: #333;
}
.related-products {
  padding:30px;
}
.related-products  .related-products-subheading {
  color:var(--blackColor);
  font-weight:600;
  font-size:26px;
  padding:20px 0;
  text-align:center;
}
.related-products-container {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
  justify-content:center;
  align-items:center;
}

@media screen and (max-width:768px) {
.product-detail-section {
  margin: 20px 10px;
}
.product-card-top {
  grid-template-columns:100%;
  gap:10px;
  padding:10px;
}
.product-card-img-container {
 order:1;
}
.product-card-top  .product-card-img-sm {
 order:2;
}
.product-card-top .product-info {
 order:3;
}
.product-info {
  padding: 5px 8px;
}
.product-card-img-container {
  height: 400px;
}
.product-card-img-container .product-image {
  object-fit: contain;
}
.product-card-img-sm {
  width: 80px;
  height: 80px;
  border-radius:5px;
}
.product-card-img-sm img {
  object-fit: cover;
}
.more-product-details-container {
  gap:15px;
}
.more-product-details-container .details-headings {
  margin-bottom:8px;
}
.related-products {
  padding:5px;
  }
.related-products-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}
}

/* Blog post container styles */
.blog-content {
  margin:10px auto;
  line-height:30px;
  padding:20px 0;
}

/* Headings */
.blog-content h1 {
  color: #003C7E;
  font-size: 28px;
  margin: 22px 0;
  font-weight: 600;
  line-height: 30px;
}
.blog-content h1:hover {
  color: #fe7029;
}
.blog-content h2 {
  font-size: 24px;
  color: #14213d;
  margin: 22px 0;
  font-weight: 400;
}

.blog-content h3 {
  font-size: 1.65rem;
  color: #000000;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.blog-content h4 {
  font-size: 1.5rem;
  color: #4a4a4a;
  margin: 1.5rem 0 1rem;
  font-weight: 400;
}

/* Paragraphs */
.blog-content p {
  margin: 1.2rem 0;
  color: #444;
  line-height: 1.8;
}

/* Links */
.blog-content a {
  color: #fe7029;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-content a:hover {
  border-bottom-color: #fe7029;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin:16px 0;
  padding-left: 24px;
}

.blog-content li {
  list-style-type: disc;
  margin: 6px 0;
  color: #444;
}

/* Images */
.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Blockquotes */
.blog-content blockquote {
  padding: 1rem 2rem;
  border-left: 4px solid #fe7029;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}
.blog-content blockquote>p {
  background: #f8f9fa;
}

/* Code blocks */
.blog-content pre {
  background: #f6f8fa;
  background:#2d1052;
  padding: 1rem;
  border-radius: 4px;
  max-width: 100%;
  width:100%;
  font-size: 16px;
  white-space: pre-wrap; /* Allows wrapping of text inside <pre> */
  word-wrap: break-word; /* Break long words if needed */
  overflow-x: scroll;
  margin: 1.5rem auto;
  box-sizing: border-box;
}
.blog-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  font-weight:700;
  color:white;
  color: #ffcc00;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  overflow-x: auto;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

.blog-content th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Figure and captions */
.blog-content figure {
  margin: 2rem 0;
}

.blog-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Horizontal rule */
.blog-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

/* Custom classes for alignment */
.blog-content .text-left {
  text-align: left;
}

.blog-content .text-center {
  text-align: center;
}

.blog-content .text-right {
  text-align: right;
}

/* Meta information styling */
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.detailed_blog_tags .post-tag {
  display: inline-block;
  padding: 1px 20px;
  background: #f3f3f3;
  color: #fe7029;
  border-radius: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}


/* Responsive design */
@media (max-width: 768px) {
  .blog-content {
      padding: 20px 0;
  }

  .blog-content h1 {
      font-size: 2rem;
  }

  .blog-content h2 {
      font-size: 1.75rem;
  }

  .blog-content h3 {
      font-size: 1.5rem;
  }

  .blog-content h4 {
      font-size: 1.25rem;
  }

  .blog-content img {
      margin: 1.5rem auto;
  }

  .post-meta {
      flex-wrap: wrap;
      gap: 0.5rem;
  }
  .blog-content pre {
      padding: 0.5rem;
      max-width: 100%;
      font-size: 13px;
      overflow-x: scroll;
      margin: 1.5rem auto;
  }
}

    /* All products page /product-list */
    .products-container-page {
      padding:0 10px;
  }
  .products-container-page .categories-list {
      display:flex;
      justify-content: center;
      align-items: center;
      gap:10px;
      flex-wrap:wrap;
      background:var(--formgrayColor);
      padding:8px 0;
  }
  .filtered-products-container {
      margin-top:20px;
  }
  .no-filtered-product-category {
      text-align: center;
      color:var(--darkgrayColor);
      font-weight:700;
      font-size:18px;
      padding:5px 0;
      background: rgb(237, 223, 198);
  }
  .filtered-products-container .filter-icon {
      width:20px;
  }
  .filtered-products-container .filter-products-btn {
      display:none;
  }
  .products-container-page .categories-list .category-item {
      padding:5px 10px;
      border-radius:2px;
      color:var(--blackColor);
      font-weight:500;
      font-size:18px;
      position:relative;
      margin-bottom:2px;
  }
  .products-container-page .categories-list .category-item::after {
      content:"";
      position: absolute;
      bottom:0;
      left:50%;
      transform:translateX(-50%);
      width:0;
      height:2.8px;
      background:var(--orangeColor);
      margin-bottom:1px;
      transition:0.3s ease-in-out;
  }
  .products-container-page .categories-list .category-item:hover::after {
     width:80%;
  }
  .products-container-page .categories-list .category-item.active::after {
     width:80%;
  }
  
  .all-products-page-container {
      display:grid;
      grid-template-columns:1fr 5fr;
      gap:50px;
      justify-content:start;
  }
   .filters-container {
      display:block;
      padding-right:20px;
  }
  .side-category-container {
      border-bottom:1px solid var(--newgrayColor);
      padding:10px 0;
  }
  .categories-side-list a {
      color:var(--blackColor);
      font-size:20px;
      margin-bottom:6px;
      font-weight:500;
  }
  .product-subcategory-list a {
      color:var(--blackColor);
      font-size:16px;
      font-weight:400;
      padding-left:6px;
  }
  .brands-title {
      color:var(--blackColor);
      font-size:19px;
      font-weight:500;
  }
  .layout-selector {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 10px;
  }
  .layout-selector img {
      width:22px;
      height:22px;
      background: var(--formgrayColor);
      cursor: pointer;
      border-radius:1px;
      opacity:0.5;
  }
  .layout-selector img.active {
     opacity:1;
     background:var(--fromgrayColor);
     border:1px solid #ccc;
  }
  
  .layout-selector img:hover {
     opacity:0.8;
  }
  .products_list_page_container {
      display: grid;
      gap: 12px;
      justify-content: center;
      align-items: start;
      margin-top: 40px;
  }
  
  .products_list_page_container.columns-3 {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .products_list_page_container.columns-2 {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .products_list_page_container.columns-1 {
      grid-template-columns: 1fr;
  }
  .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px 0;
  }
  
  .step-links {
      display: flex;
      align-items: center;
      background-color:var(--whiteColor);
      border-radius: 2px;
      padding: 5px;
     
  }
  
  .step-links a {
      color: #333;
      text-decoration: none;
      padding: 8px 12px;
      margin: 0 2px;
      border-radius: 2px;
      transition: background-color 0.3s, color 0.3s;
  }
  
  .step-links a:hover {
      background-color: var(--blackColor);
      color: white;
  }
  .pagination-link-first, .pagination-link-last {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--formgrayColor);
      color: black;
      border-radius: 2px;
      padding: 6px 20px;
  }
  .current {
      padding: 8px 12px;
      background-color: var(--blackColor);
      color: var(--whiteColor);
      border-radius: 2px;
      margin: 0 5px;
  }
  .pagination-link {
      display:flex;
      align-items: center;
      justify-content:center;
  }
  .products-page-top {
      display: flex;
      justify-content: space-between;
      flex-wrap:wrap;
      align-items: center;
      margin-bottom: 20px;
      padding:10px 20px;
      border-radius:4px;
      background:var(--whiteColor);
      gap:40px;
  }
  .products-page-top h3 {
      padding-left:5px;
      position: relative;
      font-size: 22px;
      color: var(--blackColor);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: 600;
  }
  
  .products-page-top h3::before {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--orangeColor);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%); 
      left: -10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .products-page-top p {
     font-size:17px;
     color:var(--grayColor);
     font-weight:400;
  }
  .products-page-top p>span {
     color:var(--darkgrayColor);
     font-weight:500;
  }
  @media (max-width: 600px) {
      .step-links {
          flex-wrap: wrap;
          justify-content: center;
      }
      
      .step-links a, .current {
          margin: 2px;
      }
  }
  
  .search-input-container {
    position: relative;
    max-width:300px;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-input {
    width: 100%;
    padding: 12px 8px;
    padding-left:35px;
    border: 1px solid #e5e7eb;
    border-radius: 1px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
  }
  .search-input:focus {
    border-color: var(--orangeColor);
    box-shadow: 0 0 0 1px rgba(var(--orangeColor-rgb), 0.5);
  }
  .search-icon {
    position: absolute;
    left: 5px;
    font-size:18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grayColor);
  }
  @media screen and (max-width: 768px) {
    .search-input {
      padding-left:25px;
      margin:0 4px;
    }
  }

  .all-products-page-container .filters-mobile-menu .product-filters-close {
      display:none;
   }
   .filtering-sorting-container {
      display: flex;
      align-items: start;
      justify-content:start;
      flex-direction: column;
      gap:34px;
      background:var(--formgrayColor);
      padding:30px;
      border-radius:2px;
  }
  .filtering-sorting-container h4 {
     color:var(--blackColor);
     font-size:18px;
     font-weight:600;
     margin-bottom:15px;
  }
  
  .filtering-sorting-container select,
  .products-page-top select {
      padding:8px;
      border-radius:2px;
      background-color: #fff;
      font-size: 16px;
      font-weight:500;
      border:1px solid #ccc;
      cursor: pointer;
  }
  .filtering-sorting-container select {
      width:100%;
  }

  .filtering-sorting-container select:focus,
  .products-page-top select:focus {
      outline: none;
      border-color:var(--orangeColor);
      box-shadow: 0 0 0 2px rgba(188, 164, 55, 0.2);
  }
  
  /* Styling the options */
  .filtering-sorting-container select option {
      padding: 10px;
      background-color: #fff;
      color: #333;
  }
  .filtering-sorting-container select option:hover {
      background-color: var(--formgrayColor);
      color: #333;
      cursor:pointer;
  }
  /* Styling the selected option */
  .filtering-sorting-container select option:checked {
      background-color: var(--orangeColor);
      color: #fff;
  }
  
  /* For Firefox */
  .filtering-sorting-container select:-moz-focusring {
      color: transparent;
      text-shadow: 0 0 0 #000;
  }
  /* Slider Styling */
  .price-filter {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  .price-filter label {
      font-size: 16px;
      color:var(--blackColor);
      margin-bottom:8px;
      font-weight:500;
  }
  
  .price-filter input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 6px;
      background: #ddd;
      border-radius: 5px;
      outline: none;
  }
  
  .price-filter input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 16px;
      height: 16px;
      background:var(--orangeColor);
      cursor: pointer;
      border-radius: 50%;
  }
  .availability-filter {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .clear-filters-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1rem;
      background-color: #f3f4f6;
      color: #374151;
      border: 1px solid #e5e7eb;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .clear-filters-btn:hover {
      cursor: pointer;
      background-color: #e5e7eb;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .clear-filters-btn .btn-icon {
      width: 1.25rem;
      height: 1.25rem;
      margin-right: 0.5rem;
  }
  .clear-filters-btn.compact {
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
  }
  

  @media screen and (max-width:950px) {
      .products_list_page_container.columns-3 {
          grid-template-columns:repeat(3, 1fr);
          gap:10px;
          justify-content:center;
          align-items:start;
          margin-top:40px;
      }
  }
  @media screen and (max-width:800px) {
  .all-products-page-container {
      grid-template-columns:100%;
      gap:10px;
  }
  .products_list_page_container.columns-3 {
      grid-template-columns:repeat(2, 1fr);
      gap:5px;
  }
  .products-container-page .categories-list .category-item {
      padding:2px 5px;
      font-size:16px;
      margin-bottom:2px;
  }
  .filtered-products-container .filter-products-btn {
      display:block;
  }
  
  .filters-container {
      display:none;
  }
  .all-products-page-container .filters-mobile-menu {
      position:fixed;
      top:0;
      left:-100%;
      width:0;
      display:flex;
      align-items:start;
      justify-content:start;
      flex-direction:column;
      gap:10px;
      padding:60px 20px;
      background:var(--whiteColor);
      color:var(--blackColor);
      z-index:2000;
      min-height: 100vh;
      max-height: 100vh;
      height: auto;
      overflow-y: auto;
      transition:0.3s ease-in-out;
  }
  .all-products-page-container .filters-mobile-menu::-webkit-scrollbar {
      width:2px;
      }
  .all-products-page-container .filters-mobile-menu::-webkit-scrollbar-track {
      background-color: #f1f1f1;
      }
  
  .all-products-page-container .filters-mobile-menu::-webkit-scrollbar-thumb {
      background-color: var(--blackColor);
      }
  
  .all-products-page-container .filters-mobile-menu .product-filters-close {
      display:block;
      position:absolute;
      top:25px;
      right:10px;
      width:24px;
  }
  .all-products-page-container .filters-mobile-menu.active {
      width:60%;
      gap:10px;
      left:0;
  }
  }
  @media screen and (max-width:320px) {
  .products_list_page_container.columns-4 {
      grid-template-columns:1fr;
  }
  }

  /* Contact page */
.contact-hero-wrap {
  height:40vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.contact-spad {
    display:flex;
    flex-direction: column;
    gap:20px;
    padding:30px;
    justify-content:center;
    align-items:center;
    background:var(--blackColor);
}  
.contact__widget {
	  margin-bottom:10px;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    padding:10px;
}

.contact__widget ion-icon {
	font-size: 25px;
	color: var(--orangeColor);
}

.contact__widget h4 {
	color: var(--whiteColor);
	font-weight: 500;
    font-size:18px;
	margin-bottom: 6px;
	margin-top: 18px;
}

.contact__widget p {
	color: var(--dimwhiteColor);
    font-size:17px;
    text-align: center;
}

.contact-form-map-container {
    display:grid;
    grid-template-columns:1fr 2fr 2fr;
    gap:20px;
    justify-content:flex-start;
    align-items:start;
    margin-bottom:30px;
    margin-top:10px;
    background:var(--whiteColor);
}
@media screen and (max-width: 1100px) {
    .contact-form-map-container {
         grid-template-columns:repeat(2, 1fr);
     }
 }
@media screen and (max-width: 768px) {
   .contact-form-map-container {
        grid-template-columns:1fr;
    }
}
.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}
/*---Contact Form --*/
.contact-form-spad {
    padding:10px;
}

.contact__form__title h2 {
	margin-bottom:10px;
    padding-left:10px;
    font-size:21px;
    font-weight:600;
    color:var(--blackColor);
}
@media screen and (max-width:768px) {
.breadcrumb__option {
	text-align: center;
}
.contact__form__title h2 {
    font-size:24px;
    text-align: center;
}
.contact-spad {
    flex-direction: row;
    gap:10px;
    flex-wrap: wrap;
}
.contact__widget {
	margin-bottom:1rem;
    gap:5px;
    padding:8px;
}
.contact__widget i {
	font-size: 24px;
}

.contact__widget h4 {
	font-weight: 600;
    font-size:16px;
	margin-bottom:4px;
	margin-top: 8px;
}
.contact-form-spad {
    padding:8px;
}

}
.contact-form {
    max-width:700px;
    margin:0 auto;
    padding:10px;
}

.contact-form input {
	width: 100%;
	height:50px;
	font-size: 15px;
	color: var(--grayColor);
	padding-left: 20px;
	margin-bottom:30px;
	border: 1px solid var(--formgrayColor);
	border-radius: 1px;
}

.contact-form input::placeholder {
	color: var(--grayColor);
}

.contact-form textarea {
	width: 100%;
	height:200px;
	font-size: 15px;
	color: var(--grayColor);
	padding-left: 20px;
	margin-bottom: 24px;
	border: 1px solid var(--formgrayColor);
	border-radius: 1px;
	padding-top:12px;
	resize: vertical;
}

.contact-form input:focus, 
.contact-form textarea:focus {
	border: 1px solid var(--orangeColor);
}
.contact-form form textarea::placeholder {
	color: var(--grayColor);
    font-size:14px;
}
#message-button {
    width:100%;
    padding:14px 14px;
    color:var(--whiteColor);
    border-radius:1px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    background:var(--orangeColor);
}

#message-button:hover {
    opacity:0.8;
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  text-align: center;
}

.error-image {
  width: 300px;
  max-width: 80%;
  animation: float 6s ease-in-out infinite;
}

.error-title {
  color: var(--orangeColor);
  font-size: 34px;
  margin: 12px 0;
  animation: fadeIn 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-message {
  font-size: 20px;
  color: var(--darkgrayColor);
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 0;
  animation: fadeIn 1.5s ease-out;
}

.home-button {
  display: inline-block;
  padding: 1rem 2rem;
  margin-top: 16px;
  background: linear-gradient(45deg, hsl(39, 93%, 52%), #ff6b6b);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 2s ease-out;
}

.home-button:hover {
  transform: translateY(-3px);
  opacity:0.8;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-title {
    font-size: 28px;
  }

  .error-message {
    font-size: 19px;
    padding: 10px;
  }

  .error-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .error-title {
    font-size: 24px;
  }

  .error-message {
    font-size: 17px;
  }

  .home-button {
    padding: 0.8rem 1.6rem;
  }
}