.header-4 {
  position: relative;
}

.logo img {
  width: 170px;
}

.hero-4 .hero-image {
  width: 900px;
}

.hero-4 .hero-content h1 {
  font-size: 46px;
}

.counter-wrapper .counter-box-items {
  margin-bottom: 25px;
}

/* Center dots */
#projectOwl .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Base dot style */
#projectOwl .owl-dots .owl-dot span {
  width: 12px;
  height: 6px;
  background: #000000; /* black */
  display: inline-block;
  margin: 5px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

/* Active dot (pill style expand) */
#projectOwl .owl-dots .owl-dot.active span {
  width: 30px;
  height: 6px;
  background: #a6a182; /* brand color */
  border-radius: 50px;
}

/* Hover effect */
#projectOwl .owl-dots .owl-dot:hover span {
  background: #a6a182;
  transform: scale(1.2);
}

#projectOwl .owl-nav {
  display: none !important;
}

.project-carousel-items {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 9px;
  border: 3px solid #a6a182;
}

.project-carousel-items:hover .project-image .project-content {
  opacity: 1;
  border: 2px solid #000000;
  visibility: visible;
  bottom: 30px;
}

.project-carousel-items .project-image .project-content .icon {
  border: 2px solid #000000;
}

.project-carousel-items .project-image .project-content h3 {
  text-align: center;
}

.portfolio-wrapper-2 .portfolio-content {
  gap: 0px !important;
}

.f-logo {
  width: 253px;
}

.breadcrumb-wrapper {
  padding: 200px 0px;
}

.contact-wrapper-3 .contact-content {
  text-align: center;
  padding-left: 40px;
  border-radius: 0 0 50px 0;
}

.category-section {
  padding: 80px 0;
}
.category-section .category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}
.category-section .category-card img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
.category-section .category-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid #a6a182;
  opacity: 0;
  transform: scale(1.15);
  transition: 0.6s ease;
  z-index: 2;
}
.category-section .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.6s ease;
}
.category-section .category-card .card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  z-index: 3;
  transition: 0.5s ease;
  width: 80%;
}
.category-section .category-card .card-content h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.category-section .category-card .card-content span {
  display: inline-block;
  padding: 7px 18px;
  font-size: 13px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s ease;
}
.category-section .category-card .card-content span:hover {
  background: #a6a182;
  color: #ffffff;
  border-color: #a6a182;
}
.category-section .category-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.55);
}
.category-section .category-card:hover::before {
  opacity: 1;
  transform: scale(1);
}
.category-section .category-card:hover::after {
  background: rgba(0, 0, 0, 0.55);
}
.category-section .category-card:hover .card-content {
  transform: translate(-50%, -50%);
}
.category-section .category-card:hover .card-content h4,
.category-section .category-card:hover .card-content span {
  opacity: 1;
  transform: translateY(0);
}

.shop-details-wrapper .shop-details-image .nav img {
  width: 100px;
  height: 100px;
}

.header-main .main-menu ul li a {
  font-size: 15px;
}

.header-main .main-menu ul li {
  margin-inline-end: 40px;
}

#pre-load {
  background: #000;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#pre-load.hidden {
  opacity: 0;
  visibility: hidden;
}

#pre-load .loader-inner {
  --loader-background: linear-gradient(0deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .15) 100%);
  position: relative;
  height: 400px;
  /* loader area */
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pre-load .loader-inner .loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  /* logo size */
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: color-change 2s infinite ease-in-out;
  z-index: 999;
}

#pre-load .loader-inner .loader-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#pre-load .loader-inner .box {
  position: absolute;
  background: var(--loader-background);
  border-radius: 50%;
  border-top: 2px solid #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 0 20px 20px 0;
  backdrop-filter: blur(6px);
  animation: ripple 2.5s infinite ease-in-out;
}

/* Outer ripple circles */
#pre-load .loader-inner .box:nth-child(2) {
  inset: 35%;
  z-index: 98;
  border-color: rgba(255, 255, 255, 0.8);
  animation-delay: 0.2s;
}

#pre-load .loader-inner .box:nth-child(3) {
  inset: 25%;
  z-index: 97;
  border-color: rgba(255, 255, 255, 0.6);
  animation-delay: 0.4s;
}

#pre-load .loader-inner .box:nth-child(4) {
  inset: 15%;
  z-index: 96;
  border-color: rgba(255, 255, 255, 0.4);
  animation-delay: 0.6s;
}

/* Last circle (just bigger than logo) */
#pre-load .loader-inner .box:nth-child(5) {
  inset: 0%;
  /* make it larger than logo (160px) */
  z-index: 95;
  border-color: rgba(255, 255, 255, 0.7);
  animation-delay: 0.8s;
}

/* Ripple effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}
/* Logo fade animation */
@keyframes color-change {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
.cta-banner-wrapper-2 .cta-image {
  display: block;
}

.cta-banner-wrapper-2 .section-title-area {
  margin-left: 300px;
}

.offcanvas__logo img {
  width: 243px;
}

.header-top-wrapper .top-right .social-icon i:hover {
  color: #000000;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info-area .contact-items .content h4 {
  font-size: 15px;
}

.cta-banner-section-2 h2 {
  font-size: 40px;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 300px;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease;
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

.toast i.toast-icon {
  font-size: 18px;
}

.toast .toast-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  line-height: 1;
}

.toast.hide {
  animation: slideOut 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(120px);
  }
}
/* Mobile (small devices) */
@media (max-width: 576px) {
  .hero-4 .hero-image {
    width: 100%;
  }
  .counter-section {
    margin-top: 100px;
  }
  .cta-banner-section-2 {
    display: none;
  }
}
/* Tablets */
@media (min-width: 577px) and (max-width: 768px) {
  .cta-banner-section-2 h2 {
    font-size: 16px !important;
  }
  .cta-banner-section-2 img {
    width: 170px;
  }
  .theme-btn.padding-style {
    padding: 5px 17px;
    font-size: 10px;
  }
}
/* Small laptops */
/* Desktops */
/* Large screens *//*# sourceMappingURL=public.css.map */