/* ==============================
   CSS Variables & Fonts
============================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --primary-color:  #6d0014 
    /*#0866FF #7a077d */ 
  ;
  /* --secondary-color: #0073e6; */
  --secondary-color: #7a077d;
  --purple-color: #6d0014; /*#800080;*/
  --dark-color: #666;
  /*#000*/
  
  --light-color: #fff;
  --background-color: #e9ebef;
  --red-color: #d93025;
  --green-color: #1e7e34;
  --link-color: #2E2E2E;
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --h1-size: 2.5em;
  --h2-size: 2em;
  --h3-size: 1.75em;
  --h4-size: 1.5em;
  --h5-size: 1.25em;
  --h6-size: 1em;
  --p-size: 1.05rem;
  --a-size: 1.1rem;
  --nav-a-size: 1rem;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;

}

/* ==============================
   Reset & Base Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: var(--body-font);
  background-color: var(--background-color);
  font-weight: var(--font-weight-400);
}

p {
  font-size: var(--p-size);
  line-height: 1.6;
  margin-bottom: 1em;
  font-family: inherit;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: inherit;
}

a:hover {
  color: var(--purple-color);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  color: var(--dark-color);
  margin-bottom: 0.5em;
  font-weight: var(--font-weight-600);
    position: relative;
}

h1 {
  font-size: var(--h1-size);
  color: var(--primary-color);
}

h2 {
  font-size: var(--h2-size);
  color: var(--primary-color);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

.ptb-70 {
  padding: 70px 0px;
}

.ptb-60 {
  padding: 60px 0px;
}

.ptb-50 {
  padding: 50px 0px;
}

.ptb-40 {
  padding: 40px 0px;
}

.ptb-30 {
  padding: 30px 0px;
}

.ptb-20 {
  padding: 20px 0px;
}

.ptb-10 {
  padding: 10px 0px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* ==============================
   Buttons
============================== */
.button-primary,
.button-outline {
  display: inline-block;
  margin: 10px 5px;
  border-radius: 6px;
  /* font-weight: 600; */
  text-decoration: none;
  transition: all 0.3s ease;
}

.button-primary {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.button-primary:hover {
  background-color: var(--purple-color);
  transform: translateY(-2px);
}

.button-outline {
  padding: 12px 24px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* ==============================
   Container
============================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

/* ==============================
   Utilities
============================== */
.white {
  background-color: var(--light-color);
}

.greay {
  background-color: #e9ebef;
}

/* ==============================
   Header
============================== */
/* header#masthead { max-width: 1200px; margin: auto; padding: 0 20px; } */
.header-section {
  background-color: var(--light-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-color);
  position: relative;
  z-index: 100;
}

.site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}

.site-title a {
  color: var(--dark-color);
  font-size: 28px;
  text-decoration: none;
  /* font-weight: bold; */
}

.site-description {
  font-size: var(--p-size);
  color: var(--dark-color);
}

img.custom-logo {
  width: 100%;
  height: 60px;
}

.logo {
  display: none;
  max-width: 100%;
  height: auto;
}

.logo-primary {
  display: block;
}

.light-mode .logo-primary,
.light-mode .logo-white {
  display: none;
}

.light-mode .logo-black {
  display: block;
}

.dark-mode .logo-primary,
.dark-mode .logo-black {
  display: none;
}

.dark-mode .logo-white {
  display: block;
}

/* ==============================
   Navigation
============================== */
.main-navigation {
  display: flex;
  justify-content: flex-end;
}

#primary-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

#primary-menu>li {
  position: relative;
  padding: 20px 15px;
}

/*#primary-menu>li>a {*/
/*  font-size: var(--nav-a-size);*/
/*  color: var(--dark-color);*/
/*   font-weight: 300; */
/*  padding: 7px 0;*/
/*  transition: color 0.3s;*/
/*}*/

#primary-menu>li>a {
    /*color: var(--dark-color);*/
    font-weight: 500;
    color: #212121;
    padding: 7px 0;
    transition: color 0.3s;
    line-height: 1rem;
    margin: auto;
    text-transform: uppercase;
    font-size: 15px;
    padding-right: 20px;
}

#primary-menu>li>a:hover,
#primary-menu>li.current-menu-item>a {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: -80px;
  min-width: 300px;
  background: var(--light-color);
  display: none;
  flex-direction: column;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px;
  list-style: none;
  z-index: 999;
}

