/* Modern Background Design System */
.whatwe_believe {
  position: relative;
  padding: 40px 0 100px;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 0% 0%, rgba(237, 28, 36, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(43, 53, 125, 0.03) 0px, transparent 50%);
  overflow: hidden;
}

.whatwe_believe::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float 15s infinite alternate ease-in-out;
  z-index: 0;
}

.whatwe_believe::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 53, 125, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float 20s infinite alternate-reverse ease-in-out;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(30px, 50px) rotate(10deg);
  }
}

.whatwe_believe .container {
  position: relative;
  z-index: 1;
}

.whatwe_believe h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.whatwe_believe .intro-content {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}

.whatwe_believe .txt a {
  display: inline-block;
  padding: 15px 40px;
  background: #ed1c24;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(237, 28, 36, 0.2);
}

.whatwe_believe .txt a:hover {
  background: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: #fff;
}

/* --- Creative Design Enhancements --- */
.creative-section {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at 0% 0%, rgba(237, 28, 36, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(43, 53, 125, 0.02) 0%, transparent 50%);
}

.creative-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #2b357d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.creative-badge .dot {
  width: 8px;
  height: 8px;
  background: #ed1c24;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.1);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.creative-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #2b357d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.title-accent {
  width: 100px;
  height: 5px;
  background: #ed1c24;
  margin: 0 auto 40px;
  border-radius: 10px;
  position: relative;
}

.creative-description {
  max-width: 950px;
  margin: 0 auto 55px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

.creative-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 22px 55px;
  background: #1a1a2e;
  color: #fff !important;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.2);
}

.creative-btn span {
  position: relative;
  z-index: 2;
}

.creative-btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.creative-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ed1c24;
  transition: width 0.4s ease;
  z-index: 1;
}

.creative-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(237, 28, 36, 0.3);
}

.creative-btn:hover::after {
  width: 100%;
}

.creative-btn:hover i {
  transform: translateX(5px);
}

/* Decorative Assets */
.decor-leaf {
  position: absolute;
  width: 150px;
  height: 150px;
  /* background-image: url('../images/leaf-decor.png'); */
  /* Assumes a leaf image exists */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.leaf-top {
  top: 5%;
  left: 5%;
  transform: rotate(-15deg);
}

.leaf-bottom {
  bottom: 5%;
  right: 5%;
  transform: rotate(165deg);
}

/* --- Trusted Section Responsive --- */
.section-padding {
  padding: 90px 0;
}

.logos-flex {
  margin: 0 auto;
  max-width: 1000px;
}

.logo-box:hover img {
  transform: scale(1.1);
  filter: none;
}

.view-all-premium-simple {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 2px solid #ed1c24;
  color: #ed1c24;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-all-premium-simple:hover {
  background: #ed1c24;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237, 28, 36, 0.2);
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .trusted-content h2 {
    font-size: 2.2rem !important;
  }

  .logos-flex {
    gap: 20px !important;
  }

  .logo-box img {
    max-width: 100px !important;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.agro-loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.agro-loader .leaf {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5cb85c, #2d8a2d);
  border-radius: 0 50% 0 50%;
  animation: leafPulse 1.5s infinite ease-in-out;
  box-shadow: 0 5px 15px rgba(45, 138, 45, 0.4);
}

.agro-loader .leaf-shadow {
  width: 40px;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  animation: shadowPulse 1.5s infinite ease-in-out;
}

.agro-loader .loading-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2d8a2d;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: textPulse 1.5s infinite ease-in-out;
}

@keyframes leafPulse {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) scale(1.1) rotate(15deg);
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes shadowPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes textPulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* Homepage Spacing Normalization */
.home-content {
  padding-top: 0 !important;
  overflow-x: hidden;
}

.home-content .page_template {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#site_header.navbar-static-top,
#site_header .container,
#site_header .row,
#site_header .navbar-header {
  margin-bottom: 0 !important;
}

.home .navbar {
  min-height: 0 !important;
  margin-bottom: 0 !important;
}

/* Hero Slider Styles — Optimized for 1600x640 HD Images */
.hero-slider {
  margin-top: 0 !important;
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1600 / 640;
  /* Exactly 2.5:1 ratio */
  min-height: 400px;
  max-height: 700px;
  /* Limit height on ultra-wide screens */
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-carousel,
.hero-carousel .slick-list,
.hero-carousel .slick-track {
  height: 100% !important;
  display: block;
}

.hero-carousel .slick-slide,
.hero-carousel .slick-slide>div,
.hero-slide {
  height: 100% !important;
}

.hero-slide {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

/* Hero Image — Full HD without distortion */
.hero-slide-img {
  width: 100%;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover !important;
  /* Changed from fill to cover to prevent stretching */
  display: block;
  margin: 0 auto;
  filter: brightness(0.9);
  /* Slightly darken for text readability */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /* Reduced darkness for a clean image look */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  max-width: 600px;
  color: #fff;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.hero-slide.slick-active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.2s;
}

.hero-slide.slick-active .hero-description {
  opacity: 0.9;
  transform: translateY(0);
}

.hero-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #ed1c24;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out 0.4s;
}

.hero-slide.slick-active .hero-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn:hover {
  background: #c91620;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
  color: #fff;
}

/* Custom Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.hero-prev,
.hero-next {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* Progress Bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.hero-progress-bar {
  height: 100%;
  background: #ed1c24;
  width: 0;
  transition: width 0.3s ease;
}

/* Slick Dots Customization */
.hero-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex !important;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: auto !important;
}

.hero-slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
  display: block !important;
}

.hero-slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  display: block !important;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ed1c24;
  transform: scale(1.2);
}

/* Hero Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-nav {
    padding: 0 20px;
  }

  .hero-prev,
  .hero-next {
    width: 45px;
    height: 45px;
  }

  .hero-slider .slick-dots {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 500px !important;
    min-height: 500px !important;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .hero-nav {
    padding: 0 15px;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
  }

  .hero-slider .slick-dots {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 400px !important;
    min-height: 400px !important;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  .hero-nav {
    padding: 0 10px;
  }

  .hero-prev,
  .hero-next {
    width: 35px;
    height: 35px;
  }

  .hero-slider .slick-dots {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 350px !important;
    min-height: 350px !important;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .hero-nav {
    display: none;
  }

  .hero-slider .slick-dots {
    display: none !important;
  }
}



/* Scrolling Welcome Banner */
.scrolling-welcome-banner {
  background: #ed1c24;
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.scrolling-welcome-banner .marquee-text {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@media (max-width: 991px) {
  .scrolling-welcome-banner {
    display: none !important;
  }
}

/* Enhanced Typography with Inter Font */
body {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
}

.hero-title,
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

.subtitle,
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #6b7280;
}

.btn-modern {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card-title,
.contact-method-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.card-text,
.contact-method-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* 404 Error Page Styles - Fully Mobile Responsive */
.error-404-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow-x: hidden;
}

.error-404-content {
  max-width: 600px;
  width: 90%;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.error-404-number {
  font-size: 80px;
  font-weight: 900;
  color: #ed1c24;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(237, 28, 36, 0.2);
  font-family: 'Inter', sans-serif;
}

.error-404-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.error-404-message {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.error-404-actions .btn {
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.025em;
}

.error-404-actions .btn-primary {
  background-color: #ed1c24;
  color: #fff;
  border: 2px solid #ed1c24;
}

.error-404-actions .btn-primary:hover {
  background-color: #c91620;
  border-color: #c91620;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.error-404-actions .btn-outline {
  background-color: transparent;
  color: #ed1c24;
  border: 2px solid #ed1c24;
}

.error-404-actions .btn-outline:hover {
  background-color: #ed1c24;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

.error-404-search {
  max-width: 400px;
  margin: 20px auto 0;
  width: 100%;
}

.error-404-search h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.error-404-search .search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.error-404-search .search-field {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

.error-404-search .search-field:focus {
  outline: none;
  border-color: #ed1c24;
}

.error-404-search .search-submit {
  padding: 10px 20px;
  background-color: #ed1c24;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.error-404-search .search-submit:hover {
  background-color: #c91620;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.3);
}

/* Responsive Design - Fully Mobile */
@media (max-width: 768px) {
  .error-404-section {
    min-height: 100vh;
    padding: 15px 0;
    align-items: flex-start;
    padding-top: 60px;
  }

  .error-404-content {
    width: 95%;
    padding: 30px 20px;
    min-height: auto;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .error-404-number {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .error-404-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .error-404-message {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .error-404-actions {
    gap: 15px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }

  .error-404-actions .btn {
    width: 100%;
    max-width: 250px;
    padding: 15px 25px;
    font-size: 14px;
  }

  .error-404-search {
    width: 100%;
    margin: 0 auto;
  }

  .error-404-search h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .error-404-search .search-field {
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
  }

  .error-404-search .search-submit {
    padding: 15px 25px;
    font-size: 14px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .error-404-section {
    min-height: 100vh;
    padding: 10px 0;
    align-items: flex-start;
    padding-top: 40px;
  }

  .error-404-content {
    width: 95%;
    padding: 25px 15px;
    min-height: auto;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .error-404-number {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .error-404-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .error-404-message {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .error-404-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  .error-404-actions .btn {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 13px;
  }

  .error-404-search {
    width: 100%;
    margin: 0 auto;
  }

  .error-404-search h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .error-404-search .search-form {
    flex-direction: column;
    gap: 10px;
  }

  .error-404-search .search-field {
    padding: 12px;
    font-size: 13px;
    border-radius: 8px;
  }

  .error-404-search .search-submit {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 360px) {
  .error-404-section {
    padding-top: 30px;
  }

  .error-404-content {
    width: 98%;
    padding: 20px 12px;
  }

  .error-404-number {
    font-size: 35px;
  }

  .error-404-title {
    font-size: 18px;
  }

  .error-404-message {
    font-size: 12px;
  }

  .error-404-actions .btn {
    max-width: 180px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

.page_template h1,
.page_template h2,
.page_template h3,
.page_template h4,
.page_template h5,
.page_template h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.page_template p p1 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;

}

.page_template p1 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Banner Typography */
.innerbanner .main-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Section Typography */
.page-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.page-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.page-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.page-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

/* Accreditations Section */
.accreditations-section {
  position: relative;
  overflow: hidden;
}

.license-card {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.license-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-10px) scale(1.05);
}

.placeholder-tag {
  transition: all 0.3s ease;
}

.placeholder-tag:hover {
  border-color: #ed1c24 !important;
  color: #ed1c24 !important;
  background: #fffafa;
}

.creative-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0f0;
  color: #ed1c24;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(237, 28, 36, 0.1);
}

.page-content ul,
.page-content ol {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Button Typography */
.btn,
.button,
input[type="submit"] {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Form Typography */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Navigation Typography */
.navbar-nav li a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Footer Typography */
.footer {
  font-family: 'Inter', sans-serif;
}

.footer h3,
.footer h4,
.footer h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer p,
.footer li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Specific Page Template Typography Enhancements */

/* Products Page Typography */
.products-page-section h2,
.products-page-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.product-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.product-card-category {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #6b7280;
}

.category-filter-section .filter-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Awards Page Typography */
.awards-section h2,
.awards-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.award-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.award-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* Logo Marquee Styles */
.logo-marquee-container {
  overflow: hidden;
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}

.logo-marquee-content {
  display: flex;
  width: max-content;
  animation: slow-marquee 60s linear infinite;
  align-items: center;
}

.logo-marquee-content:hover {
  animation-play-state: paused;
}

.marquee-logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 50px;
}

.marquee-logo-item img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.marquee-logo-item:hover img {
  transform: scale(1.1);
}

@keyframes slow-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.accreditations-section .creative-title {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 3.2rem;
  margin: 0 0 15px;
}

@media (max-width: 768px) {
  .logo-marquee-content {
    animation-duration: 30s;
  }

  .marquee-logo-item {
    width: 150px;
    margin: 0 25px;
  }

  .accreditations-section .creative-title {
    font-size: 2.2rem;
  }
}

.certification-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.certification-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* Quality Assurance Page Typography */
.quality-section h2,
.quality-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.quality-feature h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.quality-feature p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* Sustainability Page Typography */
.sustainability-section h2,
.sustainability-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.sustainability-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.sustainability-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* Who We Are Page Typography */
.about-section h2,
.about-section h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
}

.team-member h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.team-member p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

.company-values h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

.company-values p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

/* General Content Wrapper Typography */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.content-wrapper p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-wrapper ul li,
.content-wrapper ol li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Table Typography */
table {
  font-family: 'Inter', sans-serif;
}

table th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1f2937;
}

table td {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
}

/* Quote and Blockquote Typography */
blockquote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #4b5563;
  line-height: 1.7;
}

.quote {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #374151;
  line-height: 1.6;
}

/* Breadcrumb Typography */
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #374151;
}

/* Meta Information Typography */
.meta-info {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Call to Action Typography */
.cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #1f2937;
}

.cta-section p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.6;
}

.untamedpg .wrap-text h2 {
  text-transform: lowercase;
}

.untamed_introduction {
  max-width: 865px;
  margin: 0 auto;
}

.untamed_introduction h4 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  font-family: "Kanit", sans-serif;
  line-height: 31px;
}

.page-about-content.untamed_introduction p {
  margin: 0px 20px 50px;
}

.yellowband {
  background: url(../images/yellow-band.html) repeat-x center top;
  /*background-clip: contain;*/
  min-height: 160px;
  margin-bottom: 50px;
}

.yellowband h3 {
  font-size: 41px;
  line-height: 52px;
  color: #000;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  z-index: 10;
  margin: 50px auto;
  text-align: center;
}

.untamed_athletes {
  padding: 50px 0;
}

.untamed_athletes .utrw {
  padding-bottom: 70px;
}

/*.untamed_athletes .utrw:nth-child(2) .clm1, 
.untamed_athletes .utrw:nth-child(4) .clm1 { float: right; }*/
.untamed_athletes .utrw:nth-child(even) .clm1 {
  float: right;
}

.untamed_athletes .description {
  padding-left: 30px;
  color: #666666;
  font-size: 17px;
  line-height: 30px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
}

.untamed_athletes .hdname {
  padding: 30px 0;
  text-transform: uppercase;
  margin-top: 50px;
}

.untamed_athletes .hdname h3 {
  font-size: 50px;
  font-family: "LeagueGothic-Regular", sans-serif;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 0;
  /*text-align:left; display: block;*/
}

.untamed_athletes .hdname h3 span {
  background: #fff;
  display: inline;
  padding-right: 20px;
}

.untamed_athletes .followtxt {
  font-family: "LeagueGothic-Regular", sans-serif;
  color: #ff6f00;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0;
}

.untamed_athletes .followicon {
  font-family: "Kanit", sans-serif;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  background: url(../images/follow-icon.html) no-repeat 0 5px;
  padding: 0 0 20px 0px;
}

.untamed_athletes .followicon a {
  color: #000;
  padding-left: 30px;
}

.untamed_athletes .followicon a:hover {
  color: #ff6f00;
}

.untamed_athletes .clm2 .imagediv {
  position: relative;
  text-align: center;
}

.untamed_athletes .clm2 .imagediv img {
  margin-right: 0px;
  /*z-index: 100; position: relative; */
}

/*.untamed_athletes .clm2 .imagediv:before { width: 513px; height: 458px; position: absolute; content: ''; display: block; 
    background: url(../images/untamed-mask.png) no-repeat 0 0 / cover; opacity: .7; }*/
.untamed_athletes .clm2 .imagediv:after {
  width: 117px;
  height: 117px;
  position: absolute;
  content: "";
  display: block;
  background: url(../images/orange-dots.html) no-repeat 0 0 / cover;
  bottom: 35px;
  right: 30px;
}

.carousel-control-prev-icon {
  background: url(../images/icon-previous.png) no-repeat top center;
  height: 32px;
  width: 32px;
}

.carousel-control-next-icon {
  background: url(../images/icon-next.png) no-repeat top center;
  height: 32px;
  width: 32px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 3.8s;
  animation-duration: 3.8s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* minimal slider for home page  start   */
#minimal-bootstrap-carousel {
  margin-top: 0px;
  position: relative;
}

#minimal-bootstrap-carousel .carousel-caption {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  text-align: right;
  text-shadow: none;
}

#minimal-bootstrap-carousel .carousel-caption .container {
  display: table;
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1199px) {
  #minimal-bootstrap-carousel .carousel-caption .container {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  #minimal-bootstrap-carousel .carousel-caption .container {
    max-width: 720px;
  }
}

#minimal-bootstrap-carousel .carousel-caption .container .box {
  display: table-cell;
  text-align: left;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-top {
  vertical-align: top;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-bottom {
  vertical-align: bottom;
}

#minimal-bootstrap-carousel .carousel-caption .container .box.valign-middle {
  vertical-align: middle;
}

#minimal-bootstrap-carousel .carousel-caption .container .box .content {
  display: block;
}

#minimal-bootstrap-carousel [class*="carousel-control"] {
  background: none;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 38px;
  color: #fff;
  background-color: transparent;
  visibility: visible !important;
  opacity: 1;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  border-radius: 5px;
  opacity: 0.5;
  position: absolute;
  text-align: center;
}

@media (max-width: 667px) {
  #minimal-bootstrap-carousel [class*="carousel-control"] {
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
  }
}

@media (max-width: 480px) {
  #minimal-bootstrap-carousel [class*="carousel-control"] {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.4);
    color: #000;
    border-radius: 5px;
  }
}

