.main-menu__list > li > a {
  padding-bottom: 5px;
  color: #000;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

/* Gradient text on hover */
.main-menu__list > li > a:hover {
  background: linear-gradient(to right, #cf4a0a, #ff8008);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Underline animation */
.main-menu__list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #cf4a0a, #ff8008);
  transition: width 0.3s ease;
}

.main-menu__list > li > a:hover::after {
  width: 100%;
}

/* Submenu styles */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color:#cf4a0a ;
}

.submenu li a {
  color: #000;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child a {
  border-bottom: none;
}

.submenu li a:hover {
  background: linear-gradient(to right, #cf4a0a, #ff8008);
  color: #fff;
  transform: translateX(5px);
}

/* Main menu list styling */
.main-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;

  /* gap: 30px; */
}

.main-menu__list > li {
  position: relative;
}

/* Dropdown positioning */
.main-menu__list > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.why-walltek {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.brand-highlight {
  color: #670d2f;
  position: relative;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a53860, #ef88ad);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 30px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a53860, #ef88ad);
  margin: 0 auto;
  border-radius: 2px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 30px;
  position: relative;
  z-index: 2;
  overflow-x: auto; /* optional: helps on small screens */
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid rgba(255, 102, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.05) 0%,
    rgba(255, 133, 51, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon Wrapper */
.icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.icon-wrapper i {
  font-size: 3rem;
  color: #ff6600;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.1) 0%,
    rgba(255, 133, 51, 0.1) 100%
  );
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-bg {
  transform: translate(-50%, -50%) scale(1.2);
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.2) 0%,
    rgba(255, 133, 51, 0.2) 100%
  );
}

.feature-card:hover .icon-wrapper i {
  transform: scale(1.1);
  color: #e55a00;
}

/* Feature Content */
.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #ff6600;
}

.feature-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Card Accent */
.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ff8533);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover .card-accent {
  transform: scaleX(1);
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.paint-drop {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.paint-drop-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.paint-drop-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff8533, #ffad66);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.paint-drop-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffad66, #ffc299);
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-walltek {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .icon-wrapper i {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 25px 20px;
  }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.wall-transform-section {
  background-color: #c75a13;
  padding: 80px 20px;
}

.wall-transform-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 2px #00000040;
}

.wall-transform-section p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #f9f9f9;
  text-shadow: 1px 1px 1px #00000030;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .wall-transform-section h2 {
    font-size: 28px;
  }

  .wall-transform-section p {
    font-size: 16px;
  }
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}


.step-info-box {
  background: #fffaf5;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 250px;
  margin: 20px auto;
}

.step-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #e83f25;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.step-sub {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.5px;
}