#primary-menu li:hover>.sub-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.sub-menu li a {
  font-size: var(--nav-a-size);
  color: var(--link-color);
  /* padding: 7px 12px; */
  /*margin: 8px;*/
   margin: 0px;
  display: block;
   font-weight: 600; 
  transition: all 0.3s ease;
  position: relative;
  /*padding: 5px 0 5px 25px;*/
  padding: .7rem 1rem;
}

.sub-menu li a{
    border-bottom: solid 1px #eaeaea;
}

.sub-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}


#primary-menu .sub-menu a.submenu-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105"; /* fa-angle-right */
    margin-right: 8px;
    display: inline-block;
}

/*.sub-menu li a::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 7px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  width: 12px;*/
/*  height: 12px;*/
/*  background-image: url('http://localhost/hello/wp-content/uploads/2025/10/arrow-right-336-svgrepo-com.svg');*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*}*/

/*.sub-menu li a:hover::before {*/
/*  background-image: none;*/
/*  -webkit-mask: url('http://localhost/hello/wp-content/uploads/2025/10/arrow-right-336-svgrepo-com.svg') no-repeat center;*/
/*  mask: url('http://localhost/hello/wp-content/uploads/2025/10/arrow-right-336-svgrepo-com.svg') no-repeat center;*/
/*  background: #fff !important;*/
/*}*/

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-color);
    padding: 10px 0;
  }

  .main-navigation.active {
    display: flex;
  }

  #primary-menu {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  #primary-menu>li {
    width: 100%;
    padding: 0;
  }

  .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    box-shadow: none;
    background-color: var(--light-color);
  }

  #primary-menu li.menu-item-has-children.active>.sub-menu {
    display: flex;
  }

  .sub-menu li a {
    padding-left: 25px;
  }
}


.upk-salf-slider-wrapper {
  display: flex;
  flex-direction: row;
  background: var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 250px;
  /* padding: 30px; */
  position: relative;
}

/* Slide Item */
.upk-salf-item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}

.swiper-slide-active .upk-salf-title,
.swiper-slide-active .upk-salf-desc,
.swiper-slide-active .upk-salf-button {
  opacity: 1;
}

.upk-salf-image-wrap {
  height: 100%;
  width: 100%;
}

.upk-xanc-img {
  display: block;
  width: 100%;
  /* height: 800px; */
  /* object-fit: cover; */
}

.upk-salf-content-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  /* max-width: 460px; */
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(15px);
  transition: backdrop-filter 0.9s;
  padding: 20px;
}

.upk-salf-title {
  font-size: 23px;
  /* font-weight: 700; */
  line-height: 1.2;
  color: var(--dark-color);
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
}

.upk-salf-desc {
  color: var(--dark-color);
  font-size: var(--p-size);
  line-height: 1.6;
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
}

.upk-salf-button {
  opacity: 0;
}

.upk-salf-button .link {
  color: var(--dark-color);
  cursor: pointer;
  /* font-weight: 600; */
  text-decoration: none;
  text-transform: capitalize;
  font-size: var(--p-size);
  transition: all 0.3s ease;
}

.upk-salf-button .link:hover {
  color: var(--dark-color);
}

.link--arrowed {
  display: inline-block;
}

.link--arrowed .arrow-icon {
  position: relative;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.link--arrowed .arrow-icon--circle {
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
  transition: stroke-dashoffset 0.3s ease;
}

.link--arrowed g {
  stroke: currentColor;
  color: var(--dark-color);
}

.link--arrowed:hover .arrow-icon {
  transform: translateX(5px);
}

.link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

.link--arrowed:hover g {
  color: var(--dark-color);
}

/* Scroll Button */
.upk-page-scroll {
  position: absolute;
  bottom: 8%;
  right: 5%;
  transform: rotate(90deg);
  z-index: 1;
  display: none;
}

.arrow-slide {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  z-index: 0;
}

.long-arrow-left {
  display: block;
  margin: 30px auto;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--dark-color);
  border-left: 2px solid var(--dark-color);
  transform: rotate(-135deg);
}

.long-arrow-left::after {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: var(--dark-color);
  transform: rotate(-45deg) translate(8px, 3px);
  position: relative;
}

.arrow-up:hover .arrow-slide {
  transform: translateY(200%);
  transition: all 0.5s ease-in-out;
}

/* Navigation & Pagination */
.upk-salf-nav-pag-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.upk-salf-navigation {
  margin-top: 40px;
  margin-right: 2px;
}