#minimal-bootstrap-carousel .carousel-control-prev {
  left: 1%;
}

#minimal-bootstrap-carousel .carousel-control-next {
  right: 1%;
}

#minimal-bootstrap-carousel [class*="carousel-control"]:hover {
  opacity: 1;
  background: #2093d1;
  border-color: #fff;
}

/* fixing slider height */
#minimal-bootstrap-carousel.slider-home-one .carousel-inner .carousel-item {
  min-height: 751px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #e8f4fa;
}

.slider-content-style .content {
  text-align: center;
  position: relative;
  z-index: 999;
}

.slider-content-style .content h3,
.slider-content-style .content h2,
.slider-content-style .content p {
  margin: 0;
}

.slider-content-style .content h3 {
  color: #062f77;
  font-size: 37px;
  line-height: 1.3em;
  font-weight: 800;
  /* font-family: 'Josefin Sans'; */
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  font-family: "Montserrat-semibold";
}

.slider-content-style .content h3 b {
  font-size: 43px;
  font-family: "Montserrat-Bold";
  font-weight: normal;
}

.slider-content-style .content p {
  /* font-family: 'Josefin Sans'; */
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.15em;
  margin-top: 20px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.slider-content-style .content a.thm-btn {
  background: #062f77;
  vertical-align: middle;
  color: #222222;
  font-size: 18px;
  letter-spacing: 0.1em;
  /* font-family: 'Josefin Sans'; */
  font-weight: 600;
  padding: 10px 17px;
  margin-top: 27px;
  transition: all 0.4s ease;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.slider-content-style .content a.thm-btn:hover {
  background: #fff;
}

/* minimal slider for home page end */

/* animation start  */
#minimal-bootstrap-carousel.slider-home-one .content {
  position: absolute;
  top: 300px;
}

#minimal-bootstrap-carousel.slider-home-one .carousel-inner {
  height: 740px;
}

#minimal-bootstrap-carousel.slider-home-one .carousel-inner .carousel-item {
  animation-duration: 5s;
  animation-name: homebandmove;
  /* animation-iteration-count: 2;
    animation-direction: alternate; */
}

@keyframes homebandmove {
  from {
    bottom: -100px;
  }

  to {
    bottom: 0px;
  }
}

@keyframes fadeInDown {
  from {
    top: 10px;
  }

  to {
    top: 0px;
  }
}

.countsec {
  background: #e8f4fa;
  padding: 30px 0;
}

.countsec.temp2 {
  background: #2093d1;
}

.testimonialsec {
  background: url(../images/blue-band.png) no-repeat center 0px / cover;
}

.testimonialsec .carousel-control-prev {
  right: -85px !important;
  left: auto;
  top: 10px;
}

.testimonialsec .carousel-control-next {
  width: 40px;
  bottom: auto;
  right: -42px;
}

.testimonialsec .carousel-indicators {
  left: 46%;
  bottom: -40px !important;
}

.testimonialsec.temp2 {
  background: #fff;
}

.testimonialsec.temp2 .customertsm .carousel-indicators li {
  border-color: #cdcdcd;
}

.testimonialsec.temp2 .customertsm .carousel-indicators li.active {
  background: #e5e5e5;
}

.testimonialsec.temp2 .customertsm .tsmbox {
  background: #fff url(../images/first.html) no-repeat left 0 !important;
  box-shadow: none;
  border: 2px solid #cea160;
}


section.inner-body h4 {
  font-size: 18px;
  font-family: "Kanit", sans-serif;
}

section.inner-body h5 {
  font-size: 16px;
  color: #3d3d3d;
  margin: 30px 0;
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
}

.verticalcustomtab {
  text-decoration: none;
}

.verticalcustomtab .nav-tabs {
  float: left;
  width: 30%;
}

.verticalcustomtab .tab-content {
  float: left;
  width: 70%;
}

.verticalcustomtab .nav-tabs>li {
  float: none;
}

/* easy responsive tab.css file  */
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 500;
  font-size: 16px;
  padding: 13px 15px;
  margin: 0 1px 0 0;
  list-style: none;
  cursor: pointer;
  float: left;
  border-bottom: 1px solid #cad6e0;
  color: #636363;
}

.resp-tabs-container {
  padding: 0px;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border-bottom: none;
  padding: 12px 14px 14px 14px !important;
  color: #000;
}

.resp-tab-active {
  border-bottom: none;
}

.resp-content-active,
.relativesp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: 1px solid #c1c1c1;
  border-top-color: #008486;
}

h2.resp-accordion {
  font-size: 16px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 42%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 10px 5px 10px 35px !important;
  margin: 0 0 1px 0;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  float: left;
  width: 56%;
  min-height: 290px;
  border-radius: 0px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
  color: #000;
  background: #ccc;

}

/* .resp-vtabs li:hover {
  position: relative;
  z-index: 1;
  color: #000;
  background: #ccc;
} */
.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #999;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #999;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
  background: #dbdbdb;
  /* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1;
  /* !important;*/
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1;
  /* !important;*/
}

/* easy responsive tab.css file end */

ul.resp-tabs-list.hor_1 {
  background: #ccc !important;
  float: left !important;
  width: 100% !important;
}

.tbsection_main .resp-tabs-list li {
  background: #ccc !important;
  position: relative;
}

.tbsection_main .resp-tabs-list li.resp-tab-active {
  background: #008486 !important;
  color: #fff;
}

.resp-tab-content ul {
  padding-left: 10px;
}

.tbsection_main .htab_content.resp-tab-content {
  border-color: #fff;
  padding: 30px 20px;
}

.tbsection_main .htab_content.resp-tab-content.vtabsec {
  padding-left: 0;
}

.tbsection_main .resp-tabs-list li.resp-tab-active::after {
  /* content:  "▼"; font-size:14px; transform: rotate(-180deg); */

  position: absolute;
  bottom: -8px;
  left: 45%;
  content: " ";
  /*width: 0; height: 0; */

  border-left: 7px solid transparent;

  border-right: 7px solid transparent;

  border-top: 9px solid #008486;
}

.tbsection_main .resp-vtabs .resp-tabs-list li.resp-tab-active::after {
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-right: 10px solid #fff;
  position: absolute;
  bottom: 15px;
  right: -1px;
  content: " ";
}

.resp-vtabs ul.resp-tabs-list {
  padding-left: 0;
  margin-top: 10px !important;
}

.resp-vtabs li.resp-tab-item {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 19px;
}

.tbsection_main .vtab_content {
  padding: 5px 0px 25px 30px;
}

#ChildVerticalTab_1 {
  min-height: 350px;
}

.resp-vtabs li.resp-tab-active::after {
  position: absolute;
  right: 0px;
  top: 5px;
  content: " ";
  height: 30px;
  width: 30px;
  background: url(../images/arrow-green.png) no-repeat 5px 10px !important;
}

/* Home our product */
.ourproduct {
  padding: 50px 0;
  background: #2e368f;
}

.ourproduct h5 {
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}

.ourproduct h3 {
  color: #fff;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
}

.ourproduct .resp-vtabs li.resp-tab-item {
  border: 2px solid #676dae !important;
  padding: 25px 20px 5px 25px !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  margin-bottom: 15px;
}

.ourproduct .resp-vtabs li.resp-tab-item p {
  margin-bottom: 20px;
}

