/* ==========================================================================
           TruPet GLOBAL CSS VARIABLES
           ========================================================================== */
:root {
  --tp-color-primary: #273ae2;
  /* Palatinate Blue */
  --tp-color-secondary: #ffffff;
  /* Pure White */
  --tp-color-dark: #0a0a0a;
  --tp-bg-main: var(--tp-color-secondary);
  --tp-text-main: var(--tp-color-dark);
  --tp-font-heading: "Inter", sans-serif;
  --tp-font-body: "Manrope", sans-serif;
  --tp-transition-fast: 0.3s ease;
  --tp-transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Lenis Smooth Scroll CSS setup */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--tp-font-body);
  background-color: var(--tp-bg-main);
  color: var(--tp-text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Fixed Sidebar Styling */
.tp-fixed-contact {
  position: fixed;
  right: 25px;
  top: 75%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tp-fixed-item {
  width: 55px;
  height: 55px;
  background: #273ae2;
  /* Primary Blue */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  position: relative;
}

/* Hover Effects */
.tp-fixed-item:hover {
  transform: translateX(-10px) scale(1.1);
  background: #ffffff;
  color: #273ae2;
  box-shadow: 0 15px 35px rgba(39, 58, 226, 0.4);
}

/* Color Variants */
.tp-fixed-item.tp-wa {
  background-color: #25d366;
}

/* WhatsApp Green */
.tp-fixed-item.tp-wa:hover {
  color: #25d366;
  background: #ffffff;
}

.tp-fixed-item.tp-mail {
  background-color: #ea4335;
}

/* Gmail Red */
.tp-fixed-item.tp-mail:hover {
  color: #ea4335;
  background: #ffffff;
}

/* Modern Tooltips */
.tp-fixed-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 75px;
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tp-fixed-item:hover::after {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tp-fixed-contact {
    right: 15px;
  }

  .tp-fixed-item {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .tp-fixed-item::after {
    display: none;
    /* Hide tooltips on mobile for cleaner look */
  }
}

/* ==========================================================================
           TruPet HEADER / NAVBAR (SOLID WHITE CORPORATE)
           ========================================================================== */
.tp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 18px 0;
  background-color: #ffffff;
  transition: all var(--tp-transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tp-header.tp-scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tp-navbar-brand img {
  height: 48px;
  transition: all var(--tp-transition-smooth);
}

.tp-header.tp-scrolled .tp-navbar-brand img {
  height: 40px;
}

.tp-nav-link {
  color: #111111 !important;
  font-family: var(--tp-font-heading);
  font-weight: 600;
  font-size: 16.5px;
  margin: 0 20px;
  padding: 8px 0 !important;
  position: relative;
  transition: color var(--tp-transition-fast);
}

.tp-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--tp-color-primary);
  transition: width var(--tp-transition-smooth);
}

.tp-nav-link:hover::after,
.tp-nav-link:focus::after {
  width: 100%;
}

.tp-nav-link:hover,
.tp-nav-link:focus,
.tp-dropdown:hover > .tp-nav-link {
  color: var(--tp-color-primary) !important;
}

/* Dropdown Styling */
.tp-dropdown-menu {
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 15px 0;
  margin-top: 0;
  border-top: 3px solid var(--tp-color-primary);
  min-width: 240px;
}

.tp-dropdown-menu .dropdown-item {
  font-family: var(--tp-font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  color: var(--tp-text-main);
  transition: all var(--tp-transition-fast);
  position: relative;
}

.tp-dropdown-menu .dropdown-item:hover {
  background-color: rgba(39, 58, 226, 0.05);
  color: var(--tp-color-primary);
  padding-left: 32px;
}

.tp-dropdown-menu .dropdown-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 12px;
  opacity: 0;
  color: var(--tp-color-primary);
  transition: all var(--tp-transition-fast);
}

.tp-dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
  left: 16px;
}

@media (min-width: 992px) {
  .tp-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ==========================================================================
           UNIQUE SEXY BUTTON DESIGN (Sharp, Tech-Industrial)
           ========================================================================== */
.tp-btn-sexy {
  display: inline-flex;
  align-items: stretch;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-family: var(--tp-font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all var(--tp-transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.tp-btn-sexy:hover {
  color: #ffffff !important;
  border-color: var(--tp-color-primary);
  box-shadow: 0 10px 30px rgba(39, 58, 226, 0.4);
}

.tp-btn-sexy .btn-text {
  padding: 13px 22px;
  position: relative;
  z-index: 2;
  transition: color var(--tp-transition-fast);
}

.tp-btn-sexy .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  background-color: var(--tp-color-primary);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: all var(--tp-transition-smooth);
}

.tp-btn-sexy .btn-icon i {
  transition: transform var(--tp-transition-fast);
  font-size: 14px;
  color: #ffffff;
}

.tp-btn-sexy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--tp-color-primary);
  z-index: 1;
  transition: width var(--tp-transition-smooth);
}

.tp-btn-sexy:hover::before {
  width: 100%;
}

.tp-btn-sexy:hover .btn-icon {
  background-color: transparent;
  border-left-color: transparent;
}

.tp-btn-sexy:hover .btn-icon i {
  transform: translateX(6px);
}

.tp-btn-nav-sexy {
  border-color: var(--tp-color-primary);
  color: var(--tp-color-primary);
  margin-left: 15px;
}

.tp-btn-nav-sexy .btn-text {
  color: var(--tp-text-main);
}

.tp-btn-nav-sexy:hover .btn-text {
  color: #ffffff;
}

.navbar-toggler {
  border: none;
  outline: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817, 17, 17, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
           TruPet HERO SECTION
           ========================================================================== */
.tp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #050505;
}

.tp-hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tp-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.tp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 15, 0.95) 0%,
    rgba(8, 10, 15, 0.75) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.tp-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
}