.upk-button-next {
  margin-top: 15px;
  transform: rotate(90deg);
}

.upk-button-prev {
  transform: rotate(-90deg);
}

/* Pagination Bullets */
.upk-salf-pagi-wrap {
  position: absolute;
  top: 43%;
  right: 22px;
}

.swiper-pagination-bullet {
  background-color: transparent;
  opacity: 0.8;
}

.swiper-pagination-bullet--svg-animation {
  width: 20px;
  height: 20px;
  margin: 6px -7px;
  display: inline-block;
}

.swiper-pagination-bullet--svg-animation svg {
  transform: rotate(-90deg);
}

.swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: var(--background-color);
  fill: transparent;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active .svg__circle {
  stroke: var(--primary-color);
  stroke-dasharray: 75;
  stroke-dashoffset: 0;
  animation: progress 4s ease-in-out 1 forwards;
}

.swiper-pagination-bullet-active .svg__circle-inner {
  fill: var(--background-color);
  stroke: var(--light-color);
}

/* Keyframes */
@keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Responsive Layouts */
@media (min-width: 768px) {
  .upk-salf-slider-wrapper {
    height: 300px;
    /* padding: 60px; */
  }

  .upk-page-scroll {
    bottom: 4%;
    display: block;
  }

  .upk-salf-title {
    font-size: 40px;
  }

  .upk-salf-content-wrap {
    max-width: 400px;
    padding: 40px 0 40px 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }

  .upk-salf-image-wrap {
    width: 80%;
  }

  .upk-salf-navigation {
    margin-top: 60px;
    margin-right: 20px;
  }

  .upk-salf-pagi-wrap {
    margin-right: 47px;
  }

  .swiper-pagination-bullet--svg-animation {
    margin: 6px 0;
  }
}

@media (min-width: 1024px) {
  .upk-salf-slider-wrapper {
    height: 450px;
    /* padding: 70px; */
  }

  .upk-page-scroll {
    bottom: 9%;
  }

  .upk-salf-title {
    font-size: 50px;
  }

  .upk-salf-content-wrap {
    max-width: 460px;
    padding: 50px 0;
  }

  .upk-salf-desc,
  .upk-salf-button .link {
    font-size: 16px;
  }

  .upk-salf-image-wrap {
    width: 70%;
  }

  .upk-salf-navigation {
    margin-top: 85px;
    margin-right: 30px;
  }

  .upk-salf-pagi-wrap {
    margin-right: 53px;
  }

  .swiper-pagination-bullet--svg-animation {
    margin: 6px -5px;
  }
}

@media (min-width: 1440px) {
  .upk-salf-slider-wrapper {
    height: 500px;
    /* padding: 80px; */
  }

  .upk-salf-title {
    font-size: 55px;
  }
}

/* ===================================================== */
.swiper-button-next,
.swiper-button-prev {
  background-color: var(--dark-color);
  color: var(--light-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: var(--p-size);
  color: var(--light-color);
}

/* ============================================================== 
ABOUT
============================*/
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.breadcrumb {
  padding: 4rem 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25));
}

.breadcrumb .breadcrumb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.breadcrumb h1 {
  font-size: 2rem;
  margin: 0;
}

.breadcrumb p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav {
  margin-top: 1rem;
}

.breadcrumb-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .5rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.9);
}

/* About Block */
.about-block {
  padding: 3.5rem 0;
}

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

/* 
.about-text h2 {
  font-size: 1.8rem;
  margin: 0 0 .75rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.6;
} */

.btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--card-shadow);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--dark);
}

.about-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* font-size: 18px; */
  transition: transform .2s;
}

.video-play:focus,
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

/* Fun Facts */
.theme-bg {
  background: #f7fbf8;
  padding: 2rem 0;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 1rem;
  margin: 0;
}

/* .fact {
  text-align: center;
  padding: 1rem;
  background: transparent;
}

.fact h3 {
  font-size: 1.5rem;
  margin: 0;
}

.fact p {
  margin: .5rem 0 0;
  color: var(--muted);
} */

/* Experience */
/* .experience {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header small {
  display: block;
  color: var(--primary);
  font-weight: 600;
}

.section-header h2 {
  margin: .5rem 0 0;
  font-size: 1.6rem;
} */

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-item h4 {
  margin: 0 0 .25rem;
}

.experience-media {
  position: relative;
}