.ourproduct .resp-vtabs li.resp-tab-item p a {
  font-size: 0;
}

.ourproduct .resp-vtabs li.resp-tab-item.resp-tab-active p a {
  font-size: inherit;
}

.ourproduct .resp-vtabs li.resp-tab-item strong {
  font-size: 19px;
  font-weight: 500 !important;
  font-family: "Kanit";
}

.ourproduct .resp-vtabs li.resp-tab-item a {
  color: #39b44a;
  font-weight: 500;
}

.ourproduct .resp-vtabs li.resp-tab-item.resp-tab-active {
  background: #fff !important;
  color: #191919 !important;
  border-color: #fff !important;
  border-left: 5px solid #39b44a !important;
  padding: 25px 20px 1px 22px !important;
}

.ourproduct .resp-vtabs li.resp-tab-active::after {
  background: none !important;
}

.prodtbimg {
  -webkit-animation-name: prdInLeft;
  animation-name: prdInLeft;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  /* animation-fill-mode: both;
  -webkit-animation-fill-mode: both; */
}

@-webkit-keyframes prdInLeft {
  from {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
  }
}

@keyframes prdInLeft {
  from {
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.readyproject {
  padding: 50px 0;
}

.readyproject .readybbox {
  padding: 40px 30px 30px 30px;
  color: #fff;
  font-size: 20px;
}

.readyproject .txt {
  padding: 0px 10px 0 50px;
}

.readyproject h2 {
  color: #fff;

  margin-bottom: 20px;
}

.readyproject a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  background: #119123;
  border: 1px solid transparent;
  margin-top: 55px;
}

.readyproject a:hover {
  border: 1px solid #fff;
}

.innerbandimage {
  text-decoration: none;
  position: relative;
}

.innerbandimage img {
  margin-bottom: -220px;
  /* -webkit-animation-name: zoomIn;
  animation-name: zoomIn; */
  -webkit-animation-name: inbandInDown;
  animation-name: inbandInDown;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-delay: 0s;
}

@-webkit-keyframes inbandInDown {
  from {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inbandInDown {
  from {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.firstrow,
.secondrow {
  font-size: 20px;
}

.breadcrumb {
  padding: 0px;
  background-color: transparent;
  text-align: left;
  list-style: none;
  font-size: 15px;
  font-family: "Kanit";
  font-weight: 400;
}

.breadcrumb a {
  color: #131313 !important;
  text-decoration: none !important;
  margin: 0 0px;
}

.breadcrumb a:hover {
  color: #000000;
  text-decoration: underline;
}

.inner-introduction {
  max-width: 870px;
  margin: 0 auto;
  padding: 0px 0 30px 0;
  text-align: center;
  font-size: 17px;
}

.wwdbox {
  display: table;
  width: 100%;
  border-bottom: 1px solid #d5e1ed;
  padding: 20px 0px 0px 0px;
  line-height: 21px;
  min-height: 210px;
}

.wwdclm:last-child .wwdbox {
  border: 1px solid transparent;
}

.wwdbox .icon {
  display: table-cell;
  width: 50px;
}

.wwdbox .icon img {
  width: 30px;
}

.wwdbox .txt {
  width: auto;
}

.wwdbox .txt h4 {
  font-size: 22px;
  color: #323232;
  padding-bottom: 15px;
  letter-spacing: 0;
}

.secondrow {
  padding-bottom: 30px;
}

.secondrow .imageright {
  padding-top: 20px;
}

.bullettxt {
  max-width: 490px;
  font-size: 19px;
  padding: 20px 0;
}

.bullettxt ul {
  margin-bottom: 20px !important;
}

.bullettxt h4 {
  font-size: 22px !important;
  color: #444 !important;
  padding-bottom: 19px !important;
  letter-spacing: 0 !important;
}

.ourtechnology {
  background: #f6f8fa;
  padding: 30px 0;
}

.ourtechnology .intro {
  text-align: center;
  max-width: 950px;
  font-size: 19px;
  margin: 20px auto 30px auto;
  color: #555656;
}

.ourtechnology h4 {
  letter-spacing: 0 !important;
  margin: 15px auto;
}

.ourtechnology .otbox {
  min-height: 257px;
  padding-bottom: 20px;
}

.ourtechnology .otbox .icon {
  margin-bottom: 15px;
}

.ourtechnology .otbox .txt {
  max-width: 346px;
  font-size: 16px;
}

.readyproject .readybbox.innerpg {
  font-size: 18px;
  min-height: 270px;
}

.readyproject .readybbox.innerpg h2 {
  font-size: 21px;
}

.readyproject .readybbox.innerpg a {
  margin-top: 5px !important;
}

.customerbox {
  padding: 30px;
  border: 1px solid #e7e7e7;
  border-left: 5px solid #f05a28;
  min-height: 270px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

.customerbox .text {
  padding: 0px;
}

.customerbox .profile {
  display: table;
  width: 100%;
}

.customerbox h2 {
  color: #434343;
  font-size: 22px;
}

.customerbox .profile .picture {
  display: table-cell;
  width: 60px;
  vertical-align: top;
}

.customerbox .profile .namedetails {
  display: table-cell;
  width: auto;
  vertical-align: bottom;
  padding: 0 0 0 20px;
}

.customerbox .profile .namedetails p {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #4e4e4e;
}

.customerbox .profile .namedetails strong {
  font-family: "Kanit";
  font-weight: 500;
}

.ourtechnology.valurite {
  text-decoration: none;
}

.ourtechnology.valurite .firstrw,
.ourtechnology.valurite .secondrw,
.ourtechnology.valurite .thirdrw {
  padding-bottom: 40px;
  padding-top: 40px;
}

.ourtechnology.valurite .txt {
  max-width: 426px;
}

.ourtechnology.valurite .vrtbox {
  display: table;
  width: 100%;
  margin-bottom: 15px;
}

.ourtechnology.valurite .vrtbox .icon {
  display: table-cell;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  float: left;
  padding: 10px;
  margin-top: 5px;
}

.ourtechnology.valurite .vrtbox .txt {
  display: table-cell;
  width: auto;
  vertical-align: top;
  padding-left: 25px;
}

.ourtechnology.valurite .vrtbox h4 {
  margin: 0;
  padding-bottom: 5px;
  font-size: 20px;
}

.careers .crclm .crbox {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.careers .crclm .crbox .icon {
  width: 215px;
  height: 190px;
  margin: 20px auto;
  padding-top: 20px;
  background: #fff;
  vertical-align: middle;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.2);
}

.open-position {
  text-align: center;
  padding: 30px 0;
}

.open-position .opbox {
  padding: 15px 15px;
  background-color: #f6f8fa;
  display: table;
  margin: 10px auto;
  max-width: 920px;
  width: 100%;
}

.open-position .opbox .title {
  float: left;
}

.open-position .opbox .txt {
  width: auto;
  float: left;
  padding: 0 20px 0 30px;
}

.open-position .opbox .link {
  width: auto;
  float: right;
}

.open-position .opbox .link a {
  text-decoration: none !important;
}

.open-position .opbox .link a:hover {
  text-decoration: none !important;
  color: #2e368f;
}

.readybbox.innerpg.careers {
  background: #2e368f;
  max-width: 830px;
  margin: 20px auto;
  text-align: center;
}

.readybbox.innerpg.careers .txt {
  text-align: center;
  padding: 5px 30px;
}

.contactmainbx {
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #f5f5f5;
  display: table;
  width: 100%;
}

.contactmainbx .ctclm1 {
  width: 50%;
  float: none;
  background: #fff;
  display: table-cell;
  vertical-align: top;
  padding: 49px;
}

.contactmainbx .ctclm2 {
  width: 50%;
  float: none;
  background: #f6f8fa;
  display: table-cell;
  vertical-align: top;
  padding: 49px;
}

.contactfirstrow h4 {
  letter-spacing: 0 !important;
  font-size: 20px !important;
  font-family: "Kanit";
  font-weight: 600;
  margin-bottom: 10px;
}

.contactbox .footer-right ul {
  margin-top: 10px !important;
}

.contact-map {
  background: #f6f8fa;
}

.contact-map p {
  padding: 0;
  margin: 0;
}

.teamclm {
  margin-top: 20px;
}

.teambox {
  background: #fff;
  max-width: 277px;
}

.teambox figure {
  margin: 0;
  padding: 0;
}

.teambox figure img {
  max-width: 277px;
  width: 100%;
  /* height: 100%;
  min-height: 267px; */
}

.teambox .txt {
  padding: 15px 20px;
  font-size: 18px;
  line-height: 21px;
  min-height: 85px;
}

.teambox .txt h4 {
  font-size: 22px;
  color: #323232;
  padding: 0 0 5px 0;
  margin: 0;
  letter-spacing: 0;
}

.page-id-177 .otbox h4 {
  display: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

/*  dev 2 */
/* product page start */
.innerbanner {
  height: 260px;
}

.innerbanner_text {
  position: relative;
}

.product-details {
  padding: 35px 0 140px;
}

.product-details .breadcrumb {
  padding-top: 0;
  font-size: 13px;
  color: #7c7c7c;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  margin-bottom: 70px;
  padding-bottom: 0;
}

.product-details .breadcrumb a {
  color: #2f3880 !important;
  font-size: 13px;
}

.product-details .breadcrumb i {
  margin: 0 1px 0 4px;
}

.product-details h2 {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  color: #2b357d;
  font-size: 38px;
  line-height: 45px;
  margin-bottom: 30px;
}

.product-details p {
  color: #333333;
  font-size: 16px;
  line-height: 26px;
}

.top-content {
  margin-bottom: 38px;
}

.product-right img {
  margin-left: auto;
}

.product-details h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  color: #2b357d;
  font-size: 18px;
  margin-bottom: 22px;
}

.pat-box {
  /* width: 100px;
  height: 100px; */
  width: 90px;
  height: 90px;
  background: #ed1c24;
  border-radius: 9px;
  margin-bottom: 15px;
}

.pat-img {
  /* transform: translate(18px, 16px); */
  transform: translate(0px, 16px);
}

.col-md-3:first-child .pat-img {
  /* transform: translate(15px, 30px); */
  transform: translate(0px, 20px);
}

.col-md-3:nth-child(3) .pat-img {
  transform: translate(15px, 20px);
}

.pat-img img {
  max-width: 100px;
  max-height: 74px;
}

.patterns-section p {
  margin-bottom: 0;
}

.patterns-section {
  margin-bottom: 70px;
}

.availables-section h4::after {
  content: "";
  width: 40%;
  height: 1px;
  background: #b2b2b2;
  position: absolute;
  top: 13px;
  margin-left: 6px;
}

.availables-section h4 {
  position: relative;
  overflow-x: hidden;
  margin-bottom: 50px;
}

.flexer {
  display: flex;
}

.av-box {
  align-items: center;
  margin-bottom: 25px;
}

.av-box img {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  margin-right: 18px;
}

.av-box p {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}

.product-left {
  max-width: 600px;
}

.other-products {
  background: #f8f4ee;
  padding: 60px 0 70px;
}

.other-products h3 {
  color: #ed1c24;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 35px;
  text-align: center;
}

.other-products .col-md-2 {
  width: 19.666667%;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

.oproduct-box img {
  border-radius: 6px;
  width: 200px;
  height: 171px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.oproduct-box p {
  font-weight: 500;
  color: #333333;
  font-size: 16px;
  margin-bottom: 0;
}

/* .custom-col-3 {
  max-width: 215px;
} */
.other-products .slick-next:before,
.other-products .slick-prev:before {
  display: none;
}

.other-products .slick-next {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  transform: rotate(180deg);
  bottom: -45px;
  right: 5px;
  position: absolute;
}

.other-products .slick-prev {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  bottom: -45px;
  left: 5px;
  position: absolute;
}

.other-products .slick-prev,
.other-products .slick-next {
  width: 35px;
  height: 35px;
  border: transparent;
  color: transparent;
}

.other-products .slick-prev:hover,
.other-products .slick-prev:focus {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  opacity: 0.8;
  transition: 0.2s linear;
}

.other-products .slick-next:hover,
.other-products .slick-next:focus {
  background: url(../images/arrow-testimonial.png) no-repeat center;
  transform: rotate(180deg);
}

/* ========================================
   FLIPKART-STYLE PRODUCTS PAGE
   ======================================== */

/* Products Page Section */
.products-page-section {
  padding: 40px 0 60px;
  background: #f1f3f6;
}

.intro-section {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Category Filter Section - Flipkart Style */
.category-filter-section {
  margin-bottom: 15px;
  /* Reduced from 30px */
}

.category-filter-wrapper {
  background: #fff;
  padding: 15px;
  /* Reduced from 20px */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.filter-title {
  font-size: 18px;
  /* Reduced from 20px */
  font-weight: 700;
  color: #212121;
  margin-bottom: 10px;
  /* Reduced from 20px */
  font-family: "Kanit", sans-serif;
  padding-bottom: 8px;
  /* Reduced from 15px */
  border-bottom: 2px solid #f1f3f6;
}

.category-tabs-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-filter-tabs li {
  flex: 0 0 auto;
}

.category-filter-tabs li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-filter-tabs li a:hover {
  border-color: #2874f0;
  color: #2874f0;
  background: #f7faff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 116, 240, 0.15);
}

.category-filter-tabs li.active a {
  background: #2874f0;
  border-color: #2874f0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(40, 116, 240, 0.3);
}

.category-icon {
  font-size: 18px;
}

.category-name {
  font-weight: 600;
}

.category-count {
  font-size: 12px;
  opacity: 0.8;
}

/* Products Display Section */
.products-display-section {
  margin-top: 20px;
}

.products-header {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.products-count {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  margin: 0;
  font-family: "Kanit", sans-serif;
}

/* Product Grid Container - Card Style */
.product-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  min-height: 400px;
}

/* Product Card - Modern Design */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e0e0e0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Popular Tag */
.popular-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b6b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
}

/* Product Link */
.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Product Image Wrapper */
.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Price Tag */
.price-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Add to Cart Button */
.add-to-cart-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.add-to-cart-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* Product Content */
.product-content {
  padding: 15px;
}

/* Product Title */
.product-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #007bff;
}

/* Star Rating */
.star-rating {
  margin-bottom: 12px;
  color: #ffc107;
  font-size: 14px;
}

.star-rating i {
  margin-right: 2px;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.action-btn {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.action-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.action-btn.wishlist-btn:hover {
  background: #ffebee;
  border-color: #f8bbd9;
  color: #e91e63;
}

.action-btn.view-btn:hover {
  background: #e3f2fd;
  border-color: #90caf9;
  color: #2196f3;
}

/* Responsive Design for Product Cards */
@media (max-width: 1200px) {
  .product-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .product-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
  }

  .product-card {
    border-radius: 10px;
  }

  .price-tag {
    font-size: 13px;
    padding: 5px 10px;
  }

  .add-to-cart-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-content {
    padding: 12px;
  }

  .product-title {
    font-size: 15px;
  }

  .price-tag {
    font-size: 12px;
    padding: 4px 8px;
  }

  .add-to-cart-btn {
    width: 34px;
    height: 34px;
  }

  .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .product-grid-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .product-card {
    border-radius: 12px;
  }

  .popular-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  .product-image-wrapper {
    padding-top: 70%;
  }

  .product-content {
    padding: 15px;
  }

  .product-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .star-rating {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .price-tag {
    font-size: 14px;
    padding: 6px 12px;
  }

  .add-to-cart-btn {
    width: 40px;
    height: 40px;
  }

  .action-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.product-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #2b357d;
}

.product-card-inner-link {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-image {
  position: relative;
  width: 100%;
  padding-top: 85%;
  overflow: hidden;
  background: #fdfdfd;
}

.product-card-image img {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: cover;
  border-radius: 16px !important;
  -webkit-clip-path: inset(0 round 16px);
  clip-path: inset(0 round 16px);
  transition: transform 0.5s ease;
}

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

.product-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.product-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
  font-family: "Kanit", sans-serif;
}

.product-card-category {
  font-size: 11px;
  color: #ed1c24;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.product-card-link-btn {
  margin-top: auto;
  padding: 12px 20px;
  background: #231f20;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-card:hover .product-card-link-btn {
  background: #2b357d;
}

.product-card-link-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-link-btn i {
  transform: translateX(5px);
}

/* Loading, Error, and Empty States */
.loading-spinner,
.no-products-found,
.error-message {
  text-align: center;
  padding: 60px 20px;
  color: #878787;
  grid-column: 1 / -1;
}

.loading-spinner i,
.no-products-found i,
.error-message i {
  color: #2874f0;
  margin-bottom: 20px;
}

.loading-spinner p,
.no-products-found p,
.error-message p {
  font-size: 16px;
  margin-top: 15px;
  color: #212121;
}

/* Pagination - Flipkart Style */
.pagination-wrapper {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.flipkart-pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.flipkart-pagination li {
  display: inline-block;
}

.flipkart-pagination li a,
.flipkart-pagination li span {
  display: inline-block;
  padding: 8px 14px;
  min-width: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
}

.flipkart-pagination li a:hover {
  background: #f7faff;
  border-color: #2874f0;
  color: #2874f0;
}

.flipkart-pagination li.active a,
.flipkart-pagination li.active span {
  background: #2874f0;
  border-color: #2874f0;
  color: #fff;
  font-weight: 700;
}

.flipkart-pagination li.disabled a,
.flipkart-pagination li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
  .product-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 992px) {
  .product-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .category-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .products-page-section {
    padding: 20px 0 40px;
  }

  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .intro-section {
    padding: 20px;
  }

  .category-filter-wrapper {
    padding: 15px;
  }

  .category-filter-tabs li a {
    padding: 10px 16px;
    font-size: 13px;
  }

  .products-header {
    padding: 12px 15px;
  }

  .products-count {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .product-card-content {
    padding: 12px;
  }

  .product-card-title {
    font-size: 13px;
  }

  .product-card-link {
    padding: 6px 12px;
    font-size: 12px;
  }

  .category-filter-tabs li a {
    padding: 8px 12px;
    font-size: 12px;
  }

  .category-icon {
    font-size: 16px;
  }

  .flipkart-pagination li a,
  .flipkart-pagination li span {
    padding: 6px 10px;
    min-width: 35px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .product-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-title {
    font-size: 16px;
  }
}

.top-content ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 20px;
}

.top-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.top-content ul li::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background: url(../images/tick-icon.png) no-repeat center;
  width: 17px;
  height: 12px;
}

/* product page end */

/* quality page start*/
.qms-bg {
  background: #f8f4ee;
  position: relative;
}

.qms-cover {
  background: #f8f4ee url(../images/qm-bg.png) no-repeat 94% 138%;
  padding: 68px 0;
}

.blue-bx {
  background: #2b357d;
  color: #fff;
  padding: 18px 28px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.stp-bx {
  margin-top: 60px;
}

.blue-bx h4 {
  margin: 15px 0 13px;
  font-size: 16px;
  font-weight: 700;
}

.blue-bx p {
  font-size: 15px;
  opacity: 0.7;
}

.qms-right {
  margin: 80px 0px 0 30px;
}

.qms-right h3,
.qa-bg h3,
.qc-top h3 {
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 23px;
  color: #2b357d;
}

.qms-right p {
  color: #333;
  font-size: 16px;
  opacity: 0.9;
  line-height: 26px;
}

.qa-bg {
  padding: 80px 0;
}

.qa-top,
.qc-top {
  text-align: center;
  max-width: 948px;
  margin: 0 auto;
  margin-bottom: 45px;
}

.qa-bg p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 26px;
}

.qa-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #ec6618;
  border-radius: 4px;
  position: relative;
}

.qa-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.qa-content {
  margin-left: 30px;
}

.qa-box {
  padding: 0 0 28px 50px;
}

.qa-content h5 {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}

.qcontrol-bg {
  padding: 65px 0 90px;
}

.qc-top h3 {
  color: #fff;
}

.qc-top p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 26px;
}

.qcontrol-box {
  padding: 0 70px;
}

.custom-col-qc {
  background: #ffffff;
  text-align: center;
  padding: 48px 30px 40px;
  margin: 0 15px 20px;
  border-radius: 10px;
  box-shadow: 0px 6px 16px #00000094;
}

.qc-content p {
  margin-bottom: 0;
  font-size: 18px;
}

.qc-box img {
  margin: 0 auto;
  margin-bottom: 30px;
}

/* quality page end*/
/* contact page */
.contact-form h2 {
  margin-bottom: 40px;
}

.contact-form .formfield .col-sm-6:first-child {
  padding: 0 20px 0 0;
}

.contact-form .formfield .col-sm-6:last-child {
  padding: 0 0px 0 20px;
}

.contact-form .formfield .col-sm-12 {
  padding: 0;
}

.contact-form textarea {
  border-radius: 0;
  resize: none;
  height: 60px;
  font-size: 15px;
}

.contact-form input[type="submit"] {
  /* margin-left: 0 !important; */
  margin-top: 10px !important;
  text-transform: capitalize !important;
}

.address ul {
  list-style: none;
  padding-left: 0;
}

.address ul li {
  padding-left: 40px;
  margin-bottom: 30px;
  line-height: 26px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.comp-address {
  background: url(../images/location.png) no-repeat left top/ 30px;
}

.phone-ic {
  background: url(../images/phone.png) no-repeat left top/ 30px;
}

.mail-ic {
  background: url(../images/mail.png) no-repeat left top/ 30px;
}

.clock-ic {
  background: url(../images/clock.png) no-repeat left 5px/ 20px;
}

.mail-ic a {
  color: #333;
  transition: .2s linear;
}

.mail-ic a:hover {
  text-decoration: underline;
  transition: .2s linear;
}

.social-media {
  text-align: left;
}

.social-media ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  margin-top: 15px;
}

.social-media ul li {
  flex-shrink: 0;
}

.social-media ul li a {
  color: #fff;
  width: 40px;
  height: 40px;
  background: #231f20;
  display: block;
  margin-right: 12px;
  border-radius: 50px;
  align-items: center;
  text-align: center;
  line-height: 39px;
  transition: .2s linear;
  border: 1px solid transparent;
}

.social-media ul li a:hover {
  background: #fff;
  color: #231f20;
  transition: .2s linear;
  border: 1px solid #231f20;
}






/* custom media start */

@media screen and (max-width: 1200px) {
  .success_story .sbox .txt {
    padding: 250px 0px 0px 0px;
  }

  .teambox .txt {
    padding: 10px 15px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) {

  /* dev 2 */
  .oproduct-box img {
    max-height: 150px;
  }

  .qa-box {
    padding: 0 0 28px 15px;
  }

  /* dev 2 */
}

@media screen and (max-width: 991px) {
  .container {
    width: 100%;
  }

  .success_story .sbox .txt {
    padding: 220px 0px 0px 0px;
  }

  .success_story .sbox {
    padding: 20px;
  }

  .readyproject .txt {
    padding: 0px 10px 0 0px;
  }

  .readyproject a {
    margin-top: 0;
  }

  .bullettxt {
    max-width: inherit;
  }

  .breadcrumb {
    padding-bottom: 20px;
    margin: 0;
  }

  /* dev 2 */
  .other-products .col-md-2 {
    width: unset;
  }

  .custom-col-3 {
    max-width: 100%;
  }

  .product-details {
    padding-bottom: 75px;
  }

  .qms-cover {
    background-position: 50% 138%;
  }

  .qa-content {
    margin-left: 20px;
  }

  .qa-box {
    padding-left: 0;
  }

  .custom-col-qc {
    max-width: 220px;
    flex-shrink: 0;
    padding: 35px 20px 35px;
    margin: 0 10px;
  }

  .qcontrol-box .flexer {
    justify-content: center;
  }

  .qc-content p {
    font-size: 16px;
  }

  .qms-right {
    margin: 20px 0 0;
  }

  .contact-form .formfield .col-sm-6:first-child {
    padding: 0;
  }

  .contact-form .formfield .col-sm-6:last-child {
    padding: 0;
  }

  /* dev 2 */
}

@media screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
    background: #fff !important;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }

  section.whatwe_believe.whatwedo .resp-vtabs .resp-tab-content {
    padding: 10px 10px;
    font-size: 16px;
    line-height: 25px;
  }
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .success_story .sclm .sbox {
    min-height: inherit;
    margin: 20px auto;
    background-size: cover !important;
  }

  .success_story .sbox .txt {
    padding: 250px 0px 0px 0px;
  }

  .readyproject h2 {
    font-size: 25px;
  }

  .readyproject .readybbox {
    font-size: 16px;
  }

  .open-position .opbox .title {
    display: block;
    float: left;
    width: 100%;
    text-align: left;
  }

  .open-position .opbox .txt {
    width: auto;
    padding: 10px 0;
    text-align: left;
  }

  .readybbox {
    margin-top: 20px;
  }

  .ourtechnology .otbox .txt {
    max-width: inherit;
  }

  .innerbandimage {
    text-align: center;
  }

  .innerbandimage img {
    margin-bottom: 0px;
    max-width: 356px;
    width: 100%;
  }

  .firstrow,
  .secondrow {
    font-size: 16px;
  }

  .ourtechnology .tmrw {
    max-width: 600px;
    margin: 0 auto;
  }

  .teambox .txt {
    font-size: 16px;
  }

  .teambox .txt h4 {
    font-size: 18px;
  }

  /* dev 2 */
  .innerbanner {
    height: 220px !important;
  }

  .product-details .breadcrumb {
    margin-bottom: 30px;
  }

  .product-details h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .pat-box {
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .patterns-section p {
    text-align: center;
    margin-bottom: 20px;
  }

  .product-right img {
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .patterns-section {
    margin-bottom: 35px;
  }

  .av-box {
    margin-bottom: 30px;
    justify-content: center;
  }

  .av-box img {
    margin-right: 0;
  }

  .av-box p {
    margin-left: 20px;
    margin-bottom: 10px;
  }

  .product-details {
    padding: 35px 0 40px;
  }

  .oproduct-box {
    text-align: center;
  }

  .oproduct-box img {
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .oproduct-box {
    margin-bottom: 20px;
  }

  .availables-section h4::after {
    width: 100%;
  }

  .other-products {
    padding-bottom: 50px;
  }

  .other-products .slick-prev {
    bottom: -22px;
    left: 15px;
  }

  .other-products .slick-next {
    bottom: -22px;
    right: 15px;
  }

  .qms-cover {
    padding: 20px 0;
  }

  .stp-bx {
    text-align: center;
  }

  .blue-bx img {
    margin: 0 auto;
  }

  .qms-cover {
    background-position: 50% 108%;
  }

  .qa-bg,
  .qcontrol-bg {
    padding: 40px 0;
  }

  .qcontrol-box .flexer {
    display: block;
  }

  .custom-col-qc {
    max-width: 100%;
    margin: 0 auto;
  }

  /* dev 2 */
}

@media screen and (max-width: 640px) {

  .home h3,
  section.inner-body h3 {
    font-size: 22px;
    line-height: 29px;
  }

  .careers .crclm {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .teamclm {
    width: 100% !important;
  }

  .ourtechnology .tmrw {
    max-width: 277px;
  }
}

@media screen and (max-width: 400px) {
  .open-position .opbox .txt {
    width: 100%;
  }
}

/* ========================================
   FLIPKART STYLE - SINGLE PRODUCT PAGE
   ======================================== */

/* Breadcrumb Navigation */
.flipkart-breadcrumb {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-link {
  color: #2874f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #1e5bc6;
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #878787;
  font-size: 12px;
}

.breadcrumb-current {
  color: #212121;
  font-weight: 500;
}

/* Product Detail Section */
.flipkart-product-detail {
  background: #fff;
  padding: 24px 0;
}

/* Image Gallery */
.flipkart-image-gallery {
  position: sticky;
  top: 20px;
}

.main-image-container {
  width: 100%;
  height: 400px;
  border: 1px solid #f0f0f0;
  border-radius: 16px !important;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.main-product-image {
  max-width: 90% !important;
  max-height: 90% !important;
  object-fit: contain;
  border-radius: 16px !important;
  transition: transform 0.3s ease;
}

.main-product-image:hover {
  transform: scale(1.05);
}

.no-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #878787;
  font-size: 14px;
}

.no-image-placeholder i {
  font-size: 48px;
  margin-bottom: 8px;
}

.thumbnail-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
}

.thumbnail-item {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 16px !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: #2874f0;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px !important;
}

/* Product Information */
.flipkart-product-info {
  padding-left: 24px;
}

.product-title {
  font-size: 24px;
  font-weight: 500;
  color: #212121;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.product-categories {
  margin-bottom: 16px;
}

.category-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #212121;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 4px;
}

.product-description {
  color: #212121;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.product-description p {
  margin: 0 0 12px 0;
}

.product-description p:last-child {
  margin-bottom: 0;
}

/* Specifications */
.flipkart-specifications {
  margin-bottom: 32px;
}

.spec-title {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
  margin: 0 0 16px 0;
}

.spec-table {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.spec-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  flex: 0 0 40%;
  padding: 12px 16px;
  background: #fafafa;
  font-weight: 500;
  color: #212121;
  font-size: 14px;
  border-right: 1px solid #f0f0f0;
}

.spec-value {
  flex: 1;
  padding: 12px 16px;
  color: #212121;
  font-size: 14px;
  background: #fff;
}

/* Action Buttons */
.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #ff6161;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-primary:hover {
  background: #e55555;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #fff;
  color: #2874f0;
  text-decoration: none;
  border: 1px solid #2874f0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-secondary:hover {
  background: #f7f8fd;
  color: #2874f0;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Related Products */
.flipkart-related-products {
  background: #f1f3f6;
  padding: 32px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
  margin: 0;
}

.view-all-link {
  color: #2874f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.view-all-link:hover {
  text-decoration: underline;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

.related-product-card .product-image {
  width: 100%;
  height: 200px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-product-card:hover .product-image img {
  transform: scale(1.05);
}

.related-product-card .no-image {
  color: #ccc;
  font-size: 48px;
}

.related-product-card .product-info {
  padding: 16px;
}

.product-category {
  display: block;
  font-size: 12px;
  color: #878787;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Inquiry Section */
.flipkart-inquiry-section {
  background: #fff;
  padding: 40px 0;
}

.inquiry-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.inquiry-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-bottom: 1px solid #f0f0f0;
}

.inquiry-icon {
  width: 60px;
  height: 60px;
  background: #2874f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.inquiry-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: #212121;
  margin: 0 0 4px 0;
}

.inquiry-text p {
  font-size: 14px;
  color: #878787;
  margin: 0;
}

.inquiry-form {
  padding: 24px;
}

/* Form Styling */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  font-family: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #2874f0;
  box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.1);
}

.inquiry-form input[type="submit"] {
  background: #ff6161;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inquiry-form input[type="submit"]:hover {
  background: #e55555;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .flipkart-product-info {
    padding-left: 0;
    margin-top: 24px;
  }

  .flipkart-image-gallery {
    position: static;
  }

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

  .product-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .flipkart-product-detail {
    padding: 16px 0;
  }

  .main-image-container {
    height: 300px;
  }

  .product-title {
    font-size: 20px;
  }

  .spec-row {
    flex-direction: column;
  }

  .spec-label {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .inquiry-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .breadcrumb-nav {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .related-product-card .product-image {
    height: 150px;
  }

  .related-product-card .product-info {
    padding: 12px;
  }

  .main-image-container {
    height: 250px;
  }

  .thumbnail-item {
    width: 50px;
    height: 50px;
  }

  .inquiry-card {
    margin: 0 16px;
  }

  .inquiry-header,
  .inquiry-form {
    padding: 16px;
  }

  .inquiry-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* ========================================
   ENHANCED PRODUCT DETAILS SECTIONS
   ======================================== */

/* Common Section Styling */
.section-title {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.product-highlights,
.product-features,
.product-benefits,
.product-usage,
.product-certifications,
.product-additional-info {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.product-additional-info:last-child {
  border-bottom: none;
}

/* Product Highlights */
.highlights-content {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #2874f0;
}

.highlights-content p {
  margin: 0 0 8px 0;
  color: #212121;
  font-size: 14px;
  line-height: 1.6;
}

.highlights-content p:last-child {
  margin-bottom: 0;
}

/* Key Features */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: #28a745;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: #212121;
  font-size: 14px;
  line-height: 1.5;
}

/* Product Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
}

.benefit-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  margin: 0 0 8px 0;
}

.benefit-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Usage Instructions */
.usage-content {
  background: #fff8e1;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.usage-content p {
  margin: 0 0 12px 0;
  color: #212121;
  font-size: 14px;
  line-height: 1.6;
}

.usage-content p:last-child {
  margin-bottom: 0;
}

.usage-content ol,
.usage-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.usage-content li {
  margin-bottom: 8px;
  color: #212121;
  font-size: 14px;
  line-height: 1.5;
}

/* Certifications */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.certification-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.certification-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cert-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
}

.cert-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

/* Site Logo Styling */
.site-logo {
  display: inline-block;
  line-height: 0;
}

.site-logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Header logo container adjustments */
.navbar-header {
  display: flex;
  align-items: center;
}

/* Logo hover effect */
.site-logo:hover img {
  transform: scale(1.05);
}

/* Fixed Header Scroll State */
.navbar-static-top.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 0;
}

/* Logo adjustments for fixed header */
.navbar-static-top.fixed .site-logo img {
  max-height: 40px !important;
  width: auto !important;
  transition: all 0.3s ease;
}

/* Header container adjustments for fixed state */
.navbar-static-top.fixed .container {
  max-width: 100%;
  padding: 0 15px;
}

/* Navigation adjustments for fixed header */
.navbar-static-top.fixed .navbar-nav>li>a {
  padding: 10px 10px;
  font-size: 14px;
}

/* Mobile menu toggle adjustments for fixed header */
.navbar-static-top.fixed .mobile-menu-toggle {
  margin-top: 0;
}

/* Firm name shrinks on scroll */
.navbar-static-top.fixed .firm-name {
  font-size: 14px;
}

/* Add body padding to prevent content jump when header becomes fixed */
body.fixed-header-active {
  padding-top: 80px;
}

.cert-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  margin: 0 0 8px 0;
}

.cert-info p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Additional Information Sections */
.additional-text-section,
.additional-image-text-section {
  margin-bottom: 24px;
}

.section-content {
  color: #212121;
  font-size: 14px;
  line-height: 1.6;
}

.section-content p {
  margin: 0 0 12px 0;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.image-text-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
}

.section-image {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text {
  color: #212121;
  font-size: 14px;
  line-height: 1.6;
}

.section-text p {
  margin: 0 0 12px 0;
}

.section-text p:last-child {
  margin-bottom: 0;
}

/* Enhanced Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.thumbnail-gallery::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .image-text-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .benefit-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

  .cert-logo {
    width: 60px;
    height: 60px;
  }

  .cert-logo img {
    max-width: 40px;
    max-height: 40px;
  }

  .section-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .product-highlights,
  .product-features,
  .product-benefits,
  .product-usage,
  .product-certifications,
  .product-additional-info {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .highlights-content,
  .usage-content {
    padding: 12px;
  }

  .benefit-card {
    padding: 16px;
  }

  .certification-item {
    padding: 12px;
  }

  .feature-item {
    padding: 8px 0;
  }
}

/* ============================================
   CUSTOMER SATISFACTION CONTACT PAGE STYLES
   ============================================ */

.customer-contact-section {
  padding: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.customer-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 183, 77, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Section */
.contact-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.satisfaction-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10B981;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Methods Grid */
.contact-methods-grid {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.contact-method-card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.contact-method-card:hover::before {
  transform: scaleX(1);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  transform: scale(1.1);
}

.contact-method-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.contact-method-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-value {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #10B981;
  text-decoration: none;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10B981;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.address-list {
  margin-bottom: 20px;
}

.address-item {
  margin-bottom: 20px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.address-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-text {
  color: #6b7280;
  line-height: 1.5;
}

.business-hours {
  color: #10B981;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 12px;
  background: #f0fdf4;
  border-radius: 12px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.social-item {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.social-item:hover {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-4px);
  border-color: #10B981;
}

.community-stats {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Premium Form Section */
.premium-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  z-index: 1;
}

.form-intro {
  padding-right: 40px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.form-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.2;
}

.form-intro p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #374151;
  font-weight: 500;
}

.benefit-icon {
  font-size: 1.2rem;
  color: #10B981;
}

.premium-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.premium-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.form-header p {
  color: #6b7280;
  font-size: 1rem;
}

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

.form-container .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #374151;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="tel"]:focus,
.form-container textarea:focus {
  outline: none;
  border-color: #10B981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

.form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.form-container input[type="submit"] {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.form-container input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.form-container input[type="submit"]:active {
  transform: translateY(0);
}

.form-footer {
  margin-top: 20px;
  text-align: center;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  color: #6b7280;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Contact Report Form Styles */
#crs-contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

#crs-contact-form .form-group {
  margin-bottom: 20px;
}

#crs-contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
  font-family: "Inter", sans-serif;
}

#crs-contact-form input[type="text"],
#crs-contact-form input[type="email"],
#crs-contact-form input[type="tel"],
#crs-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #fafafa;
}

#crs-contact-form input[type="text"]:focus,
#crs-contact-form input[type="email"]:focus,
#crs-contact-form input[type="tel"]:focus,
#crs-contact-form textarea:focus {
  outline: none;
  border-color: #2d8a2d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 138, 45, 0.1);
}

#crs-contact-form input[type="tel"]:invalid {
  border-color: #dc3545;
  background: #fff5f5;
}

#crs-contact-form input[type="tel"].phone-error {
  border-color: #dc3545;
  background: #fff5f5;
  animation: shake 0.5s;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

#crs-contact-form .form-text.text-muted {
  font-size: 13px;
  color: #6c757d;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
}

#crs-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

#crs-contact-form button[type="submit"] {
  background: #2d8a2d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#crs-contact-form button[type="submit"]:hover {
  background: #236b23;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 138, 45, 0.3);
}

#crs-contact-form button[type="submit"]:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Alert styles for contact form */
.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Mobile responsive for contact form */
@media (max-width: 768px) {
  #crs-contact-form {
    padding: 20px;
  }

  #crs-contact-form input[type="text"],
  #crs-contact-form input[type="email"],
  #crs-contact-form input[type="tel"],
  #crs-contact-form textarea {
    font-size: 16px;
    /* Prevent zoom on iOS */
  }

  #crs-contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #crs-contact-form {
    padding: 15px;
  }

  #crs-contact-form .form-group {
    margin-bottom: 15px;
  }

  #crs-contact-form label {
    font-size: 14px;
  }

  #crs-contact-form input[type="text"],
  #crs-contact-form input[type="email"],
  #crs-contact-form input[type="tel"],
  #crs-contact-form textarea {
    padding: 10px 12px;
  }

  #crs-contact-form textarea {
    min-height: 100px;
  }
}

.map {
  margin: 40px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map:hover iframe {
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .customer-contact-section {
    padding: 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .satisfaction-stats {
    gap: 40px;
  }

  .form-intro {
    padding-right: 20px;
  }

  .form-intro h2 {
    font-size: 2.2rem;
  }

}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .satisfaction-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .contact-method-card {
    padding: 30px 25px;
  }

  .method-icon {
    width: 70px;
    height: 70px;
  }

  .form-intro {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .form-intro h2 {
    font-size: 2rem;
  }

  .premium-form-wrapper {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .satisfaction-stats {
    gap: 20px;
    margin-top: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-methods-grid {
    padding: 40px 0;
  }

  .contact-method-card {
    padding: 25px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .method-icon {
    width: 60px;
    height: 60px;
  }

  .contact-method-card h3 {
    font-size: 1.3rem;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 12px;
  }

  .social-item {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .premium-form-section {
    padding: 60px 0;
  }

  .form-intro h2 {
    font-size: 1.8rem;
  }

  .premium-form-wrapper {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .satisfaction-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0;
  }

  .contact-method-card {
    padding: 20px 15px;
    border-radius: 16px;
  }

  .method-icon {
    width: 50px;
    height: 50px;
  }

  .contact-method-card h3 {
    font-size: 1.2rem;
  }

  .social-item {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .form-intro h2 {
    font-size: 1.5rem;
  }

  .premium-form-wrapper {
    padding: 20px 15px;
    border-radius: 16px;
  }

  .map iframe {
    height: 300px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .contact-method-card {
    padding: 15px 12px;
  }

  .contact-method-card h3 {
    font-size: 1.1rem;
  }

  .method-icon {
    width: 45px;
    height: 45px;
  }

  .form-intro h2 {
    font-size: 1.3rem;
  }

  .premium-form-wrapper {
    padding: 15px 12px;
  }

  .form-container input[type="text"],
  .form-container input[type="email"],
  .form-container input[type="tel"],
  .form-container textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .form-container input[type="submit"] {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .map iframe {
    height: 250px;
  }
}

/* Form Inputs - Mobile Friendly */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
  min-height: 48px;
  font-size: 16px;
}

.inquiry-form input[type="submit"] {
  min-height: 48px;
  min-width: 200px;
  padding: 12px 32px;
}

/* Mobile Form Adjustments */
@media (max-width: 768px) {
  .inquiry-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .inquiry-icon {
    margin-bottom: 15px;
  }

  .inquiry-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .inquiry-card {
    border-radius: 0;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}

/* Global Responsive Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive tables */
table {
  width: 100%;
  overflow-x: auto;
  display: block;
  white-space: nowrap;
}

/* Responsive videos */
iframe,
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

/* Responsive typography */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  h5 {
    font-size: 16px !important;
  }

  h6 {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  h4 {
    font-size: 16px !important;
  }

  h5 {
    font-size: 14px !important;
  }

  h6 {
    font-size: 13px !important;
  }
}

/* Touch-friendly spacing */
@media (max-width: 768px) {
  .row {
    margin: 0 -5px;
  }

  [class*="col-"] {
    padding: 0 5px;
  }

  /* Increase touch targets */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }

  /* Better spacing for mobile */
  .section,
  .container-fluid>.row {
    padding: 30px 0;
  }
}

.scroll-to-top:hover {
  background: #607B8F;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
  font-size: 20px;
  margin: 0;
}

/* Show scroll-to-top button */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top i {
    font-size: 16px;
  }
}

/* Who We Are Video Section */
.corpvideo {
  padding: 60px 0;
  background: #f8f9fa;
}

.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.videowrapper iframe,
.videowrapper embed,
.videowrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Custom CF7 Inline Success Alert */
.custom-success-alert {
  display: block;
  background: #f0fdf4 !important;
  border: 1px solid #86efac !important;
  color: #166534 !important;
  margin-top: 15px !important;
  padding: 15px 20px !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  animation: slideDownAlert 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  text-align: left;
}

.custom-success-alert strong {
  font-weight: 700;
  color: #15803d;
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

@keyframes slideDownAlert {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* World Class Section Redesign */
.worldclass {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.worldclass .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.worldclass .container {
  position: relative;
  z-index: 2;
}

.worldclass .boxtxt {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 600px;
}

.worldclass h5 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ed1c24;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.worldclass h2 {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.worldclass .boxtxt p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.worldclass .boxtxt a {
  display: inline-block;
  padding: 15px 35px;
  background: #ed1c24;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}

.worldclass .boxtxt a:hover {
  background: #ffffff;
  color: #ed1c24;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* World Class Mobile Responsive */
@media (max-width: 991px) {
  .worldclass {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .worldclass h2 {
    font-size: 36px;
  }

  .worldclass .boxtxt {
    padding: 35px;
    margin: 0 auto;
    max-width: 100%;
  }

  .worldclass .overlay {
    background: rgba(0, 0, 0, 0.65);
  }
}

@media (max-width: 767px) {
  .worldclass {
    padding: 60px 0;
    text-align: center;
  }

  .worldclass h2 {
    font-size: 32px;
  }

  .worldclass .boxtxt {
    text-align: center;
    padding: 30px 20px;
  }

  .worldclass .boxtxt a {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .worldclass h2 {
    font-size: 28px;
  }

  .worldclass .boxtxt p {
    font-size: 15px;
  }
}

/* Product Showcase & Category Filter Bar */
.product-showcase {
  padding: 100px 0;
  background: #fdfdfd;
}

.product-showcase .introtxt {
  margin-bottom: 50px;
}

.product-showcase .subtitle-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(237, 28, 36, 0.08);
  color: #ed1c24;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-showcase .intro-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.product-showcase .section-description {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.product-showcase .view-all-btn {
  color: #ed1c24;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ed1c24;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.product-showcase .view-all-btn:hover {
  color: #111;
  border-color: #111;
  transform: translateX(5px);
}

/* Category Filter Bar Styles */
.category-nav-row {
  margin-bottom: 60px;
}

.category-filter-bar {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid #f1f5f9;
}

.category-filter-bar .filter-label {
  font-weight: 800;
  color: #1f2937;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.category-filter-bar .filter-label i {
  color: #ed1c24;
}

.category-filter-bar .filter-items {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.category-filter-bar .filter-items::-webkit-scrollbar {
  display: none;
}

.category-filter-bar .filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8fafc;
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-filter-bar .filter-item .count {
  background: #e2e8e0;
  color: #94a3b8;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 50px;
}

.category-filter-bar .filter-item:hover,
.category-filter-bar .filter-item.active {
  background: #1f2937;
  color: #ffffff;
  transform: translateY(-2px);
}

.category-filter-bar .filter-item.active .count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Product Box Styles */
.product-grid {
  display: flex;
  flex-wrap: wrap;
}

.product-box {
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border-radius: 15px !important;
  overflow: hidden;
  cursor: pointer;
  min-height: 380px;
}

.product-box .txt {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.cat-label-link {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #ed1c24;
  color: white !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 10;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cat-label-link:hover {
  background: #111;
  transform: translateY(-2px);
}

.product-box h3 {
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-box .view-details {
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  font-size: 14px;
}

.product-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-box:hover .txt {
  transform: translateY(0);
}

.product-box:hover .view-details {
  opacity: 1;
  transform: translateY(0);
}

/* Product Showcase Mobile Responsive */
@media (max-width: 991px) {
  .category-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .product-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .product-showcase {
    padding: 60px 0;
  }

  .category-nav-row {
    margin-bottom: 30px;
  }

  .product-showcase .intro-flex {
    text-align: center;
    justify-content: center;
  }

  .product-box {
    min-height: 300px !important;
  }
}

/* --- Category Showcase Grid Styles --- */
.category-showcase {
  padding: 80px 0;
  background: #fdfdfd;
}

.category-grid .clm {
  margin-bottom: 30px;
}

.category-card-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card-wrapper:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.category-box {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.category-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease;
}

.category-card-wrapper:hover .category-box::before {
  background: rgba(0, 0, 0, 0.3);
}

.cat-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.category-card-wrapper:hover .cat-content {
  transform: translateY(0);
}

.cat-count {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.cat-name {
  font-family: "Kanit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cat-explore {
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s ease;
}

.category-card-wrapper:hover .cat-explore {
  opacity: 1;
}

/* --- Related Products Section Styles --- */
.related-products-section {
  padding: 80px 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.related-products-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.related-products-section .section-title {
  font-family: "Kanit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2b357d;
  margin-bottom: 10px;
}

.related-products-section .section-subtitle {
  font-size: 16px;
  color: #666;
}

.related-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.related-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.rel-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.related-product-card:hover .rel-img-box img {
  transform: scale(1.1);
}

.rel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 53, 125, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-product-card:hover .rel-overlay {
  opacity: 1;
}

.rel-overlay span {
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 30px;
}

.rel-info {
  padding: 20px;
}

.rel-info h4 {
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333;
}

.rel-cat {
  font-size: 13px;
  color: #ec6618;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .category-box {
    height: 280px;
  }

  .related-products-section .section-title {
    font-size: 26px;
  }
}

/* ================================================================
   PREMIUM FOOTER REDESIGN
   ================================================================ */

/* Wave Separator */
.footer-wave {
  position: relative;
  margin-bottom: -2px;
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Footer Body */
.premium-footer {
  position: relative;
}

.premium-footer .footer-body {
  background: #0c1f0c;
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

.premium-footer .footer-body::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 138, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.premium-footer .footer-body::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer Grid */
.premium-footer .footer-grid {
  position: relative;
  z-index: 1;
}

.premium-footer .footer-col {
  margin-bottom: 40px;
}

/* Brand Section */
.premium-footer .footer-brand {
  margin-bottom: 20px;
}

.premium-footer .footer-logo-link img {
  max-width: 140px;
  height: auto;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.premium-footer .footer-logo-link:hover img {
  filter: brightness(1.3);
}

.premium-footer .footer-tagline {
  color: #94a894;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 320px;
  font-family: 'Inter', sans-serif;
}

/* Social Buttons */
.premium-footer .footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.premium-footer .social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a894;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-footer .social-btn:hover {
  background: #2d8a2d;
  border-color: #2d8a2d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 138, 45, 0.3);
}

/* Footer Headings */
.premium-footer .footer-heading {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.3px;
}

.premium-footer .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #2d8a2d, #5cb85c);
  border-radius: 2px;
}

/* Footer Navigation */
.premium-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer .footer-nav li {
  margin-bottom: 0;
}

.premium-footer .footer-nav li a {
  color: #94a894;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.premium-footer .footer-nav li a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  color: #2d8a2d;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.premium-footer .footer-nav li a:hover {
  color: #fff;
  padding-left: 15px;
}

.premium-footer .footer-nav li a:hover::before {
  left: 0;
  opacity: 1;
}

/* Contact List */
.premium-footer .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.premium-footer .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.premium-footer .contact-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, #2d8a2d, #1a6a1a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 138, 45, 0.25);
}

.premium-footer .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.premium-footer .contact-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.premium-footer .contact-value {
  color: #94a894;
  font-size: 13px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

a.contact-value:hover {
  color: #5cb85c;
}

/* Gallery Grid */
.premium-footer .footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.premium-footer .gallery-thumb {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.premium-footer .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.premium-footer .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 138, 45, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-footer .gallery-overlay i {
  color: #fff;
  font-size: 18px;
}

.premium-footer .gallery-thumb:hover img {
  transform: scale(1.15);
}

.premium-footer .gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

/* Footer Bottom Bar */
.premium-footer .footer-bottom-bar {
  background: #071507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.premium-footer .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.premium-footer .copyright {
  color: #6b8a6b;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.premium-footer .copyright strong {
  color: #94a894;
}

.premium-footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-footer .footer-bottom-links a {
  color: #6b8a6b;
  font-size: 13px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.premium-footer .footer-bottom-links a:hover {
  color: #5cb85c;
}

.premium-footer .footer-bottom-links .sep {
  color: #2a3d2a;
  font-size: 12px;
}

/* Scroll to Top REDESIGN */
.premium-footer .scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  /* Dynamic Progressive Ring Background */
  --scroll-prog: 0%;
  background: conic-gradient(var(--primary-color, #ed1c24) var(--scroll-prog), #fdf2f2 var(--scroll-prog));
}

.premium-footer .scroll-to-top::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
  transition: background 0.3s ease;
}

.premium-footer .scroll-to-top i {
  position: relative;
  z-index: 2;
  color: var(--primary-color, #ed1c24);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  transform: translateY(-2px);
  /* Optical centering for FontAwesome angles */
  transition: color 0.3s ease;
}

.premium-footer .scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(237, 28, 36, 0.3);
}

.premium-footer .scroll-to-top:hover::before {
  background: var(--primary-color, #ed1c24);
}

.premium-footer .scroll-to-top:hover i {
  color: #ffffff;
}

.premium-footer .scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ================================================================
   FOOTER RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 991px) {
  .premium-footer .footer-body {
    padding: 50px 0 30px;
  }

  .premium-footer .footer-col {
    margin-bottom: 35px;
  }

  .premium-footer .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-wave svg {
    height: 50px;
  }
}

/* ================================================================
   FOOTER RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 767px) {
  .footer-wave svg {
    height: 40px;
  }

  .premium-footer .footer-body {
    padding: 40px 0 20px;
  }

  .premium-footer .footer-col {
    margin-bottom: 30px;
    text-align: center;
  }

  .premium-footer .footer-brand {
    display: flex;
    justify-content: center;
  }

  .premium-footer .footer-tagline {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .premium-footer .footer-socials {
    justify-content: center;
  }

  .premium-footer .footer-heading {
    text-align: center;
  }

  .premium-footer .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .premium-footer .footer-nav li a {
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }

  .premium-footer .footer-nav li a::before {
    display: none;
  }

  .premium-footer .footer-nav li a:hover {
    padding-left: 0;
    color: #5cb85c;
  }

  .premium-footer .footer-contact-list {
    align-items: center;
  }

  .premium-footer .contact-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .premium-footer .footer-gallery {
    max-width: 280px;
    margin: 0 auto;
  }

  .premium-footer .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .premium-footer .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .premium-footer .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ================================================================
   FOOTER RESPONSIVE — SMALL MOBILE
   ================================================================ */
@media (max-width: 480px) {
  .footer-wave svg {
    height: 30px;
  }

  .premium-footer .footer-body {
    padding: 30px 0 15px;
  }

  .premium-footer .footer-logo-link img {
    max-width: 110px;
  }

  .premium-footer .footer-heading {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .premium-footer .footer-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-width: 240px;
  }

  .premium-footer .contact-value,
  .premium-footer .contact-label {
    font-size: 12px;
  }

  .premium-footer .footer-bottom-bar {
    padding: 15px 0;
  }

  .premium-footer .copyright,
  .premium-footer .footer-bottom-links a {
    font-size: 12px;
  }

  .premium-footer .social-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* ================================================================
   LEGAL PAGES — Privacy Policy & Terms and Conditions
   ================================================================ */

/* Legal Banner */
.legal-banner {
  position: relative;
  background: linear-gradient(135deg, #0c1f0c 0%, #1a3a1a 50%, #0a1a0a 100%);
  padding: 100px 0 70px;
  text-align: center;
  overflow: hidden;
}

.legal-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 138, 45, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legal-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legal-banner-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" width="60" height="60"/><path d="M30 0L30 60M0 30L60 30" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></svg>');
  pointer-events: none;
}

.legal-banner-content {
  position: relative;
  z-index: 2;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(45, 138, 45, 0.15);
  border: 1px solid rgba(45, 138, 45, 0.3);
  border-radius: 50px;
  color: #5cb85c;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.legal-banner h1 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.legal-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.legal-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.legal-meta span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Legal Content Section */
.legal-content-section {
  padding: 60px 0 80px;
  background: #f8faf8;
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Legal Block (each section) */
.legal-block {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #f0f2f0;
  position: relative;
}

.legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(45, 138, 45, 0.1), rgba(92, 184, 92, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.legal-block-icon i {
  color: #2d8a2d;
  font-size: 18px;
}

.legal-block h2,
.legal-body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-block p,
.legal-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block ul,
.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.legal-block ul li,
.legal-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.legal-block ul li::before,
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #2d8a2d;
  border-radius: 50%;
  opacity: 0.6;
}

.legal-block a,
.legal-body a {
  color: #2d8a2d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-block a:hover,
.legal-body a:hover {
  color: #1a6a1a;
  text-decoration: underline;
}

/* Legal Page Responsive */
@media (max-width: 991px) {
  .legal-banner {
    padding: 80px 0 60px;
  }

  .legal-banner h1 {
    font-size: 2.4rem;
  }

  .legal-card {
    padding: 40px 35px;
  }
}

@media (max-width: 767px) {
  .legal-banner {
    padding: 70px 0 50px;
  }

  .legal-banner h1 {
    font-size: 2rem;
  }

  .legal-banner p {
    font-size: 0.95rem;
  }

  .legal-content-section {
    padding: 40px 0 60px;
  }

  .legal-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .legal-block h2,
  .legal-body h2 {
    font-size: 1.2rem;
  }

  .legal-block p,
  .legal-body p {
    font-size: 14px;
  }

  .legal-block ul li,
  .legal-body ul li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .legal-banner {
    padding: 60px 0 40px;
  }

  .legal-banner h1 {
    font-size: 1.6rem;
  }

  .legal-card {
    padding: 25px 15px;
  }

  .legal-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .legal-block-icon {
    width: 35px;
    height: 35px;
  }

  .legal-block-icon i {
    font-size: 15px;
  }
}

/* ==========================================================
   GLOBAL IMAGES (Premium Curved Corners)
   ========================================================== */
.site-content img {
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  /* Soft drop shadow for a premium feel */
}

/* Explicitly EXCLUDE structural banners, logos, and icons from being rounded */
header img,
footer img,
.logo img,
.navbar-brand img,
.footer-logo img,
.hero-slide-img,
.innerbanner img,
.icon img,
.fa,
.decor-leaf img,
.client-logo img,
.partner-logo img,
.mfp-img,
.scrolling-welcome-banner img,
.v-icon img,
.signal-icon img,
.card-icon img,
.wpcf7-form img {
  border-radius: 0;
  box-shadow: none;
}

/* Specific rule for single product images to ONLY get border-radius and NO shadow */
.main-product-image,
.thumbnail-item img {
  border-radius: 16px !important;
  box-shadow: none !important;
}

/* ==========================================================
   MODERN CONTACT SPLIT SECTION STYLES
   ========================================================== */
.contact-split-section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.css-grid-contact {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.contact-col {
  flex: 1 1 33.333%;
  display: flex;
  flex-direction: column;
}

.contact-map {
  position: relative;
  min-height: 250px;
}

.contact-map .map-wrapper,
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Sticky Business Name Label on Map */
.map-business-label {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  animation: mapLabelBounce 2s ease-in-out infinite;
}

.map-business-label span {
  background: #ffffff;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  border-left: 4px solid #ed1c24;
  position: relative;
}

.map-business-label span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ffffff;
}

.map-label-pin {
  width: 14px;
  height: 14px;
  background: #ed1c24;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.4);
  margin-top: 4px;
}

@keyframes mapLabelBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

.contact-info {
  background-color: #e9e9e9;
  padding: 30px 40px;
  justify-content: center;
}

.info-content-wrap h2,
.form-content-wrap h2 {
  font-family: 'Kanit', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #333;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.info-item .icon {
  font-size: 20px;
  color: var(--primary-color, #ed1c24);
  margin-right: 15px;
  line-height: 1;
}

.info-item .details h5 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px;
}

.info-item .details p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.info-item .details a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item .details a:hover {
  color: var(--primary-color, #ed1c24);
}

.social-media-contact {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-media-contact a {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 15px;
  line-height: 0;
  padding: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.social-media-contact a:hover {
  background: var(--primary-color, #ed1c24);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-wrap {
  background-color: #fff;
  padding: 30px 40px;
  justify-content: center;
}

.modern-contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}

.modern-contact-form input[type="text"],
.modern-contact-form input[type="email"],
.modern-contact-form input[type="tel"],
.modern-contact-form textarea {
  width: 100%;
  background-color: #e9e9e9;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  border-radius: 8px;
  outline: none;
  transition: background 0.3s;
  font-family: 'Inter', sans-serif;
}

.modern-contact-form input[type="text"]:focus,
.modern-contact-form input[type="email"]:focus,
.modern-contact-form input[type="tel"]:focus,
.modern-contact-form textarea:focus {
  background-color: #e0e0e0;
}

.modern-contact-form textarea {
  min-height: 100px;
  resize: none;
}

/* Specific styling for CF7 submit button */
.modern-contact-form .wpcf7-submit,
.modern-contact-form input[type="submit"] {
  background-color: var(--primary-color, #ed1c24) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: block;
}

.modern-contact-form .wpcf7-submit:hover,
.modern-contact-form input[type="submit"]:hover {
  background-color: #c5141b !important;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .contact-col {
    flex: 1 1 100%;
  }

  .contact-map {
    height: 250px;
  }

  .contact-map .map-wrapper,
  .contact-map iframe {
    position: relative;
    height: 250px;
  }
}

@media (max-width: 767px) {

  .contact-info,
  .contact-form-wrap {
    padding: 35px 25px;
  }

  .info-content-wrap h2,
  .form-content-wrap h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: left;
  }

  .info-item {
    margin-bottom: 15px;
  }

  .info-item .icon {
    font-size: 18px;
    margin-right: 12px;
  }

  .info-item .details h5 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .info-item .details p {
    font-size: 14px;
  }

  .social-media-contact {
    margin-top: 25px;
    gap: 10px;
  }

  .modern-contact-form .wpcf7-form-control-wrap {
    margin-bottom: 15px;
  }

  .modern-contact-form input[type="text"],
  .modern-contact-form input[type="email"],
  .modern-contact-form input[type="tel"],
  .modern-contact-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-map,
  .contact-map .map-wrapper,
  .contact-map iframe {
    min-height: 250px;
    height: 250px;
  }
}

/* ==========================================================
   AGRO THEME FOOTER (4-COLUMN GRID)
   ========================================================== */
.agro-theme-footer {
  background: #0c1f0c;
  color: #c5d0c5;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.agro-theme-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  /* background: url('../images/leaf-icon.svg') no-repeat right bottom; */
  opacity: 0.03;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.footer-main-area {
  padding: 60px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget {
  margin-bottom: 25px;
}

.footer-logo-box img {
  max-height: 90px;
  width: auto;
  margin-bottom: 25px;
}

.footer-about-text {
  font-size: 15px;
  line-height: 1.5;
  color: #a8bba8;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social-strip {
  display: flex;
  gap: 12px;
}

.footer-social-strip a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  /* Circular for premium look */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  line-height: 0;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  flex-shrink: 0;
}

.footer-social-strip a:hover {
  background: #ed1c24;
  border-color: #ed1c24;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}

.widget-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  /* Shorter accent line */
  height: 2px;
  background: #ed1c24;
}

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

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
  color: #a8bba8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.footer-menu li a::before {
  content: '\f105';
  /* fa-angle-right */
  font-family: 'FontAwesome';
  font-size: 13px;
  color: rgba(237, 28, 36, 0.5);
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-menu li a:hover::before {
  color: #ed1c24;
  margin-right: 3px;
}

/* Address Box Fixes */
.footer-address-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-address-box .address-icon {
  color: #ed1c24;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-address-box .address-text {
  font-size: 14px;
  line-height: 1.6;
  color: #a8bba8;
}

.footer-address-box .address-text p {
  margin: 0 0 5px 0;
  /* Remove massive ACF paragraph gaps */
}

.footer-address-box .address-text p:last-child {
  margin-bottom: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-info-box {
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease;
}

.c-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed1c24;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.c-info-box:hover .c-icon {
  background: #ed1c24;
  color: #fff;
  border-color: #ed1c24;
  transform: scale(1.1);
}

.c-text span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a8a6a;
  margin-bottom: 2px;
}

.c-text a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 4px;
}

.c-text a:last-child {
  margin-bottom: 0;
}

.c-text a:hover {
  color: #ed1c24;
}

/* Bottom Strip */
.footer-bottom-strip {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

.copyright-note {
  font-size: 14px;
  color: #6a8a6a;
}

.copyright-note strong {
  color: #fff;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 25px;
}

.footer-bottom-links li a {
  color: #6a8a6a;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links li a:hover {
  color: #fff;
}

/* Responsive Grid */
@media (max-width: 1199px) {
  .footer-main-area {
    padding: 80px 0 40px;
  }
}

@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .footer-main-area .container {
    padding-left: 30px !important;
    /* Move content a bit to the right by adding padding */
    padding-right: 30px !important;
  }

  .footer-bottom-strip {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom-links {
    margin-top: 15px;
    justify-content: center;
  }

  .widget-title {
    margin-bottom: 25px;
  }
}

/* ==========================================================
   PROGRESSIVE BACK TO TOP BUTTON
   ========================================================== */
.progress-wrap {
  position: fixed;
  right: 35px;
  bottom: 35px;
  height: 54px;
  width: 54px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 4px solid #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #ed1c24;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transition: all 0.3s ease;
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ed1c24;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  opacity: 1;
  transition: all 0.3s ease;
}

.progress-wrap:hover .progress-icon {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(-2px);
}

.progress-wrap:hover .progress-percentage {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(2px);
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: #ed1c24;
  stroke-width: 4;
  box-sizing: border-box;
  transition: stroke 0.3s ease;
}

.progress-wrap:hover svg.progress-circle path {
  stroke: #0c1f0c;
  /* Green on hover */
}

.progress-wrap svg.progress-circle {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================
   FAQ Page Styles
   ======================== */
.faq-section {
  padding: 70px 0 50px;
  background: #f0f4f8;
}

.faq-intro {
  margin-bottom: 50px;
}

.faq-intro h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.faq-intro p {
  font-size: 16px;
  color: #595959;
  margin: 0;
}

/* Category */
.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  font-size: 23px;
  font-weight: 600;
  color: #2d8259;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-cat-dot {
  width: 12px;
  height: 12px;
  background: #2d8259;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Accordion Items */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}

.faq-question:hover {
  background: #fafbfc;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  flex: 1;
  padding-right: 15px;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #2d8259;
}

.faq-item.active .faq-q-text {
  color: #2d8259;
}

/* Answer */
.faq-answer {
  display: none;
  border-top: 1px solid #f0f0f0;
}

.faq-answer-inner {
  padding: 20px 24px 24px;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}

.faq-answer-inner p {
  margin-bottom: 10px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.faq-answer-inner li {
  margin-bottom: 6px;
}

/* Still Have Questions CTA */
.faq-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a3c2a 0%, #2d6b45 50%, #1a3c2a 100%);
  position: relative;
}

.faq-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faq-cta-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.faq-cta-section>.container>.row>div>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.faq-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.faq-contact-item i {
  color: #4ade80;
  font-size: 16px;
}

.faq-cta-subtext {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem !important;
  margin-bottom: 25px !important;
}

.faq-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.faq-cta-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 50px 0 40px;
  }

  .faq-intro h2 {
    font-size: 26px;
  }

  .faq-category-title {
    font-size: 20px;
  }

  .faq-cta-section {
    padding: 50px 0;
  }

  .faq-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 40px 0 30px;
  }

  .faq-intro h2 {
    font-size: 22px;
  }

  .faq-category-title {
    font-size: 18px;
  }

  .faq-question {
    padding: 15px 18px;
  }

  .faq-q-text {
    font-size: 14px;
  }

  .faq-answer-inner {
    padding: 15px 18px 18px;
    font-size: 14px;
  }

  .faq-cta-section h2 {
    font-size: 22px;
  }
}

/* --- Offline Notification Styles --- */
.offline-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  z-index: 99999;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: none;
  animation: slideDown 0.3s ease;
}

.offline-notification.show {
  display: block;
}

.offline-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.offline-content i.fa-wifi {
  font-size: 24px;
  margin-right: 15px;
  animation: pulse 2s infinite;
}

.offline-text {
  flex: 1;
}

.offline-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.offline-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.offline-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  margin-left: 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.offline-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .offline-content {
    flex-direction: column;
    text-align: center;
  }

  .offline-content i.fa-wifi {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .offline-close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
  }
}

/* --- Utility Classes for Shared Styles --- */
.mt-10 {
  margin-top: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.m-auto {
  margin: 0 auto !important;
}

.mx-auto-mb-15 {
  margin: 0 auto 15px !important;
}

.mx-auto-mb-20 {
  margin: 0 auto 20px !important;
}

.max-w-800 {
  max-width: 800px !important;
}

.max-w-650 {
  max-width: 650px !important;
}

.center-flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.white-bg-overflow-hidden {
  background: #fff !important;
  overflow: hidden;
  position: relative;
}

.leaf-decor-top {
  top: 0;
  left: -20px;
  opacity: 0.05;
}

.leaf-decor-bottom {
  bottom: 0;
  right: -20px;
  opacity: 0.05;
  transform: rotate(180deg);
}

.marquee-border {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0;
}

.grayscale-text {
  color: #999 !important;
}

.license-subtitle {
  font-size: 1.5rem !important;
  color: #666 !important;
  font-weight: 500 !important;
  margin-top: 25px !important;
}

.product-desc {
  display: none;
}

.inquiry-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.inquiry-info {
  background: #1a1a2e;
  padding: 50px 40px;
  height: 100%;
  color: #fff;
}

.inquiry-info h3 {
  color: #ebb22e;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.inquiry-highlights {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.inquiry-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #ccc;
}

.inquiry-highlights li i {
  color: #ebb22e;
  font-size: 18px;
}

.formcontact {
  padding: 50px 40px;
  background: #fff;
}

/* --- Enquiry Form Styles (Handler) --- */
.agro-modern-form .form-row {
  margin-bottom: 15px;
  overflow: hidden;
}

.agro-modern-form .form-group {
  margin-bottom: 10px;
}

.agro-modern-form .form-control {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  transition: all 0.3s;
}

.agro-modern-form textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Fallback for multiselect if select2 doesn't load */
.agro-modern-form select.select2-multiple[multiple] {
  height: auto;
  min-height: 100px;
  padding: 10px;
  background-image: none;
}

.agro-modern-form select.select2-multiple option {
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.agro-modern-form select.select2-multiple option:last-child {
  border-bottom: none;
}

.agro-modern-form .form-control:focus {
  border-color: #ed1c24;
  box-shadow: 0 0 5px rgba(237, 28, 36, 0.2);
  outline: none;
}

.agro-submit-btn {
  background-color: #ed1c24;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.agro-submit-btn:hover {
  background-color: #c4181f;
}

.form-response-msg {
  margin-top: 15px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.form-response-msg.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response-msg.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.select2-container--default .select2-selection--multiple {
  min-height: 50px;
  border: 1px solid #ddd !important;
  padding: 2px 10px !important;
  border-radius: 4px !important;
  background-color: #f9f9f9 !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ed1c24 !important;
  box-shadow: 0 0 5px rgba(237, 28, 36, 0.2) !important;
  background-color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #ed1c24 !important;
  border: 1px solid #ed1c24 !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 3px 10px 3px 25px !important;
  margin-top: 7px !important;
  position: relative;
  font-size: 13px !important;
  font-family: "Poppins", sans-serif !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
  position: absolute !important;
  left: 5px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 0 5px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer;
}

.select2-results__option {
  padding: 10px 12px 10px 38px !important;
  display: block !important;
  position: relative !important;
  color: #333 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  min-height: 40px !important;
}

.select2-results__option::before {
  content: "";
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.select2-results__option[aria-selected="true"]::before {
  content: "\f00c";
  font-family: FontAwesome !important;
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #fff !important;
  font-size: 10px !important;
  text-align: center !important;
  line-height: 15px !important;
  font-weight: normal !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f9f9f9 !important;
  color: #1a1a2e !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #fff3f3 !important;
  color: #ed1c24 !important;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 10px !important;
  height: 26px !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
}

.select2-container--open {
  z-index: 999999 !important;
}

/* Logo and Firm Name Styles */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  height: 100%;
}

.site-logo img,
.site-logo .custom-logo {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.firm-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ebb22e;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-left: 0;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 1;
  /* Allow to shrink on small screens */
}

header.fixed .firm-name {
  font-size: 15px;
  margin-left: 8px;
}

.firm-name span {
  color: #ebb22e;
}

.site-logo:hover .firm-name {
  color: #ebb22e;
}

/* Mobile Logo Styles */
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.mobile-logo .firm-name {
  font-size: 16px;
  color: #c5a021;
}

.sidenav-header .firm-name {
  color: #c5a021;
}

/* --- Header Layout Enhancements — Spread to Edges & Vertically Centered --- */
@media (min-width: 992px) {
  #site_header {
    background: rgba(255, 255, 255, 0.85);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  #site_header.fixed {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.8) !important;
  }

  #site_header .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: none !important;
    width: 100% !important;
  }

  #site_header .row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .navbar-header {
    width: auto !important;
    float: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .header-menu {
    width: auto !important;
    float: none !important;
    flex: 1;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .navbar-nav {
    float: none !important;
    display: flex !important;
    margin: 0 !important;
    align-items: center !important;
  }
}

/* Responsive Logo & Header Adjustments */
@media (max-width: 991px) {
  #site_header .container-fluid {
    padding: 0 15px !important;
    /* Less padding on mobile */
  }

  .navbar-header {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-logo {
    flex: 1;
    gap: 5px;
    /* Tighter gap for mobile */
    margin-right: 5px;
  }

  .firm-name {
    font-size: 14px;
    /* Smaller font on mobile */
    white-space: nowrap;
    /* Prevent 3-line wrap */
    max-width: none;
  }
}

@media (max-width: 480px) {
  .firm-name {
    font-size: 12px;
  }

  .site-logo img,
  .site-logo .custom-logo {
    max-height: 50px;
    /* Increased from 40px for better visibility */
  }
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON (GLOBAL)
   ========================================================== */
.floating-whatsapp {
  position: fixed;
  right: 35px;
  bottom: 35px;
  /* Initially sits exactly where back-to-top is */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  /* WhatsApp Green */
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background-color: #1ebe57;
  /* Slightly darker on hover */
  color: #fff !important;
}

.floating-whatsapp i {
  margin-top: 1px;
}

/* Auto Slide Up when Back to Top appears */
.progress-wrap.active-progress~.floating-whatsapp {
  bottom: 105px;
  /* Moves up perfectly above the back-to-top button */
}

/* Mobile Adjustments for WhatsApp Button */
@media (max-width: 767px) {
  .floating-whatsapp {
    right: 20px;
    bottom: 20px;
    /* Initially sits where back-to-top is */
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .progress-wrap.active-progress~.floating-whatsapp {
    bottom: 85px;
    /* Moves up above the lower progress-wrap on mobile */
  }
}