.tp-side-text {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--tp-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  z-index: 4;
  white-space: nowrap;
}

.tp-hero-container {
  position: relative;
  z-index: 4;
  padding-top: 60px;
  padding-left: 60px;
}

.tp-hero-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 15px;
}

.tp-hero-subtitle::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--tp-color-primary);
}

.tp-hero-title {
  font-family: var(--tp-font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--tp-color-secondary);
  letter-spacing: -2px;
}

.tp-hero-title span {
  color: var(--tp-color-primary);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(39, 58, 226, 0.4);
}

.tp-hero-desc {
  font-family: var(--tp-font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.tp-hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tp-hero-glass-card {
  position: absolute;
  right: 8%;
  bottom: 25%;
  width: 280px;
  background: rgba(15, 15, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--tp-color-primary);
  padding: 25px;
  border-radius: 4px;
  z-index: 4;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
  color: white;
}

.tp-hero-glass-card .icon {
  font-size: 28px;
  color: var(--tp-color-primary);
  margin-bottom: 15px;
}

.tp-hero-glass-card h4 {
  font-family: var(--tp-font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.tp-hero-glass-card p {
  font-family: var(--tp-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tp-hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--tp-color-primary);
  padding: 12px 0;
  z-index: 5;
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tp-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}

.tp-ticker-item {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.tp-ticker-item i {
  font-size: 10px;
  opacity: 0.5;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
           TruPet ABOUT US SECTION
           ========================================================================== */
.tp-about {
  position: relative;
  background-color: var(--tp-bg-main);
  padding: 130px 0;
  overflow: hidden;
  z-index: 2;
}

.tp-about-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}

.tp-about-subtitle::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--tp-text-main);
}

.tp-about-title {
  font-family: var(--tp-font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--tp-text-main);
  letter-spacing: -1.5px;
}

.tp-about-title span {
  color: var(--tp-color-primary);
}

.tp-about-desc {
  font-family: var(--tp-font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444444;
  max-width: 90%;
}

.tp-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 45px;
}

.tp-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tp-about-feature-icon {
  width: 35px;
  height: 35px;
  background-color: rgba(39, 58, 226, 0.08);
  color: var(--tp-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.tp-about-feature-text {
  font-family: var(--tp-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-text-main);
  margin-top: 5px;
}

.tp-about-visuals {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-about-img-wrapper {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.tp-about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.tp-about-img-1 {
  width: 65%;
  height: 75%;
  left: 0;
  top: 5%;
  z-index: 1;
}

.tp-about-img-2 {
  width: 50%;
  height: 60%;
  right: 0;
  bottom: 5%;
  z-index: 2;
  border: 10px solid var(--tp-bg-main);
}

.tp-about-exp-badge {
  position: absolute;
  left: -40px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 25px 30px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
  text-align: center;
  border-bottom: 3px solid var(--tp-color-primary);
}

.tp-about-exp-badge h3 {
  font-family: var(--tp-font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--tp-color-primary);
  line-height: 1;
  margin-bottom: 5px;
}

.tp-about-exp-badge p {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-text-main);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
           TruPet BENCHMARK SECTION
           ========================================================================== */
.tp-benchmark {
  position: relative;
  padding: 100px 0 120px 0;
  background-color: #f6f8fc;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.555), rgba(0, 0, 0, 0.445)),
    url("../images/background/abt-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 2;
}

.tp-benchmark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(246, 248, 252, 0.88); */
  z-index: 0;
}

.tp-benchmark .container {
  position: relative;
  z-index: 1;
}

.tp-benchmark-header {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.tp-benchmark-title-wrap {
  position: relative;
  padding-left: 25px;
  border-left: 4px solid var(--tp-color-primary);
}

.tp-benchmark-title-wrap::after {
  content: "";
  position: absolute;
  left: -8.5px;
  bottom: -5px;
  width: 13px;
  height: 13px;
  background-color: var(--tp-color-primary);
  border-radius: 50%;
}

.tp-benchmark-title {
  font-family: var(--tp-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--tp-color-secondary);
  text-transform: uppercase;
  margin: 0;
}

.tp-benchmark-desc {
  font-family: var(--tp-font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffff;
  margin: 0;
  padding-top: 5px;
}

.tp-timeline-container {
  position: relative;
  margin-bottom: 50px;
  padding: 20px 0;
}

.tp-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 3px;
  background-color: var(--tp-color-primary);
  width: 0%;
  z-index: 1;
}

.tp-timeline-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.tp-timeline-dot {
  width: 16px;
  height: 16px;
  background-color: var(--tp-bg-main);
  border: 3px solid var(--tp-color-primary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}

.tp-benchmark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tp-benchmark-card {
  background-color: #2c3545;
  padding: 40px 30px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all var(--tp-transition-smooth);
  z-index: 1;
  opacity: 1;
}

.tp-benchmark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(39, 58, 226, 0.15);
}

.tp-card-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--tp-font-heading);
  font-size: 80px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
  z-index: 0;
  transition: all var(--tp-transition-smooth);
  line-height: 1;
}

.tp-benchmark-card:hover .tp-card-number {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.tp-card-content {
  position: relative;
  z-index: 2;
}

.tp-card-icon {
  font-size: 40px;
  color: #60c5ff;
  margin-bottom: 25px;
  margin-top: 40px;
  transition: all var(--tp-transition-fast);
}

.tp-benchmark-card:hover .tp-card-icon {
  color: var(--tp-color-secondary);
  transform: scale(1.1);
}

.tp-card-title {
  font-family: var(--tp-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--tp-color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.tp-card-text {
  font-family: var(--tp-font-body);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==========================================================================
           TruPet ACHIEVEMENT / STATS SECTION (PERFECT 3-COLUMN REPLICA)
           ========================================================================== */
.tp-achievement {
  position: relative;
  padding: 120px 0;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 2;
}

/* Column 1: Text Block */
.tp-achiev-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.tp-achiev-subtitle .line {
  width: 40px;
  height: 2px;
  background-color: var(--tp-color-primary);
}

.tp-achiev-title {
  font-family: var(--tp-font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.3;
  color: #111;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.tp-achiev-title span {
  color: var(--tp-color-primary);
}

.tp-achiev-desc {
  font-family: var(--tp-font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

/* Column 2: Stats Grid Box (Center Column) */
.tp-stats-box {
  background-color: var(--tp-color-primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 320px;
  box-shadow: 0 20px 40px rgba(39, 58, 226, 0.15);
}

.tp-stat-item {
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-align: center;
  transition: background-color var(--tp-transition-fast);
}

.tp-stat-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.tp-stat-item h4 {
  font-family: var(--tp-font-heading);
  font-size: 35px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.tp-stat-item p {
  font-family: var(--tp-font-body);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  line-height: 1.3;
}

/* Column 3: High Quality Industrial Image Frame (Right Column) */
.tp-achiev-img-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 12px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-achiev-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.6s ease;
}

.tp-achiev-img-frame:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
           TruPet PRODUCTS SECTION (SQUARE 8-CARDS GRID)
           ========================================================================== */
.tp-products {
  position: relative;
  background-color: #050505;
  padding: 130px 0;
  overflow: hidden;
  z-index: 2;
}

.tp-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.tp-products-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}

.tp-products-subtitle::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--tp-color-secondary);
}

.tp-products-title {
  font-family: var(--tp-font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--tp-color-secondary);
  letter-spacing: -1.5px;
  margin: 0;
}

.tp-products-title span {
  color: var(--tp-color-primary);
}

/* 4 in a line grid */
.tp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Perfect Square Card */
.tp-product-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: #111;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.tp-product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.tp-product-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-card:hover .tp-product-img img {
  transform: scale(1.15);
}

/* Dynamic Overlay */
.tp-product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.3) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-card:hover .tp-product-overlay {
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(39, 58, 226, 0.95) 0%,
    rgba(39, 58, 226, 0.4) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Card Content perfectly sized for square */
.tp-product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(15px);
}

.tp-product-card:hover .tp-product-content {
  transform: translateY(0);
}

.tp-product-title-card {
  font-family: var(--tp-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--tp-color-secondary);
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tp-product-desc {
  font-family: var(--tp-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-product-card:hover .tp-product-desc {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.9);
}

/* Circular Hover Arrow */
.tp-product-link-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--tp-color-secondary);
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-20px) rotate(-45deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-product-card:hover .tp-product-link-btn {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* ==========================================================================
           TruPet TESTIMONIALS SECTION (AS PER REFERENCE image_a6ee9c.png)
           ========================================================================== */
.tp-testimonials {
  position: relative;
  padding: 120px 0;
  background-color: #fcfcfc;
  z-index: 2;
}

.tp-testi-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tp-testi-subtitle .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tp-color-primary);
}

.tp-testi-subtitle .line {
  width: 40px;
  height: 2px;
  background: var(--tp-color-primary);
}

.tp-testi-title {
  font-family: var(--tp-font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.tp-testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 50px 40px;
  position: relative;
  height: 100%;
  transition: all var(--tp-transition-smooth);
}

.tp-testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-color: var(--tp-color-primary);
}

.tp-quote-icon {
  position: absolute;
  top: -25px;
  left: 40px;
  font-size: 50px;
  color: var(--tp-color-primary);
  background: #fcfcfc;
  padding: 0 10px;
}

.tp-testi-text {
  font-family: var(--tp-font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  font-style: italic;
}

.tp-testi-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-testi-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tp-author-info {
  text-align: right;
}

.tp-author-name {
  font-family: var(--tp-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.tp-author-desig {
  font-family: var(--tp-font-body);
  font-size: 12px;
  font-weight: 600;
  color: #777;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tp-testi-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.tp-testi-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tp-testi-dot.active {
  background-color: #111;
  transform: scale(1.2);
}

/* ==========================================================================
           TruPet CTA BANNER SECTION (30VH, PARALLAX, SQUARE BUTTONS)
           ========================================================================== */
.tp-cta-banner {
  position: relative;
  width: 100%;
  min-height: 45vh;
  /* Fixed exactly as requested */
  display: flex;
  align-items: center;
  /* Premium manufacturing background with fixed attachment for Parallax */
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.61) 0%,
      rgba(0, 0, 0, 0.518) 100%
    ),
    url("https://www.chemcogroup.com/wp-content/uploads/2021/10/5_Web-inner-banner_webp-format_1920-x-650px-black-overlay.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0;
  z-index: 2;
  overflow: hidden;
}

.tp-cta-title {
  font-family: var(--tp-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tp-color-secondary);
  margin-bottom: 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.tp-cta-buttons-wrap {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.tp-btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 4px;
  font-family: var(--tp-font-heading);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tp-color-secondary) !important;
  transition: all var(--tp-transition-smooth);
  text-decoration: none;
  border: none;
}

.tp-btn-call {
  background-color: var(--tp-color-primary);
}

.tp-btn-wa {
  background-color: #25d366;
}

.tp-btn-square:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
           TruPet INFRASTRUCTURE / CAPABILITIES SECTION (BRAND NEW!)
           ========================================================================== */
.tp-infra {
  position: relative;
  background-color: var(--tp-bg-main);
  /* Pure White */
  padding-top: 80px;
  overflow: hidden;
  z-index: 2;
  padding-bottom: 20px;
}

.tp-infra-header {
  margin-bottom: 60px;
  text-align: center;
}

.tp-infra-subtitle {
  font-family: var(--tp-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--tp-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.tp-infra-subtitle::before,
.tp-infra-subtitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--tp-color-primary);
}

.tp-infra-title {
  font-family: var(--tp-font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--tp-text-main);
  letter-spacing: -1.5px;
  margin: 0;
}

.tp-infra-title span {
  color: var(--tp-color-primary);
}

.tp-infra-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--tp-transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.tp-infra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(39, 58, 226, 0.1);
  border-color: rgba(39, 58, 226, 0.2);
}

.tp-infra-img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.tp-infra-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-infra-card:hover .tp-infra-img-box img {
  transform: scale(1.1);
}

.tp-infra-content {
  padding: 30px 25px;
  border-top: 3px solid transparent;
  transition: all var(--tp-transition-fast);
}

.tp-infra-card:hover .tp-infra-content {
  border-top-color: var(--tp-color-primary);
}

.tp-infra-card-title {
  font-family: var(--tp-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--tp-text-main);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tp-infra-card-text {
  font-family: var(--tp-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* ==========================================================================
           TruPet MODERN FOOTER SECTION (NO SVG WAVE - IMG BASED)
           ========================================================================== */
.tp-footer {
  position: relative;
  /* Background image contains the wave at the top */
  background-image:
    linear-gradient(rgba(10, 15, 30, 0.032), rgba(10, 15, 30, 0.046)),
    url("../images/background/footr-bg.jpeg");
  background-size: cover;
  background-position: top center;
  color: #ffffff;
  padding: 380px 0 60px;
  z-index: 5;
}

.tp-footer-logo img {
  height: 55px;
  margin-bottom: 25px;
}

.tp-footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.tp-footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
}

.tp-footer-social-btn:hover {
  background: var(--tp-color-primary);
  transform: translateY(-3px);
  color: #fff;
}

.tp-google-reviews {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
}

.tp-google-reviews .brand {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

.tp-google-reviews .stars {
  color: #ffd700;
  font-size: 14px;
}

.tp-footer-heading {
  font-family: var(--tp-font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.tp-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--tp-color-primary);
}

.tp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-footer-links li {
  margin-bottom: 12px;
}

.tp-footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-footer-links a:hover {
  color: var(--tp-color-primary);
  padding-left: 8px;
}

.tp-footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.tp-footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(39, 58, 226, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-color-primary);
  flex-shrink: 0;
}

.tp-footer-contact-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tp-footer-contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.tp-newsletter-form {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tp-newsletter-form input {
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: #fff;
  width: 100%;
  outline: none;
}

.tp-newsletter-form button {
  background: var(--tp-color-primary);
  border: none;
  color: #fff;
  width: 45px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tp-newsletter-form button:hover {
  background: #fff;
  color: var(--tp-color-primary);
}

.tp-footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.tp-footer-bottom a {
  color: var(--tp-color-primary);
}

@media (max-width: 991px) {
  .tp-footer {
    padding: 80px 0 40px;
  }

  .tp-footer-heading {
    margin-top: 40px;
  }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .tp-hero-glass-card {
    right: 3%;
    width: 240px;
  }

  .tp-benchmark-grid {
    gap: 15px;
  }

  .tp-benchmark-card {
    padding: 30px 20px;
  }

  .tp-products-grid {
    gap: 20px;
  }

  .tp-product-card {
    aspect-ratio: 1 / 1;
  }

  .tp-stats-box {
    padding: 30px;
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .tp-header {
    padding: 15px 0;
  }

  .tp-nav-link {
    margin: 12px 0;
    padding: 10px 0 !important;
    font-size: 16px;
  }

  .tp-nav-link::after {
    display: none;
  }

  .tp-header .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .tp-btn-nav-sexy {
    margin-left: 0;
    margin-top: 15px;
    display: inline-flex;
    width: 100%;
  }

  .tp-dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 0;
    border-left: 2px solid var(--tp-color-primary);
    border-top: none;
    border-radius: 0;
  }

  .tp-hero-title {
    font-size: 3.8rem;
    letter-spacing: -1px;
  }

  .tp-hero-glass-card {
    display: none;
  }

  .tp-hero-overlay {
    background: rgba(8, 10, 15, 0.85);
  }

  .tp-side-text {
    display: none;
  }

  .tp-hero-container {
    padding-left: 15px;
  }

  .tp-about {
    padding: 80px 0;
  }

  .tp-about-title {
    font-size: 2.8rem;
  }

  .tp-about-visuals {
    min-height: 500px;
    margin-top: 50px;
  }

  .tp-about-img-1 {
    width: 80%;
    height: 70%;
    left: 0;
    top: 0;
  }

  .tp-about-img-2 {
    width: 60%;
    height: 50%;
    right: 0;
    bottom: 0;
  }

  .tp-about-exp-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .tp-benchmark-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tp-benchmark-header {
    flex-direction: column;
  }

  .tp-benchmark-title-wrap {
    margin-bottom: 20px;
  }

  .tp-timeline-dots {
    padding: 0 20%;
  }

  .tp-products {
    padding: 80px 0;
  }

  .tp-products-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
  }

  .tp-products-title {
    font-size: 2.8rem;
  }

  .tp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Achievement Tablet */
  .tp-achievement {
    padding: 80px 0;
  }

  .tp-achiev-title {
    font-size: 2.2rem;
  }

  /* CTA Banner Tablet */
  .tp-cta-title {
    font-size: 2.2rem;
  }

  .tp-cta-buttons-wrap {
    justify-content: flex-start;
    margin-top: 25px;
  }

  /* Infra Tablet */
  .tp-infra {
    padding: 80px 0;
  }

  .tp-infra-title {
    font-size: 2.8rem;
  }

  .tp-infra-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .tp-hero-title {
    font-size: 2.8rem;
  }

  .tp-hero-desc {
    font-size: 1rem;
    border-left: none;
    padding-left: 0;
  }

  .tp-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-btn-sexy {
    width: 100%;
    justify-content: space-between;
  }

  .tp-about-title {
    font-size: 2.2rem;
  }

  .tp-about-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .tp-about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tp-about-visuals {
    min-height: 400px;
  }

  .tp-about-img-2 {
    border-width: 5px;
  }

  .tp-benchmark-grid {
    grid-template-columns: 1fr;
  }

  .tp-benchmark-title {
    font-size: 1.8rem;
  }

  .tp-timeline-container {
    display: none;
  }

  /* Achievement Mobile */
  .tp-achiev-title {
    font-size: 2rem;
  }

  .tp-stats-box {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 25px;
  }

  .tp-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-products-title {
    font-size: 2.2rem;
  }

  .tp-product-card {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .tp-product-desc {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.9);
  }

  .tp-product-link-btn {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  /* Testimonials Mobile */
  .tp-testi-title {
    font-size: 1.8rem;
  }

  .tp-testimonial-card {
    padding: 40px 25px;
  }

  /* CTA Banner Mobile */
  .tp-cta-banner {
    padding: 60px 0;
    text-align: center;
    background-attachment: scroll;
  }

  .tp-cta-title {
    font-size: 1.8rem;
  }

  .tp-cta-desc {
    max-width: 100%;
    font-size: 1rem;
    margin: 0 auto;
  }

  .tp-cta-buttons-wrap {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .tp-btn-square {
    width: 100%;
    justify-content: center;
  }

  /* Infra Mobile */
  .tp-infra-title {
    font-size: 2.2rem;
  }

  .tp-footer {
    background: none;
    background-color: #050505 !important;
  }
}