.experience-media img {
  width: 100%;
  border-radius: 12px;
}

.experience-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: .6rem .8rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

/* About Secondary */
.gray-bg {
  background: #fbfbfd;
  padding: 3rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.about-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.large-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.small-img {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 120px;
  border-radius: 8px;
  border: 4px solid #fff;
  box-shadow: var(--card-shadow);
}

.years {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 8px;
  text-align: center;
}

/* CTA */
/* .cta {
  margin: 2rem 0;
  padding: 1.25rem;
  background: linear-gradient(90deg, var(--primary), #0a54d6);
  color: #fff;
  text-align: center;
} */

/* .cta a {
  color: #fff;
  font-weight: 700;
} */

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.team-card img {
  display: block;
  width: 100%;
  height: auto;
}

.team-card figcaption {
  padding: 1rem;
}

.team-social {
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: .5rem 0 1rem;
}

/* How It Works */
.works-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}

.tab {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: .6rem .8rem;
  border-radius: 8px;
  cursor: pointer;
}

.tab.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.works-pane {
  display: none;
}

.works-pane.active {
  display: block;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.testimonial-carousel blockquote {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

/* Responsive rules */
@media (min-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr 420px;
  }

  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .about-secondary-grid {
    grid-template-columns: 420px 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .works-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 420px 1fr;
  }
}

@media (max-width: 699px) {
  .breadcrumb {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================ */

/* .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--dark-color);
  position: relative;
} */

.section-title {
  position: relative;
  text-align: center;
  font-size: 2rem;
  /* color:var(--dark-color); */
  display: table;
  margin: 1rem auto;
  padding: 0 1rem;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
}

.section-title::before {
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}

.section-title::after {
  right: 0;
  transform: translateX(100%) translateY(-50%);
}


.category-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.category-card {
  border: 1px solid var(--light-color);
  overflow: hidden;
  text-align: center;
  background-color: var(--light-color);
  transition: box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.category-card img:hover {
    transform: scale(1.1);
}

.overhide {
    overflow: hidden;
}

.category-card h3,
.product-title {
  font-size: var(--h5-size);
  margin: 0.5rem 0;
  color: var(--link-color);
    font-weight: 500;
    line-height: 24px;
}

.category-card:hover,
.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.new-arrivals .swiper {
  position: relative;
}

.new-arrivals .swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card {
  background: var(--light-color);
  border: 1px solid var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  transition: box-shadow 0.3s ease;
  padding: 10px;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.price {
  /* font-weight: bold; */
  color: var(--dark-color);
  margin-bottom: .5rem;
}

.swiper-pagination-bullet {
  background: var(--dark-color);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--light-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.blog-title a {
  text-decoration: none;
  color: inherit;
}

.blog-title a:hover {
  text-decoration: none;
}

.blog-excerpt {
  font-size: var(--p-size);
  color: var(--dark-color);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  /* font-weight: 600; */
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
}

.read-more:hover {
  text-decoration: none;
}


.testimonial-card {
  /* background: var(--light-color); */
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.testimonial-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-author {
  /* font-weight: bold; */
  color: var(--dark-color);
  font-size: 1rem;
}

.swiper-pagination-bullet {
  background-color: var(--primary-color);
}

section.category-section,
section.related-products,
.new-arrivals {
  position: relative;
}

section.category-section::before,
section.related-products::before,
.new-arrivals::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(http://localhost/hello/wp-content/uploads/2025/10/pattern.png);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

/* #process, section.related-products {
  overflow-x: hidden;
  position: relative;
}

#process::before, section.related-products::before{
      content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(http://localhost/hello/wp-content/uploads/2025/10/pattern-png-30782.png);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
} */

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .section-title::before,
  .section-title::after {
    width: 25px;
    /* Make lines smaller on mobile */
  }

  .section-title::before {
    left: -30px;
  }

  .section-title::after {
    right: -30px;
  }
}

#process {
  overflow-x: hidden;
}

.steps-pane img {
  height: 100px;
  margin-top: 18px;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
}

.pane-warp {
  height: 140px;
  width: 25px;
  margin-left: 20%;
  margin-top: 20px;
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  -o-transform: skewX(15deg);
  -moz-transform: skewX(15deg);
}

.steps-pane {
  height: 140px;
  width: 140px;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.inverted-pane-warp {
  height: 140px;
  width: 25px;
  margin-left: 20%;
  -ms-transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
}

.inverted-steps-pane {
  height: 140px;
  width: 140px;
  background: #bcbcbc;
  margin-left: 30px;
  box-shadow: 7px 0px 5px #bcbcbc;
}

.inverted-steps-pane p {
  -ms-transform: skewX(15deg);
  -webkit-transform: skewX(15deg);
  -o-transform: skewX(15deg);
  -moz-transform: skewX(15deg);
  padding: 20px 10px 10px 10px;
}

@media (min-width: 900px) {
  .steps-timeline {
    border-top: 5px double #fc6429;
    padding-top: 55px;
    margin-top: 0px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .steps-one,
  .steps-two,
  .steps-three,
  .steps-four,
  .steps-five {
    float: left;
    width: 20%;
    margin-top: -125px;
  }

  .step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-left: 39%;
    border: 2px solid #fc6429;
  }

  .verticle-line {
    position: absolute;
    height: 57px;
    width: 5px;
    margin-left: 10px;
    marker-top: 10px;
  }

  .steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10.1px;
    border-radius: 50%;
    background: var(--green-color);
  }

  .end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 19px;
    margin-left: -10px;
  }

  .inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    /* margin-top: 19px; */
    margin-top: -17.4%;
    margin-left: 11%;
  }
}

@media (max-width: 899px) {
  #process .container-fluid {
    width: 50%;
  }

  .steps-timeline {
    border-left: 5px double var(--green-color);
    margin-left: 35px;
  }

  .steps-one,
  .steps-two,
  .steps-three,
  .steps-four,
  .steps-five {
    margin-left: -25px;
  }

  .step-wrap,
  .steps-stops {
    float: left;
  }

  .steps-timeline {
    border-left: 2px solid var(--primary-color);
    margin-left: 30px;
  }

  .pane-warp {
    margin-left: 30%;
  }

  .inverted-pane-warp {
    margin-left: 30%;
  }

  .verticle-line {
    position: absolute;
    width: 125px;
    height: 5px;
    margin-left: 5px;
    margin-top: 10px;
  }

  .steps-stops {
    height: 25px;
    width: 25px;
    margin: 11px 10px;
    border-radius: 50%;
    background: #fc6429;
  }

  .step-wrap {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: transparent;
    margin-top: 125px;
    margin-left: -2px;
    border: 2px solid #fc6429;
  }

  .end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: -45px;
    margin-left: 15px;
  }

  .inverted-end-circle {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: absolute;
    margin-top: 280px;
    margin-left: 15px;
  }
}

@media (max-width: 600px) {
  #process .container-fluid {
    width: 90%;
  }
}

@media (max-width: 400px) {
  .verticle-line {
    width: 105px;
  }

  .blog-section {
    display: none;
  }
}

.back-orange {
  background: #fc6429;
}

.back-blue {
  background: rgb(59, 37, 132);
}

/* ===================================
   FAQ Accordion Styles
=================================== */

.faq-section h2 {
  text-align: center;
  font-size: var(--h2-size);
  margin-bottom: 30px;
  color: var(--dark-color);
}

.card_accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion .accordion-item {
  border-bottom: 1px solid var(--primary-color);
  background-color: var(--light-color);
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion .accordion-item button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--primary-color);
  border: none;
  outline: none;
  font-size: 1.1rem;
  /* font-weight: 500; */
  color: var(--light-color);
  padding: 18px 20px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.accordion .accordion-item button:hover {
  background: var(--purple-color);
}

.accordion .accordion-title {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.accordion .icon {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 20px;
  height: 20px;
  /* border: 1px solid var(--primary-color); */
  border-radius: 50%;
}

.accordion .icon::before,
.accordion .icon::after {
  content: '';
  position: absolute;
  background: var(--light-color);
  transition: all 0.2s ease;
}

.accordion .icon::before {
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
}

.accordion .icon::after {
  top: 4px;
  left: 9px;
  width: 2px;
  height: 12px;
}

.accordion button[aria-expanded="true"] .icon::after {
  height: 0;
}

/* Accordion Content */
.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  padding: 15px 20px 20px;
  max-height: 500px;
  opacity: 1;
}

.accordion-content p {
  font-size: var(--p-size);
  /* font-weight: 300; */
  color: var(--dark-color);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: var(--a-size);
  }

  .accordion .accordion-item button {
    font-size: 1rem;
    padding: 16px;
  }

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

.two-column-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-card,
.faq-card {
  flex: 1 1 45%;
  /* background: var(--light-color); */
  /* padding: 30px; */
  border-radius: 8px;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06); */
}