.gallery-hover-text {
  opacity: 0;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

:hover .gallery-hover-text {
  opacity: 1;
}


.gallery-caption {
  color: #444;
  font-size: 1rem;
}
.trending-textures {
  padding: 60px 0;
}
.trending-textures h2 {
  font-size: 32px;
}
.trending-textures span {
  background: linear-gradient(to right, #f97316, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}
.swiper {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.swiper-button-next,
.swiper-button-prev {
  color: #f97316;
  font-size: 20px;
}
.texture-title {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}
/* Scrollable container */
.subcategory-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 50px 0;
  text-align: center;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f3f4f6;
}

/* Custom scrollbar for WebKit browsers */
.subcategory-scroll::-webkit-scrollbar {
  height: 8px;
}
.subcategory-scroll::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}

.subcategory-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.subcategory-container {
  display: inline-flex;
  gap: 12px;
  padding: 0 20px;
  flex-wrap: nowrap;
}
.subcategory-btn {
  background-image: linear-gradient(135deg, #f97316, #f97316, #f97316);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Subtle paint splash effect on hover */
.subcategory-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
.subcategory-btn:hover::before {
  width: 300px;
  height: 300px;
}

.subcategory-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); */
}
.subcategory-btn.active {
  background-image: linear-gradient(135deg, #000);
  /* box-shadow: 0 0 20px rgba(75, 94, 251, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15); */
  transform: scale(1.05);
}

/* Ensure smooth text rendering */
.subcategory-btn,
.subcategory-btn.active {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.catalogue-section {
  padding: 50px 0;
  background: #f9f9f9;
}

.row {
  display: flex;

  /* margin-bottom: 30px; */
  flex-wrap: wrap;
}

.card-box {
  flex: 0 0 32%;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-image {
  height: 400px;
  /* Updated from 280px to 400px */
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.card-content {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.card-content .btn {
  padding: 10px 18px;
  background-color: #e9570c;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.card-content .btn:hover {
  background-color: #c24602;
}

@media (max-width: 768px) {
  .card-box {
    flex: 0 0 100%;
  }
}
.btn {
  padding: 10px 18px;
  background-color: #e9570c;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  padding: 10px 18px;
  background-color: #000;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.map-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.map-box {
  flex: 1;
  min-width: 400px; /* increased minimum width */
  max-width: 600px; /* increased max width */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-header {
  background: linear-gradient(135deg, #f97316, #f97316);
  color: white;
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
}

.map-header h3 {
  margin: 0;
  font-size: 18px;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
}

@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
    gap: 20px;
  }
  .map-box {
    max-width: 100%;
  }
}


.paint-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease; /* smooth hover effect */
}

.paint-card img {
  object-fit: contain;
  width: 100%;
 height: 400px;
}

.paint-card .p-3 {
  flex-grow: 1; /* push content evenly */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .paint-card img {
    max-height: auto;
  }
  .paint-card .p-3 {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .paint-card img {
    max-height: auto;
  }
  .paint-card h4 {
    font-size: 1.1rem;
  }
  .paint-card p {
    font-size: 0.9rem;
    line-height: 20px;
  }
}

.product-info {
  flex: 1 1 55%;
}

.product-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.product-info p {
  margin-bottom: 4px;
  line-height: 1.5;
  padding-top: 2px;
}

.product-info ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.product-info ul li {
  margin-bottom: 8px;
}

.enquiry-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f26522;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.enquiry-button:hover {
  background-color: #cf4a0a;
  color: #fff;
}

.related-products {
  margin-top: 60px;
}

.related-products h2 {
  margin-bottom: 20px;
}

.related-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.related-item {
  background: #fff;
  padding: 15px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-item img {
  width: 100%;
  border-radius: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
  }

  .related-list {
    justify-content: center;
  }
}

.catalog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catalog-image-wrapper {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.catalog-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.theme-btn {
  background-color: #cf4a0a;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.theme-btn:hover {
  background-color: #b13f09;
  color: #fff;
}

.swiper {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f97316;
}

.texture-title {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Container for the highlight box */
.highlight-dealer {
  background-color: #fff;
  border: 1px solid #ec752b;
  border-radius: 50px;
  padding: 2px 20px;
  animation: blink 1s infinite ease-in-out;
  box-shadow: rgba(236, 117, 43, 0.15) 0px 2px 4px;
}

/* Blinking effect */
@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: rgba(236, 117, 43, 0.15) 0px 2px 6px;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
    box-shadow: rgb(236, 117, 43) 0px 0px 10px 2px;
  }
}

/* Link styling inside the box */
.highlight-dealer a {
  display: flex;
  align-items: center;
  color: #ec752b;
  text-decoration: none;
}

/* Icon styling */
.highlight-dealer .icon-container {
  color: #ec752b;
  font-size: 20px;
  margin-right: 15px;
}

/* Text styling */
.highlight-dealer .text-container p {
  margin: 0;
  font-size: 15px;
  color: #ec752b;
}
.product-detail {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 80px;
  padding-top: 80px;
  flex-wrap: wrap;
}

.gallery-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

/* Thumbnails */
.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.thumb-image:hover,
.thumb-image.active {
  border-color: #f26522;
  transform: scale(1.05);
}

/* Main Image */
.product-image {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease-out;
  transform-origin: center center;
  will-change: transform;
  cursor: zoom-in;
}

/* Product Info */
.product-info {
  flex: 1;
  min-width: 250px;
}
.product-info h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
.product-info p {
  font-size: 16px;
  margin-bottom: 20px;
}
.enquiry-button {
  display: inline-block;
  padding: 12px 20px;
  background: #f26522;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.enquiry-button:hover {
  background: #d94a0b;
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .gallery-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-thumbnails {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .thumb-image {
    width: 60px;
    height: 60px;
  }

  .product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .product-image img {
    height: auto;
    max-height: 400px;
  }

  .product-info h1 {
    font-size: 20px;
    text-align: center;
  }
  .product-info p {
    font-size: 14px;
    text-align: center;
  }
  .enquiry-button {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .thumb-image {
    width: 50px;
    height: 50px;
  }
  .product-image {
    max-width: 100%;
    height: auto;
  }
  .product-image img {
    max-height: 300px;
  }
}
 /* Unique product card styling */
.custom-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Fix image height */
.custom-product-img {
    height: 400px; /* adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.custom-product-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

