/* ---------------------- section 1 ---------------------- */

.vt__slider-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
  background: #0d0d0d;
  font-family: 'Inter', sans-serif;
}

/* ── SLIDES WRAPPER ── */
.vt__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── SINGLE SLIDE ── */
.vt__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.vt__slide.vt__active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.vt__slide.vt__prev {
  opacity: 1;
  z-index: 1;
}

/* ── BG IMAGE ── */
.vt__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: scale(1.08);
  transition: transform 0s;
}

.vt__slide.vt__active .vt__slide-bg {
  animation: vt_zoom 7s ease-out forwards;
}

@keyframes vt_zoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.0);
  }
}

/* ── OVERLAY ── */
.vt__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 10, 10, 0.82) 0%,
      rgba(10, 10, 10, 0.55) 50%,
      rgba(10, 10, 10, 0.15) 100%);
  z-index: 1;
}

/* ── SPLIT SHUTTER ANIMATION ── */
.vt__shutter {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.vt__shutter-cell {
  background: #0d0d0d;
  transform: scaleY(1);
  transform-origin: top;
  transition: none;
}

.vt__slide.vt__active .vt__shutter-cell {
  animation: vt_shutterOpen 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.vt__slide.vt__active .vt__shutter-cell:nth-child(1) {
  animation-delay: 0.00s;
}

.vt__slide.vt__active .vt__shutter-cell:nth-child(2) {
  animation-delay: 0.06s;
}

.vt__slide.vt__active .vt__shutter-cell:nth-child(3) {
  animation-delay: 0.12s;
}

.vt__slide.vt__active .vt__shutter-cell:nth-child(4) {
  animation-delay: 0.18s;
}

.vt__slide.vt__active .vt__shutter-cell:nth-child(5) {
  animation-delay: 0.24s;
}

@keyframes vt_shutterOpen {
  0% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(0);
  }
}

/* ── SLIDE CONTENT ── */
.vt__content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6% 0 7%;
  max-width: 700px;
}

.vt__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
}

.vt__slide.vt__active .vt__eyebrow {
  animation: vt_fadeUp 0.6s ease 0.55s forwards;
}

.vt__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e11d48;
  animation: vt_pulse 1.5s ease-in-out infinite;
}

@keyframes vt_pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.vt__eyebrow-text {
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 500;
  color: #e11d48;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vt__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.vt__slide.vt__active .vt__title {
  animation: vt_fadeUp 0.65s ease 0.65s forwards;
}

.vt__title .vt__red {
  color: #e11d48;
}

.vt__title .vt__outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.vt__desc {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.vt__slide.vt__active .vt__desc {
  animation: vt_fadeUp 0.65s ease 0.75s forwards;
}

.vt__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e11d48;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 13px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.vt__slide.vt__active .vt__btn {
  animation: vt_fadeUp 0.65s ease 0.85s forwards;
}

.vt__btn:hover {
  background: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
}

.vt__btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.vt__btn:hover .vt__btn-arrow {
  transform: translateX(4px);
}

@keyframes vt_fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── PREV / NEXT ARROWS ── */
.vt__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  opacity: 0;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vt__slide:hover .vt__arrow,
.vt__overlay:hover .vt__arrow {
  opacity: 1;
}

.vt__arrow:hover {
  border-color: #e11d48;
  background: rgba(225, 29, 72, 0.2);
  transform: translateY(-50%) scale(1.08);
}

.vt__arrow-prev {
  left: 24px;
}

.vt__arrow-next {
  right: 24px;
}

/* ── DOTS ── */
.vt__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.vt__dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.vt__dot.vt__dot-active {
  background: #e11d48;
  width: 28px;
}

/* ── PROGRESS BAR ── */
.vt__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #2c2c2c;
  z-index: 10;
  width: 0%;
  transition: none;
}

.vt__progress.vt__running {
  animation: vt_progress 5s linear forwards;
}

@keyframes vt_progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* ── SLIDE COUNT ── */
.vt__count {
  position: absolute;
  bottom: 22px;
  right: 32px;
  z-index: 10;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}