/* .about-card h2, .faq-card h2 {
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: var(--a-size)
} */

.about-card p {
  line-height: 1.6;
  color: var(--dark-color);
  font-size: var(--p-size);
}

/* Adjust layout for small screens */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }

  .about-card,
  .faq-card {
    flex: 1 1 100%;
  }
}

/* ============================================== */
.client-logo-slider {
  padding: 50px 0;
  background-color: var(--light-color);
}

.clientSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.clientSwiper img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.clientSwiper img:hover {
  transform: scale(1.05);
}

/* ========================================== */

.counters-section {
  text-align: center;
}

.counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* .counter-card {
  flex: 1 1 calc(25% - 30px);
  background: var(--light-color);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
} */

.counter-card {
    flex: 1 1 calc(20% - 30px);
    background: var(--light-color);
    padding: 14px;
    border-radius: 0.7rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    border: 0.125rem solid var(--primary-color);
}

.counter-icon img {
    border: 0.125rem solid var(--primary-color);
    border-radius: 100px;
    padding: 10px;
}

.counter-card:hover {
  transform: translateY(-5px);
}

.counter-number {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-600);
  color: var(--primary-color);
}

.counter-label {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--dark-color);
}

@media (max-width: 992px) {
  .counter-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .counter-card {
    flex: 1 1 100%;
  }
}


