body {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.slider-container {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.slide.active .animate-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.dot {
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  width: 2.5rem;
}
.cat-slider-container {
  position: relative;
}

.cat-card {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  transition: all 0.4s ease;
  border-radius: 8px;
}

.cat-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-image {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-card:hover .cat-overlay {
  height: 100%;
}

.cat-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(55, 65, 81, 0.9),
    rgba(75, 85, 99, 0.7)
  );
  z-index: 1;
}

.cat-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

.cat-card:hover .cat-overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.cat-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #1a1a2e;
  padding: 1.5rem 1rem;
  /* background: linear-gradient(to top, rgba(255,255,255,0.95), transparent); */
  transition: opacity 0.3s ease;
}

.cat-card:hover .cat-title {
  opacity: 0;
}

.cat-nav-btn {
  position: relative;
  background: white;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-nav-btn:hover {
  background: #1a1a2e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cat-nav-btn:hover svg {
  color: white;
}

.cat-nav-btn:active {
  transform: scale(0.95);
}

.cat-nav-btn svg {
  color: #1a1a2e;
  transition: color 0.3s ease;
}

/* Mobile: 2 cards per row */
@media (max-width: 768px) {
  .cat-card {
    min-width: calc(50% - 12px) !important;
  }

  .cat-title h3 {
    font-size: 1.125rem;
  }

  .cat-nav-btn {
    width: 36px;
    height: 36px;
  }
}

/* Very small screens: Still 2 cards but smaller */
@media (max-width: 480px) {
  .cat-card {
    min-width: calc(50% - 8px) !important;
  }

  .cat-title h3 {
    font-size: 1rem;
  }
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 0px;
}

.marquee {
  display: flex;
  white-space: nowrap;
  font-size: 40px;
  font-weight: 300;
  color: #333;
}

.marquee-content {
  display: flex;
  animation: scroll-left 30s linear infinite;
}

.marquee-content-right {
  display: flex;
  animation: scroll-right 30s linear infinite;
}

.marquee span {
  padding: 0 10px;
  display: inline-block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  margin-top: 0.5rem;
  min-width: 250px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.filter-dropdown.active {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f9fafb;
}

.dropdown-item input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.image-container {
  position: relative;
  overflow: hidden;
  background: white;
  cursor: zoom-in;
}

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

.image-container:hover img {
  transform: scale(1.3);
}

.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background-color: #f5f5f5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.active {
  max-height: 500px;
}

.chevron {
  transition: transform 0.3s ease;
}

.chevron.rotate {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .sticky-section {
    position: relative !important;
  }
}

.claim-button {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.claim-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.claim-button:hover::before {
  width: 300px;
  height: 300px;
}

.claim-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px) scale(1.05);
}

.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.sparkle {
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Header Styles */
.main-header {
  background: white;
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
}

/* Navigation Links */
.nav-link {
  color: #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: #000;
}

/* Dropdown Mega Menu */
.dropdown-menu {
  position: fixed;
  top: 115px;
  left: 0;
  width: 100%;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
  z-index: 999;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  color: #666;
  transition: color 0.2s ease;
}

.dropdown-menu a:hover {
  color: #1a1a1a;
}

.dropdown-section h3 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.border-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  bottom: 25px;
  /* top: 80px; */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: white;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.active {
  max-height: 1000px;
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .marquee {
    font-size: 23px;
  }
}

.contact-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  transition: all 0.3s ease;
}

.contact-card:hover .icon-wrapper {
  transform: scale(1.1);
}