.vt__count span {
  color: #fff;
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .vt__slider-section {
    max-height: 600px;
    min-height: 420px;
  }

  .vt__content {
    padding: 0 24px;
    max-width: 100%;
  }

  .vt__title .vt__outline {
    -webkit-text-stroke: 1.5px #fff;
  }

  .vt__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .vt__arrow-prev {
    left: 12px;
  }

  .vt__arrow-next {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .vt__slider-section {
    max-height: 520px;
  }

  .vt__shutter {
    grid-template-columns: repeat(3, 1fr);
  }

  .vt__shutter-cell:nth-child(4),
  .vt__shutter-cell:nth-child(5) {
    display: none;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  .vt__slide-bg,
  .vt__shutter-cell,
  .vt__eyebrow,
  .vt__title,
  .vt__desc,
  .vt__btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}



/* ---------------------- section 2 ---------------------- */
/* Slider Wrapper */
.tr-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Common Container Style for both Rows */
.tr-slider-container {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Margin between row 1 and row 2 */
.tr-row-1 {
  margin-bottom: 10px;
}

/* Individual Card Design */
.tr-slider-card {
  flex: 0 0 calc(14.28% - 18px);
  /* 7 Items on Desktop */
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Hover Effect */
.tr-slider-card:hover {
  transform: translateY(-5px);
  border-color: #000000;
  box-shadow: 0 10px 20px rgba(41, 38, 38, 0.1);
}

.tr-card-icon-box {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.tr-card-icon {
  max-height: 100%;
  object-fit: contain;
}

.tr-card-title {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

/* Navigation Buttons (Red & White Theme) */
.tr-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border: 2px solid #000000;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tr-slider-btn:hover {
  background-color: #363434;
  color: #ffffff;
}

.tr-prev-btn {
  left: 5px;
}

.tr-next-btn {
  right: 5px;
}


.btnre {
  --bezier: cubic-bezier(0.22, 0.61, 0.36, 1);
  --edge-light: hsla(0, 0%, 50%, 0.8);
  --text-light: rgba(255, 255, 255, 0.4);
  --back-color: 240, 40%;

  cursor: pointer;
  padding: 0.7em 1em;
  border-radius: 0.5em;
  min-height: 2.4em;
  min-width: 3em;
  display: flex;
  align-items: center;
  gap: 0.5em;

  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;

  background: linear-gradient(140deg, hsl(0deg 100% 46.99%) min(2em, 20%), hsl(0deg 92.52% 39.67%) min(8em, 100%));
  color: rgb(255, 255, 255);
  border: 0;
  box-shadow: inset 0.4px 1px 4px var(--edge-light);

  transition: all 0.1s var(--bezier);
}

.btnre:hover {
  --edge-light: hsla(0, 0%, 50%, 1);
  text-shadow: 0px 0px 10px var(--text-light);
  box-shadow: inset 0.4px 1px 4px var(--edge-light),
    2px 4px 8px hsla(0, 0%, 0%, 0.295);
  transform: scale(1.1);
}

.btnre:active {
  --text-light: rgba(255, 255, 255, 1);

  background: linear-gradient(140deg,
      hsla(var(--back-color), 50%, 1) min(2em, 20%),
      hsla(var(--back-color), 50%, 0.6) min(8em, 100%));
  box-shadow: inset 0.4px 1px 8px var(--edge-light),
    0px 0px 8px hsla(var(--back-color), 50%, 0.6);
  text-shadow: 0px 0px 20px var(--text-light);
  color: hsla(0, 0%, 100%, 1);
  letter-spacing: 0.1em;
  transform: scale(1);
}

/* Responsive Grid Adjustments for All Devices */
@media (max-width: 1024px) {
  .tr-slider-card {
    flex: 0 0 calc(25% - 15px);
  }

  /* 4 Items */
}

@media (max-width: 768px) {
  .tr-slider-card {
    flex: 0 0 calc(33.33% - 14px);
  }

  /* 3 Items */
}

@media (max-width: 480px) {
  .tr-slider-card {
    flex: 0 0 calc(50% - 10px);
  }

  /* 2 Items */
  .tr-slider-wrapper {
    padding: 0 42px;
  }
}

/* ---------------------- section 4 ---------------------- */

/* ---- scoped tokens (kept inside .dh-hero, never touch :root) ---- */
.dh-hero {
  --dh-red: #e23d3d;
  --dh-red-dark: #a32d2d;
  --dh-white: #ffffff;
  --dh-gray-50: #f1efe8;
  --dh-gray-200: #b4b2a9;
  --dh-gray-600: #5f5e5a;
  --dh-gray-900: #1c1c1a;
  --dh-bg: #141414;

  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #373535 0%, #1a3c7c 65%);
  color: var(--dh-white);
  font-family: inherit;
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px);
  box-sizing: border-box;
}

.dh-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 360px;
}

.dh-hero__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dh-hero__eyebrow {
  color: #f3b0a8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 0 20px;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.dh-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 14px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dh-hero__title-accent {
  color: var(--dh-red);
}

.dh-hero__desc {
  color: var(--dh-gray-200);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 0 28px;
  transition: opacity 0.35s ease;
   display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 2 lines ke liye 2 kar do */
    overflow: hidden;
    text-overflow: ellipsis;
}

.dh-hero__details {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

.dh-hero__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dh-hero__detail-label {
  font-size: 12px;
  color: var(--dh-gray-200);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dh-hero__detail-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--dh-white);
  transition: opacity 0.3s ease;
}

.dh-hero__dots {
  display: flex;
  gap: 8px;
}

.dh-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.dh-hero__dot--active {
  background: var(--dh-red);
  transform: scale(1.25);
}

/* ---- product stage ---- */
.dh-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.dh-hero__glow {
  position: absolute;
  width: 70%;
  height: 40%;
  bottom: 6%;
  background: radial-gradient(ellipse at center, rgb(255 255 255 / 35%), #f8f8f800 70%);
  filter: blur(4px);
  pointer-events: none;
}

.dh-hero__imgwrap {
  position: relative;
  display: block;
  width: clamp(220px, 34vw, 420px);
  height: clamp(220px, 34vw, 420px);
  text-decoration: none;
  border-radius: 16px;
}

.dh-hero__imgwrap:focus-visible {
  outline: 2px solid var(--dh-red);
  outline-offset: 4px;
}

.dh-hero__float {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  animation: dh-float 4.5s ease-in-out infinite;
}

.dh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}

.dh-hero__img--active {
  opacity: 1;
  transform: scale(1);
}

@keyframes dh-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.dh-hero__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(20px, 4vw, 40px);
  font-size: 12px;
  color: var(--dh-gray-200);
}

/* ---- responsive ---- */
@media (max-width: 768px) {
  .dh-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dh-hero__content {
    align-items: center;
    order: 2;
  }

  .dh-hero__stage {
    order: 1;
  }

  .dh-hero__eyebrow,
  .dh-hero__desc {
    max-width: 100%;
  }

  .dh-hero__details {
    justify-content: center;
  }

  .dh-hero__dots {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .dh-hero__title {
    font-size: 26px;
  }

  .dh-hero__details {
    gap: 18px;
  }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .dh-hero__float {
    animation: none;
  }

  .dh-hero__img,
  .dh-hero__title,
  .dh-hero__desc,
  .dh-hero__eyebrow,
  .dh-hero__detail-value,
  .dh-hero__dot {
    transition: none;
  }
}


/* ---------------------- section 5 ---------------------- */

/* Section Main Wrapper */
.brnd-section-wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Heading Styling */
.brnd-heading-container {
  text-align: center;
  margin-bottom: 40px;
  animation: brndFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.brnd-main-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.brnd-sub-title {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #777777;
  margin: 0;
}

/* Responsive Grid System (6 Columns on Desktop) */
.brnd-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  box-sizing: border-box;
}

/* Individual Brand Card Design */
.brnd-card {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;

  /* Entrance Animation */
  opacity: 0;
  transform: scale(0.9);
  animation: brndCardLoad 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;

  /* Hover Transition */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

/* Delaying animation for each card to look premium */
.brnd-card:nth-child(1) {
  animation-delay: 0.1s;
}

.brnd-card:nth-child(2) {
  animation-delay: 0.15s;
}

.brnd-card:nth-child(3) {
  animation-delay: 0.2s;
}

.brnd-card:nth-child(4) {
  animation-delay: 0.25s;
}

.brnd-card:nth-child(5) {
  animation-delay: 0.3s;
}

.brnd-card:nth-child(6) {
  animation-delay: 0.35s;
}

.brnd-card:nth-child(7) {
  animation-delay: 0.4s;
}

.brnd-card:nth-child(8) {
  animation-delay: 0.45s;
}

.brnd-card:nth-child(9) {
  animation-delay: 0.5s;
}

.brnd-card:nth-child(10) {
  animation-delay: 0.55s;
}

.brnd-card:nth-child(11) {
  animation-delay: 0.6s;
}

.brnd-card:nth-child(12) {
  animation-delay: 0.65s;
}

/* Smooth Hover Effect (Red & Shadow) */
.brnd-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #6b616183;
  /* Red Theme Border */
  box-shadow: 0 12px 24px rgba(39, 39, 39, 0.08);
}

/* Image Control inside Card */
.brnd-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.brnd-card:hover .brnd-img {
  filter: grayscale(0%);
  /* Full color on hover */
}

/* --- Animations Keyframes --- */
@keyframes brndFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brndCardLoad {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Responsive Media Queries (All Devices) --- */
@media (max-width: 1024px) {
  .brnd-grid-container {
    grid-template-columns: repeat(4, 1fr);
    /* 4 Cards on Tablets */
    gap: 15px;
  }

  .brnd-card {
    height: 110px;
  }
}

@media (max-width: 768px) {
  .brnd-grid-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 Cards on Small Tablets */
  }

  .brnd-main-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .brnd-grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Cards on Mobile Phones */
    gap: 12px;
  }

  .brnd-card {
    height: 95px;
    padding: 10px;
  }

  .brnd-main-title {
    font-size: 22px;
  }

  .brnd-sub-title {
    font-size: 13px;
  }
}

/* ---------------------- section 6 ---------------------- */

/* Main Section Wrapper */
.prm-section-container {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Individual Banner Card */
.prm-banner-card {
  position: relative;
  flex: 1;
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
  /* Keeps the zoomed image inside borders */
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 45px;
}

/* Image Wrapper covering 100% of the Div */
.prm-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Full Width and Height Background Image */
.prm-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Color Overlays to make text readable based on your images */
.prm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Left Card Overlay (Light Tint to blend with Yellow theme text)
.prm-yellow-overlay {
  background: linear-gradient(90deg, rgba(252, 212, 53, 0.26) 0%, rgba(252, 212, 53, 0) 60%, rgba(0, 0, 0, 0) 100%);
}

/* Right Card Overlay (Dark Tint for Premium Black theme) */
/* .prm-dark-overlay {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.6) 60%, rgba(0, 0, 0, 0.2) 100%);
} */

/* --- THE HOVER ANIMATION EFFECT (FULL DIV) --- */
.prm-banner-card:hover .prm-banner-img {
  transform: scale(1.1);
  /* Smoothly zooms the image inside the whole div */
}

/* Content Layer (Stays safely on top of overlays) */
.prm-banner-content {
  position: relative;
  z-index: 3;
  max-width: 65%;
}

/* Typography & Layout */
.prm-sub-tag {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.prm-light-tag {
  color: #ffffff;
}

.prm-main-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  margin: 0 0 25px 0;
  letter-spacing: -0.5px;
}

.prm-light-title {
  color: #ffffff;
}

.prm-highlight-text {
  color: #fcd535;
  /* Yellow Highlight Text */
}

/* Red & White Theme Button */
.prm-btn-shop {
  display: inline-block;
  font-family: Arial, sans-serif;
  background-color: #e32c2c;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(227, 44, 44, 0.25);
}

.prm-btn-shop:hover {
  background-color: #cc2424;
  transform: translateY(-2px);
}

/* --- Responsive Media Queries (All Devices) --- */
@media (max-width: 992px) {
  .prm-main-title {
    font-size: 24px;
  }

  .prm-banner-card {
    height: 250px;
    padding: 30px;
  }

  .prm-banner-content {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .prm-section-container {
    flex-direction: column;
    /* Stack vertically on phones */
    gap: 20px;
  }

  .prm-banner-card {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .prm-banner-card {
    height: 210px;
    padding: 25px;
  }

  .prm-main-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .prm-banner-content {
    max-width: 100%;
  }
}

/* ---------------------- section  ---------------------- */

.tp-section {
    --tp-red: #e23d3d;
    --tp-red-dark: #a32d2d;
    --tp-white: #ffffff;
    --tp-gray-50: #f5f5f4;
    --tp-gray-100: #ebebe9;
    --tp-gray-300: #d1d0cb;
    --tp-gray-500: #8a8a85;
    --tp-gray-700: #4a4a47;
    --tp-gray-900: #1c1c1a;
    --tp-star: #f5a623;
 
    position: relative;
    width: 100%;
    background: var(--tp-gray-50);
    color: var(--tp-gray-900);
    font-family: inherit;
    padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 40px);
    box-sizing: border-box;
  }
 
  .tp-heading {
    text-align: center;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
  }
 
  /* ---- tabs (visual only) ---- */
  .tp-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 36px;
  }
 
  .tp-tab {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 4px;
    border: 1px solid var(--tp-gray-300);
    background: var(--tp-white);
    color: var(--tp-gray-900);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  }
 
  .tp-tab:hover {
    transform: translateY(-2px);
    border-color: var(--tp-red);
  }
 
  .tp-tab--active {
    background: var(--tp-red);
    border-color: var(--tp-red);
    color: var(--tp-white);
  }
 
  /* ---- product grid ---- */
  .tp-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 48px;
  }
 
  .tp-card {
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-300);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(14px);
    animation: tp-rise 0.5s ease forwards;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
 
  .tp-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
  }
 
  @keyframes tp-rise {
    to { opacity: 1; transform: translateY(0); }
  }
 
  .tp-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
  }
 
  .tp-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
  }
 
  .tp-card:hover .tp-card__img {
    transform: scale(1.06);
  }
 
  .tp-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--tp-red);
    color: var(--tp-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
  }
 
  .tp-card__countdown {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tp-white);
    border: 1px solid var(--tp-gray-300);
    color: var(--tp-red);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
  }
 
  .tp-card__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    min-height: 38px;
  }
 
  .tp-card__stars {
    color: var(--tp-star);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
 
  .tp-card__stars-empty {
    color: var(--tp-gray-300);
  }
 
  .tp-card__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--tp-red);
    margin: 0 0 14px;
  }
 
  .tp-card__price-old {
    color: var(--tp-gray-500);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 6px;
  }
 
  .tp-card__btn {
    margin-top: auto;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--tp-gray-100);
    border: none;
    border-radius: 4px;
    padding: 11px 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
 
  .tp-card__btn:hover {
    background: var(--tp-red);
    color: var(--tp-white);
  }
 
  /* ---- features bar ---- */
  .tp-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    border-top: 1px solid var(--tp-gray-300);
    padding-top: 32px;
  }
 
  .tp-feature {
    display: flex;
    align-items: center;
    gap: 14px;
  }
 
  .tp-feature__icon {
    font-size: 30px;
    color: var(--tp-gray-900);
    flex-shrink: 0;
  }
 
  .tp-feature__title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
  }
 
  .tp-feature__desc {
    font-size: 13px;
    color: var(--tp-gray-500);
    margin: 0;
  }

  .elementor-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* ---- responsive ---- */
  @media (max-width: 1100px) {
    .tp-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
 
  @media (max-width: 760px) {
    .tp-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tp-features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
 
  @media (max-width: 480px) {
    .tp-grid {
      grid-template-columns: 1fr;
    }
    .tp-features {
      grid-template-columns: 1fr;
    }
    .tp-tabs {
      flex-direction: column;
      align-items: stretch;
    }
    .tp-tab {
      text-align: center;
    }
  }
 
  /* ---- reduced motion ---- */
  @media (prefers-reduced-motion: reduce) {
    .tp-card {
      animation: none;
      opacity: 1;
      transform: none;
    }
    .tp-card,
    .tp-card__img,
    .tp-tab {
      transition: none;
    }
  }

/* ---------------------- section 8 ---------------------- */

/* --- FULL BACKGROUND IMAGE BANNER --- */

.sdecf{
  padding: 35px;
}

.ebs-full-banner {
  position: relative;
  width: 100%;
  min-height: 300px; 
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding: 60px 10%;
  box-sizing: border-box;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  border-radius: 10px;
  
  
  background-image: url('img/offer-banner-1.jpg');
  background-size: cover;
  background-position: center right; 
  background-repeat: no-repeat;
}


.ebs-full-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 100%
),
url("img/section_1Img.webp");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
  z-index: 1;
}