/* ============================================== */
.section-contacts .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.card_video,
.card_contact_form_7 {
  flex: 1 1 48%;
  /* background: var(--light-color); */
  /* padding: 30px; */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card_contact_form_7 {
  padding: 30px;
}

.card_video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* .wpcf7 label {
  font-weight: 600;
  display: block;
  color: var(--dark-color);
} */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 5px 15px;
  border: 2px solid var(--dark-color);
  /* border-radius: 6px; */
  font-size: var(--p-size);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  /* box-shadow: 0 0 6px rgba(0, 115, 230, 0.5); */
}

.wpcf7 textarea {
  min-height: 50px;
}

.wpcf7 input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 1rem 5rem;
  font-size: 1.1rem;
  /* font-weight: 700; */
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--purple-color);
}

/* Error messages */
.wpcf7 .wpcf7-not-valid-tip {
  color: var(--red-color);
  font-size: var(--p-size);
  margin-top: 6px;
  display: block;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
  border-color: var(--red-color) !important;
  background-color: var(--light-color);
}

.wpcf7-mail-sent-ok {
  color: var(--green-color);
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  /* font-weight: 600; */
}

.wpcf7-checkbox,
.wpcf7-radio {
  margin-bottom: 15px;
}

.wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item-label {
  cursor: pointer;
  /* font-weight: 500; */
}

@media (max-width: 480px) {
  .wpcf7 {
    padding: 0 15px;
  }

  .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 14px 0;
    font-size: 1.2rem;
  }
}

/* ================= Hover ============================== */
.cursor-boxs {
  position: relative;
  /* border: 2px solid var(--primary-color); */
  overflow: hidden;
}

.cursor-boxs::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.452),
      transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
}

.cursor-boxs:hover::before {
  top: 100%;
  left: 100%;
}

/*----- cursor-boxs -----*/

.cboxs {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.cboxs span {
  position: relative;
  display: block;
}

/* BEFORE & AFTER of main box */
/* .cboxs::before,
.cboxs::after,
.cboxs span::before,
.cboxs span::after {
  content: "";
  position: absolute;
  width: 103%;
  height: 2px;
  border: 2px solid var(--primary-color);
  transition: all 0.4s;
  z-index: 9999;
} */

/* Top & bottom lines */
/* .cboxs::before {
  left: 103%;
  top: 0;
}

.cboxs::after {
  left: 103%;
  bottom: 0;
} */

/* Left & right lines */
/* .cboxs span::before {
  left: 0;
  top: 103%;
  width: 2px;
  height: 100%;
}

.cboxs span::after {
  right: 0;
  top: 103%;
  width: 2px;
  height: 100%;
} */

/* Hover Animations */
/* .cboxs:hover::before,
.cboxs:hover::after {
  left: 0;
}

.cboxs:hover span::before,
.cboxs:hover span::after {
  top: 7px;
} */

/* =============== End Hover ================================= */

/* ====================================================== */

/* Single product Css */
.single-product-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px !important;
}

.product-images {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.thumbnails {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.thumbnails img.active,
.thumbnails img:hover {
  border-color: #0073aa;
}

/* Right: Product Details */
.product-details {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.product-price {
  font-size: 1.6rem;
  color: #0073aa;
  /* font-weight: 600; */
  margin-bottom: 15px;
}

.product-short-description {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
}

.product-meta {
  font-size: 0.9rem;
  color: #777;
  margin: 10px 0px;
}

.product-meta span {
  display: inline-block;
  margin-right: 12px;
}

.add-to-cart-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #005177;
}

.product-contact-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000;
  /* font-weight: 600; */
  transition: all 0.3s ease;
}

.iconcls {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.whatsappss {
  filter: brightness(0) saturate(100%) invert(38%) sepia(76%) saturate(641%) hue-rotate(85deg) brightness(90%) contrast(90%);
}


.phoness {
  filter: brightness(0) saturate(100%) invert(29%) sepia(78%) saturate(4010%) hue-rotate(201deg) brightness(92%) contrast(95%);
}

.product-contact-icons a:hover .iconcls {
  transform: scale(1.2);
}

.product-contact-icons a:hover {
  color: var(--primary-color);
}


/* Related Products */

.related-products h2 {
  margin-bottom: 30px;
  /* font-weight: 700; */
  /* font-size: 1.8rem; */
  /* color: var(--dark-color); */
  position: relative;
  width: fit-content;
  padding-bottom: 10px;
}

.related-products h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 8px;
}

.related-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.related-card {
  flex: 1 1 23%;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  background: var(--light-color);
}

.related-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.related-card img {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
}

.related-card h4 {
  margin: 15px 0 10px;
  font-size: 1rem;
  color: var(--primary-color);
}


/* Responsive */
@media (max-width: 991px) {
  .single-product-grid {
    flex-direction: column;
  }

  .product-images,
  .product-details {
    flex: 1 1 100%;
  }

  .related-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .related-card {
    flex: 1 1 100%;
  }
}

h1.page-title {
  position: relative;
  width: fit-content;
  margin: auto;
  padding-bottom: 8px;
}

h1.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 8px;
}


nav.woocommerce-breadcrumb {
  text-align: center;
  margin: 0.5em 0 1em !important;
}

/********************End Product Button ***************/
.probtn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  font-size: var(--a-size);
  font-weight: 700;
  color: var(--light-color) !important;
  /* border: 3px solid var(--primary-color); */
  background-color: var(--primary-color);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  width: 250px;
  margin: 20px 0;
  transition: color 0.3s ease;
  justify-content: center;
  border-radius: 7px;
}

.probtn::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  /* border-radius: 5px; */
  background-color: var(--light-color);
  color: var(--primary-color) !important;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}

.probtn:hover::before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}

.probtn:hover {
  color: var(--primary-color) !important;
}

/* Popup modal styles */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 50px;
  justify-content: center;
  align-items: center;
}

/* Popup content */
.popup-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Close button */
.popup-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.popup-close:hover,
.popup-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/********************End Product Button ***************/

.text-category-description {
    padding-top: 30px;
}

.category-description {
    padding: 10px 0;
    border-top: 2px solid #ccc;
}

.category-description h2 {
    border-bottom: 2px solid var(--primary-color); 
    padding-bottom: 5px;           
    margin-bottom: 10px;          
    line-height: 1.3;
    display: table;
}

/* ===== FOOTER STYLES ===== */

.site-footer {
  background-color: #1f1f1f;
  color: var(--light-color);
}

.four-card.section-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-column li {
    margin-bottom: 12px;
/*     border-bottom: 1px solid #535353; */
    padding-bottom: 12px;
}
.footer-menu-column li:not(:last-child){
	border-bottom:1px solid #535353;
}

.footer-menu-column a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s;
  /* font-weight: 600; */
  font-size: var(--a-size);
  align-items: center;
}

.footer-menu-column a:hover {
  color: var(--light-color);
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  /* margin-bottom: 25px; */
  gap: 10px;
  color: var(--light-color);
}

.footer-contact-info a {
  color: var(--light-color);
  text-decoration: none;
}

.footer-contact-info a:hover {
  text-decoration: none;
}

.footer-menu-column hr {
  border: none;
  border-top: 1px solid var(--green-color);
  margin: 20px 0;
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* .footer-socials li a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
} */