.ebs-full-banner-content {
  position: relative;
  z-index: 2; 
  max-width: 550px;
  opacity: 0;
  transform: translateX(-40px);
  animation: ebsSlideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

.ebs-full-tag {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ebs-full-title {
  color: #ffffff;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 30px 0;
  letter-spacing: 0.5px;
}

.ebs-full-highlight {
  color: #f2a900; 
}


.ebs-full-btn {
  display: inline-block;
  background-color: #e32b22; 
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.ebs-full-btn:hover {
  background-color: #b81d15;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 43, 34, 0.4);
}

.ebs-full-btn:active {
  transform: translateY(-1px);
}


/* --- ULTRA-SMOOTH GPU ANIMATION --- */
@keyframes ebsSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 992px) {
  .ebs-full-banner {
    min-height: 400px;
    padding: 40px 5%;
  }
  .ebs-full-title {
    font-size: 36px;
  }
}


@media (max-width: 768px) {
  .ebs-full-banner {
    min-height: 350px;
    justify-content: center;
    text-align: center;
    background-position: 65% center; 
  }
  
 
  .ebs-full-banner-overlay {
    background: rgba(0, 0, 0, 0.75); 
  }

  .ebs-full-banner-content {
    transform: translateY(30px);
    animation: ebsMobileFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }

  .ebs-full-title {
    font-size: 28px;
  }
}

@keyframes ebsMobileFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------- section  ---------------------- */