.social-icon {
    font-size: 24px;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

/* Facebook */
.social-icon.facebook {
    background-color: #1877F2;
}

/* Twitter / X */
.social-icon.twitter {
    background-color: #1DA1F2;
}

/* YouTube */
.social-icon.youtube {
    background-color: #FF0000;
}

/* Instagram (gradient approximation) */
.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

/* LinkedIn */
.social-icon.linkedin {
    background-color: #0A66C2;
}


/* .footer-logo img {
    width: 70% !important;
}

.footer-socials li a:hover {
  color: var(--primary-color);
} */

#footer-navigation-1 li a,
#footer-navigation-2 li a {
  position: relative;
  padding-left: 0px;
  display: inline-block;
  /* font-weight: 600; */
}

ul.footer-contact-info img {
  filter: brightness(0) invert(1);
}

#footer-navigation-1 li a::before,
#footer-navigation-2 li a::before {
  content: "";
  /* background-image: url('<?php echo get_template_directory_uri(); ?>/assets/icons/d-arrow-right.svg'); */
  background-image: url('http://localhost/hello/wp-content/uploads/2025/10/d-arrow-right.svg');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}

.footer-socials {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.footer-socials li a.social-icon {
  /* background-color: var(--dark-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50%; */
  width: 44px;
  height: 44px;
  transition: background-color 0.3s ease;
}

/* .footer-socials li a.social-icon:hover {
  background-color: var(--dark-color);
} */

.footer-socials img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 10px;
}

.footer-contact-info img.icon-footer {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-logo img {
  width: 100% !important;
}

.footer-copyright-column {
  text-align: center;
  font-size: var(--p-size);
  border-top: 1px solid var(--dark-color);
  padding-top: 20px;
  color: var(--light-color);
}

.footer-copyright-column a {
  color: var(--light-color);
  text-decoration: none;
}

.footer-copyright-column a:hover {
  color: var(--primary-color);
}

/* Static Brand Colors */
.social-icon.twitter {
  background: #089af5 !important;
}

/* Twitter Blue */
.social-icon.linkedin {
  background: #0064b5 !important;
}

/* LinkedIn Blue */
.social-icon.facebook {
  background: #2b73d1 !important;
}

/* Facebook Blue */

/* Hover Effects (Darker Shade) */
.social-icon.twitter:hover {
  background: #316e94ce !important;
}

.social-icon.linkedin:hover {
  background: #0076b5da !important;
}

.social-icon.facebook:hover {
  background: #1876f2ce !important;
}

/* Ensure Icon (SVG) is White */
.footer-socials li a.social-icon img {
  filter: brightness(0) invert(1);
}


/* ===== Responsive ===== */

@media (max-width: 768px) {
  .four-card.section-card {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column {
    min-width: 100%;
  }

  /* .footer-socials {
    justify-content: center;
  } */
}


/* ========================================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid .full-width {
  grid-column: 1 / 3;
}

.form-grid label {
  /* font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase; */
  color: #000;
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  /* Default Gray */
  padding: 8px;
  font-size: 14px;
  text-transform: uppercase;
  background: transparent;
  position: relative;
}

/* Animated Underline Effect */
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid textarea {
  position: relative;
}

.form-grid input[type="text"]::after,
.form-grid input[type="email"]::after,
.form-grid input[type="tel"]::after,
.form-grid textarea::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.form-grid input:focus::after,
.form-grid textarea:focus::after {
  width: 100%;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-bottom-color: transparent;
}


/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.counter-icon i {
    font-size: 2rem;
    border: 0.1rem solid #0866ff;
    border-radius: 100px;
    padding: 15px;
    width: 65px;
    height: 65px;
}

h1.entry-title {
    display: none !important;
} 

.card_contact_form_7.greay p {
    margin-bottom: 0.4em !important;
}

.footer-column h2 {
    border-bottom: 3px solid;
    display: inline-block;
}

.footer-logo img {
    max-width: 200px;
}

.category-content {
    padding: 30px 75px;
    margin-bottom: 80px;
/*     background: #e9ebef; */
    box-shadow: 0 14px 28px rgba(109, 16, 19, 0.17), 0 10px 10px #fffeff4d;
    transition: all .4s ease-in-out;
}

.category-content:hover {
    box-shadow: 0 10px 55px 5px rgba(188, 188, 188, .25);
    transform: translate3d(0, -20px, 0);
}
