/* ==========================================================
   GLOBAL THEME: PREMIUM GOLD + BLACK (TRAIN-THE-TRAINER BRAND)
   ========================================================== */

:root {
  --gold: #ff5400;
  --gold-light: #ff5400;
  --black: #1A1A1A;
  --charcoal: #2B2B2B;
  --cream: #F7F4EF;
  --white: #FFFFFF;

  --radius: 14px;
  --transition: 0.3s ease;
  --shadow-soft: 0 4px 10px rgba(0,0,0,0.08);
  --shadow-medium: 0 6px 18px rgba(0,0,0,0.12);
  --shadow-strong: 0 10px 25px rgba(0,0,0,0.18);
}

/* ---------------------------------------------------------- */
/* RESET + BASE */
/* ---------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* ---------------------------------------------------------- */
/* GLOBAL ELEMENTS */
/* ---------------------------------------------------------- */

img {
  width: 100%;
  height: auto;
  display: block;
}

section {
  max-width: 100%;
  margin: auto;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: #021287;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #FF5400;
  border-radius: 3px;
  display: block;
  margin: 12px auto 0;
}

.cta-btn2{
   background: white;
  color: #ff5400;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  font-size: 15px;
}

.nlp-launch-statement {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
  color: #021287;
}

.nlp-launch-statement span {
  display: block;
  margin-top: 10px;
  color: #ff5400;
}

.ardour-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.ardour-link:hover {
  text-decoration: underline;
  color: #ff5400;
}

/* Tablet */
@media (max-width: 768px) {
  .nlp-launch-statement {
    font-size: 1.5rem;
    margin: 45px auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nlp-launch-statement {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.cta-btn,
button,
input[type="submit"] {
  background: #ff5400;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.cta-btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--black);
  color: #ff5400;
  transform: translateY(-2px);
}

/* ---------------------------------------------------------- */
/* HEADER / HERO SECTION */
/* ---------------------------------------------------------- */

header {
  background:white;
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  max-width: 100%;
}

.header-logo {
  width: 250px;
  margin: 0 auto 0px;
  margin-top: 50px;
}

header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
  color: #ff5400;
  margin-top: 25px;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}

.headh2{
  color: white;
  font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
header p {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 25px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
  color: rgb(0, 0, 0);
  padding: 0 20px;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  header h1 { font-size: 1.8rem; }
  header p { font-size: 1rem; }
  .header-logo { width: 150px; }
}

/* ==========================================================
   SECTION 2 — VIDEO SECTION + PROGRAM OVERVIEW (GOLD + BLACK)
   ========================================================== */

.video-page-wrapper {
  max-width: 950px;
  margin: 50px auto;
  padding: 20px;
}

.video-box-outer {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--black);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .video-box-outer {
    border-radius: 10px;
  }
}

/* ==========================================================
   PREMIUM PROGRAM OVERVIEW — NEW DESIGN
   ========================================================== */

.program-overview-new {
  max-width: 100%;
  margin: 60px 0;
  background: var(--white);
  padding: 70px 40px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.program-overview-new .section-title {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #021287;
}

.overview-tagline {
  font-size: 1.15rem;
  max-width: 850px;
  margin: 0 auto 50px;
  color: var(--text-light);
  line-height: 1.7;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.overview-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--smooth);
  border: 1px solid #ff5400;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color:#ff5400;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #f18955;
  color: var(--black);
  border-radius: 12px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  font-weight: bold;
}

.overview-card h3 {
  font-size: 1.2rem;
  color: #ff5400;
  margin-bottom: 12px;
  font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.overview-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .program-overview-new {
    padding: 50px 20px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FLOATING VIDEO ================= */

.floating-video {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 180px;
  height: 260px;
  background: var(--black);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(90px) scale(0.9);
  animation: floatIn 0.7s ease forwards;
  cursor: move;
  z-index: 2000;
}

.floating-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-video .close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #ff5400;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-video .close-btn:hover {
  background:#ff5400;
  color: var(--black);
}

.floating-video.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.4s ease;
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(100px) scale(0.85); }
  70% { opacity: 1; transform: translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .floating-video {
    width: 140px;
    height: 200px;
    bottom: 100px;
  }
}

/* ==========================================================
   SECTION 3 — WHO SHOULD ATTEND (6-CARD GRID)
   ========================================================== */

.grid-container {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 40px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.page2 {
  width: 100%;
  max-width: 100%;
  padding: 60px 0;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  opacity: 0;
  animation: fadeUpCard 0.7s ease forwards;
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.2s; }
.card-3 { animation-delay: 0.3s; }
.card-4 { animation-delay: 0.4s; }
.card-5 { animation-delay: 0.5s; }
.card-6 { animation-delay: 0.6s; }

@keyframes fadeUpCard {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.45) 50%,
      transparent 100%
  );
  transition: transform 0.7s ease;
  z-index: 1;
}

.card:hover::before {
  transform: translateX(220%);
}

.card-header {
  height: 290px;
  background: #ddd;
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  background: var(--cream);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color:#ff5400;
  margin-bottom: 12px;
  border-left: 5px solid #FF5400;
  padding-left: 10px;
    font-family: 'Poppins', sans-serif;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.card-content li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.card-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1.5px;
  color: #ff5400;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-content .cta-btn {
  align-self: start;
  background: #ff5400;
  color: black;
  padding: 12px 26px;
  margin-top: auto;
}

.card-content .cta-btn:hover {
  background: orangered;
  color: white;
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .card-content {
    min-height: auto;
  }

  .card-header {
    height: 250px;
  }
}

.card-title-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 26px;
  font-weight: 700;
  color: #ff5400;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.card-content ul,
.card-content .cta-btn {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s ease;
}

.card.active .card-content ul,
.card.active .card-content .cta-btn {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.card.active .toggle-btn {
  transform: rotate(45deg);
}

.card-content {
  padding: 22px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.card-title-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================
   SECTION 4 — PROGRAM CURRICULUM (ACCORDION)
   ========================================================== */

.schedule-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  width: 100%;
  max-width: 100%;
}

.schedule-container {
  width: 100%;
  max-width: 1200px;
  background: var(--white);
  padding: 55px 40px;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  animation: fadeUp 0.9s ease-out forwards;
}

.schedule-container h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color:#021287;
  margin-bottom: 40px;
  position: relative;
    font-family: 'Poppins', sans-serif;
}

.schedule-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background:#FF5400;
  border-radius: 2px;
  margin: 12px auto 0;
}

.accordion {
  width: 100%;
  background: #fcfcfc;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;

  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;

  color: #ff5400;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}

.accordion span {
  color:  #FF5400;
  font-weight: 700;
}

.accordion::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #ff5400;
  transition: transform 0.3s ease;
}

.accordion.active::after {
  content: "–";
  transform: rotate(180deg);
}

.accordion:hover {
  background: #fdf9f1;
  border-color: #ff5400;
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-left: 4px solid  #FF5400;
  border-radius: 8px;

  transition: max-height 0.4s ease, padding 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.panel p {
  padding: 0 20px 15px;
  font-size: 1rem;
  color: #444;
  text-align: left;
  line-height: 1.55;
}

.accordion.active + .panel {
  max-height: 300px;
  padding-top: 12px;
}

@media (max-width: 768px) {

  .schedule-container {
    padding: 40px 25px;
  }

  .schedule-container h2 {
    font-size: 1.7rem;
  }

  .accordion {
    font-size: 1rem;
    padding: 16px 18px;
  }

  .panel p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .schedule-container {
    padding: 30px 20px;
  }

  .accordion {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
}

/* ==========================================================
   SECTION 5 — TRAINER STATISTICS (4 Premium Animated Cards) - UPDATED
   ========================================================== */

.stats-section {
  padding: 70px 40px;
  background: #faf9f6;
  width: 100%;
  max-width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: var(--white);
  padding: 50px 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  text-align: center;
  position: relative;
  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 0%;
  background: linear-gradient(
    to top,
    #ff5400,
    rgba(212,175,55,0.05)
  );

  z-index: 1;
  transition: height 1.3s ease;
}

.stat-box:hover::after {
  height: 100%;
}

.stat-box h3 {
  font-size: 3rem;
  color:#ff5400;
  font-weight: 800;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
    font-family: 'Poppins', sans-serif;
}

.stat-box p {
  font-size: 1.1rem;
  font-weight: 600;
  color:#021287;
  position: relative;
  z-index: 2;
}

/* Responsive for stats */
@media (max-width: 992px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stat-box {
    padding: 40px 25px;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   SECTION 6 — PROJECT SHOWCASE / IMAGE PROOF (Infinite Slider)
   ========================================================== */

.projects {
  text-align: center;
  padding: 60px 0;
  background: #faf9f6;
}

.projects .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #021287;
  margin-bottom: 35px;
}

.slider-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

@keyframes nlpLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-300vw);
  }
}

.project-gallery {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: slideInfinite 32s linear infinite;
}

.slider-wrapper:hover .project-gallery {
  animation-play-state: paused;
}

.project-card {
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  flex-shrink: 0;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.045);
  box-shadow: var(--shadow-medium);
}

.project-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@keyframes slideInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .project-card {
    min-width: 260px;
  }

  .project-card img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .projects .section-title {
    font-size: 1.8rem;
  }

  .project-card {
    min-width: 220px;
  }

  .project-card img {
    height: 250px;
  }
}

@media (max-width: 450px) {
  .slider-wrapper {
    width: 95%;
  }

  .project-card {
    min-width: 190px;
  }

  .project-card img {
    height: 200px;
  }
}

/* ==========================================================
   SECTION 7 — CLIENT LOGOS (Infinite Slider) - UPDATED FOR CONTINUOUS SCROLL
   ========================================================== */

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #f9f7f2;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;

  animation: logoScroll 26s linear infinite;
  width: max-content;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img {
  height: 55px;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.8;

  transition: all 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.15);
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .logo-track img {
    height: 45px;
  }
}

@media (max-width: 600px) {
  .logo-track {
    gap: 40px;
  }

  .logo-track img {
    height: 38px;
  }
}

@media (max-width: 450px) {
  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 32px;
  }
}

/* ==========================================================
   TTT BENEFITS SECTION — UNIQUE CLASS NAMES
   ========================================================== */

.ttt-benefits-section {
  max-width: 100%;
  margin: 70px 0;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.ttt-benefits-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #021287;
}

.ttt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.ttt-benefit-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--smooth);
  border: 1px solid #efefef;
  text-align: left;
}

.ttt-benefit-card:hover {
  transform: translateY(-6px);
  border-color: #ff5400;
  box-shadow: var(--shadow-medium);
}

.ttt-benefit-icon {
  width: 55px;
  height: 55px;
  background: #ff5400;
  color: var(--black);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: bold;
}

.ttt-benefit-card h3 {
  color: #ff5400;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.ttt-benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .ttt-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .ttt-benefits-section {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .ttt-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ttt-benefit-card {
    padding: 28px 20px;
  }

  .ttt-benefits-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================
   SECTION 8 — TESTIMONIALS / REVIEWS
   ========================================================== */

.reviews {
  padding: 70px 40px;
  background: #faf9f6;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.reviews .section-title {
  font-size: 2.3rem;
  color: #021287;
  font-weight: 800;
  margin-bottom: 40px;
}

.review-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius);
  border-left: 5px solid #FF5400;

  box-shadow: var(--shadow-soft);

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
}

.review-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
}

.review-card h4 {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 700;
  color: #ff5400;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 900px) {
  .review-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .review-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    padding: 24px 18px;
  }

  .review-card p {
    font-size: 0.95rem;
  }
}

/* ==========================================================
   TRAINER SECTION — PREMIUM GOLD/BLACK THEME
   ========================================================== */

.ttt-trainer-section {
  background: #ffffff;
  padding: 100px 40px;
  width: 100%;
  max-width: 100%;
}

.ttt-trainer-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #021287;
  margin-bottom: 60px;
  position: relative;
}

.ttt-trainer-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #ff5400;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.ttt-trainer-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  opacity: 0;
  transform: translateY(40px);
  animation: trainerFadeUp 1s ease forwards;
}

@keyframes trainerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ttt-trainer-photo-box {
  flex: 1;
  position: relative;
  max-width: 420px;
}

.ttt-trainer-photo-shadow {
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: 85%;
  height: 85%;
  background:#ff5400;
  border-radius: 20px;
  z-index: 1;
  filter: blur(2px);
  opacity: 0.35;
}

.ttt-trainer-photo {
  width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
  box-shadow: var(--shadow-strong);
  object-fit: cover;
}

.ttt-trainer-info {
  flex: 2;
  padding-right: 15px;
}

.ttt-trainer-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color:#ff5400;
}

.ttt-trainer-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 22px;
}

.ttt-trainer-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff5400;
  margin: 30px 0 15px;
  border-left: 6px solid #ff5400;
  padding-left: 12px;
}

.ttt-trainer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.ttt-trainer-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.ttt-trainer-list li::before {
  content: "•";
  font-size: 1.3rem;
  color: #ff5400;
  position: absolute;
  left: 0;
  top: -1px;
}

.ttt-trainer-final {
  margin-top: 25px;
  font-size: 1rem;
  font-weight: 600;
  color:#ff5400;
}

@media (max-width: 992px) {
  .ttt-trainer-grid {
    gap: 40px;
  }

  .ttt-trainer-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ttt-trainer-grid {
    flex-direction: column;
    text-align: center;
  }

  .ttt-trainer-photo-shadow {
    left: 15%;
  }

  .ttt-trainer-subtitle {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .ttt-trainer-list {
    max-width: 420px;
    margin: 0 auto 30px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ttt-trainer-title {
    font-size: 2rem;
  }

  .ttt-trainer-name {
    font-size: 1.6rem;
  }

  .ttt-trainer-text {
    font-size: 0.95rem;
  }
}

.ttt-toggle-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #ff5400;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ttt-toggle-btn span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.ttt-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 
    max-height 0.5s ease,
    opacity 0.3s ease;
}

.ttt-collapsible.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 20px;
}

.ttt-toggle-btn.active span {
  transform: rotate(45deg);
}

/* ============================= */
/*     TRAINER GALLERY SLIDER    */
/* ============================= */

.trainer-gallery-section {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.trainer-gallery-slider {
  width: 100%;
  max-width: 100%;
  height: 700px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: none;
}

.trainer-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}

.trainer-gallery-slide.gallery-active {
  opacity: 1;
}

.trainer-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .trainer-gallery-slider {
    height: clamp(200px, 55vw, 380px);
  }
}

@media (max-width: 480px) {
  .trainer-gallery-slider {
    height: clamp(160px, 65vw, 300px);
  }
}

/* ==========================================================
   INDUSTRY OPPORTUNITY — PREMIUM GOLD/BLACK STYLE
   ========================================================== */

.ttt-industry-section {
  background: #ffffff;
  padding: 100px 40px;
  width: 100%;
  max-width: 100%;
}

.ttt-industry-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ttt-industry-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  color:#021287;
  margin-bottom: 60px;
}

.ttt-industry-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background:#FF5400;
  margin: 12px auto 0;
  border-radius: 2px;
}

.ttt-industry-block {
  background: #fafafa;
  border-left: 6px solid #FF5400;
  padding: 30px 30px 30px 35px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: var(--shadow-soft);
}

.ttt-industry-earnings-box {
  background: #FF5400;
  color: black;
  padding: 35px 40px;
  border-radius: 16px;
  margin: 45px 0;
  box-shadow: var(--shadow-medium);
}

.ttt-industry-earnings-box .ttt-industry-subtitle {
  color:white;
}

.ttt-industry-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff5400;
  margin-bottom: 18px;
}

.ttt-industry-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ttt-industry-list {
  list-style: none;
  padding: 0;
}

.ttt-industry-list li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.ttt-industry-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: #ff5400;
  font-size: 1.2rem;
}

.ttt-industry-list.earnings li {
  color: white;
}

.ttt-industry-final {
  text-align: center;
  margin-top: 40px;
}

.ttt-industry-final h3 {
  font-size: 1.4rem;
  font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.ttt-industry-final p {
  font-size: 1.05rem;
  margin-top: 12px;
  color: #111;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ttt-industry-title {
    font-size: 1.9rem;
  }

  .ttt-industry-block,
  .ttt-industry-earnings-box {
    padding: 25px 20px;
  }

  .ttt-industry-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .ttt-industry-title {
    font-size: 1.7rem;
  }

  .ttt-industry-block {
    padding: 20px 16px;
  }

  .ttt-industry-list li {
    font-size: 0.95rem;
  }
}

/* ==========================================================
   SECTION 10 — CTA FORM / POPUP / FOOTER / WHATSAPP FLOAT
   ========================================================== */

.form-section {
  background: #e8dbd5;
  color: var(#FF5400);
  padding: 80px 40px;
  text-align: center;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.form-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #FF5400;
    font-family: 'Poppins', sans-serif;
}

form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid #444;
  font-size: 1rem;
  background: #f7f7f7;
  color: #111;
  font-weight: 600;
}

form input:focus {
  border-color: #ff5400;
  outline: none;
  box-shadow: 0 0 8px #ff5400;
}

form button,
input[type="submit"] {
  background:#FF5400;
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover,
input[type="submit"]:hover {
  background:#ff5400;
  transform: translateY(-2px);
}

.popup-form {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-form.show {
  display: flex;
  animation: fadeInPopup 0.4s ease forwards;
}

@keyframes fadeInPopup {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-content {
  background: var(--white);
  width: 90%;
  max-width: 380px;
  padding: 32px 25px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-strong);
  animation: scaleInPopup 0.4s ease forwards;
}

@keyframes scaleInPopup {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.popup-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.popup-content input:focus {
  border-color: #ff5400;
}

.popup-content button {
  background: #ff5400;
  color: var(--black);
  padding: 12px;
  border: none;
  width: 100%;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-content button:hover {
  background: #b89630;
}

.popup-content .close-btn {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #222;
  transition: 0.2s ease;
}

.popup-content .close-btn:hover {
  color: #ff5400;
}

.whatsapp-float {
  position: fixed;
  bottom: 95px;
  left: 1430px;
  width: 60px;
  height: 60px;

  border-radius: 50%;
  background: #ff5400;
  color: var(--black);

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 28px;
  text-decoration: none;

  box-shadow: var(--shadow-strong);
  transition: 0.3s ease;

  z-index: 1500;
}

@media (max-width: 480px) {
  .whatsapp-float {
    left: 310px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #b89630;
}

footer {
  background: #e7e7e7;
  color: orangered;
  text-align: center;
  padding: 22px;
  margin-top: 40px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

html, body {
  overflow-x: hidden;
}

body {
  padding-bottom: 80px;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #e7e7e7;
  color: #ff5400;

  padding: 12px 15px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));

  text-align: center;
  z-index: 1800;

  box-shadow: 0 -3px 10px rgba(0,0,0,0.4);
  box-sizing: border-box;
}

.bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bar-text {
  font-weight: 600;
}

#timer {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 8px;

  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;

  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;

  animation: pulseTimer 1.4s infinite alternate;
}

@keyframes pulseTimer {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@media (max-width: 600px) {

  .bar-content {
    flex-direction: column;
    gap: 6px;
  }

  #timer {
    font-size: 0.9rem;
    animation: pulseTimerMobile 1.4s infinite alternate;
  }
}

@keyframes pulseTimerMobile {
  from { transform: scale(1); }
  to   { transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  #timer {
    animation: none;
  }
}

:root {
  --black: #0c0c0c;
  --white: #ffffff;

  --gold: #ff5400;
  --gold-light: #ff5400;
  --gold-dark: #ff5400;

  --text-dark: #1a1a1a;
  --text-light: #555555;
  --cream: #faf9f6;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 32px rgba(0, 0, 0, 0.18);

  --radius: 14px;

  --smooth: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #021287;
}

p {
  font-size: 1rem;
  color: var(--text-light);
}

img {
  max-width: 100%;
  display: block;
}

button, a, .cta-btn, input {
  transition: var(--smooth);
}

/* ====================================================== */
/*                     POPUP FORM                         */
/* ====================================================== */

.ttt-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 16px;
}

.ttt-popup-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ttt-popup-box {
  background: #FF5400;
  color: #222222;

  width: 100%;
  max-width: 420px;

  border-radius: 18px;
  padding: 28px 26px;

  border-top: 6px solid #FF5400;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  position: relative;

  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ttt-popup-overlay.show .ttt-popup-box {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 600px) {
  .ttt-popup-box {
    max-width: 92%;
    padding: 22px 18px;
    border-radius: 16px;
  }
}

.ttt-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.ttt-popup-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.ttt-popup-subtitle {
  text-align: center;
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ttt-popup-form {
  width: 100%;
}

.ttt-popup-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #c6c6c6;
  font-size: 1rem;
  outline: none;
}

.ttt-popup-form input:focus {
  border-color: #128C7E;
}

.ttt-popup-btn {
  width: 100%;
  padding: 14px;
  background: #000000;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ttt-popup-btn:hover {
  background: #0d6f62;
  transform: translateY(-2px);
}

.ttt-popup-box {
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 480px) {
  .ttt-popup-box {
    width: 100%;
    max-width: 360px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .ttt-popup-title {
    font-size: 1.3rem;
  }

  .ttt-popup-subtitle {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .ttt-popup-form input {
    padding: 11px 12px;
    font-size: 16px;
  }

  .ttt-popup-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
}

@media (max-height: 520px) {
  .ttt-popup-overlay {
    align-items: flex-start;
    padding-top: 24px;
  }

  .ttt-popup-box {
    max-height: calc(100vh - 40px);
  }
}

@media (min-width: 768px) {
  .ttt-popup-overlay {
    backdrop-filter: blur(4px);
  }
}

/* ==============================
   TRAINER SLIDER – SPLIT LAYOUT (50-50 or 40-60) - UPDATED
   ============================== */

.nlpTrainerSlider {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #050b1e 0%, #0b1638 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 0;
  min-height: 500px;
}

.nlpTrainerTrack {
  display: flex;
  animation: slideTrainer 28s infinite ease-in-out;
}

.nlpTrainerSlide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  min-height: 500px;
}

/* LEFT - Image Gallery */
.nlpSlideGallery {
  flex: 0 0 45%;
  max-width: 550px;
  height: 650px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.nlp-gallery-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.nlp-gallery-image.active {
  opacity: 1;
}

.nlp-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT - Content */
.nlpSlideContainer {
  flex: 1;
  text-align: left;
  z-index: 2;
}

.nlpSlideHeader {
  max-width: 100%;
}

.nlpSlideHeader h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
}

.nlpSlideHeader h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.nlpSlideHeader p {
  font-size: 17px;
  line-height: 1.85;
  color: #d6d9e4;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

@keyframes slideTrainer {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(0); }

  33%  { transform: translateX(-100%); }
  63%  { transform: translateX(-100%); }

  66%  { transform: translateX(-200%); }
  96%  { transform: translateX(-200%); }

  100% { transform: translateX(-300%); }
}

/* Responsive for NLP Trainer Slider */
@media (max-width: 992px) {
  .nlpTrainerSlide {
    flex-direction: column;
    padding: 50px 30px;
    min-height: auto;
    align-items: stretch;
  }

  .nlpSlideGallery {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
  }

  .nlpSlideContainer {
    text-align: center;
    width: 100%;
  }

  .nlpSlideHeader h2 {
    font-size: 28px;
  }

  .nlpSlideHeader h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .nlpTrainerSlider {
    border-radius: 20px;
    min-height: auto;
  }

  .nlpTrainerSlide {
    padding: 40px 25px;
  }

  .nlpSlideGallery {
    height: 380px;
  }

  .nlpSlideHeader h2 {
    font-size: 26px;
  }

  .nlpSlideHeader p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .nlpTrainerSlide {
    padding: 30px 20px;
  }

  .nlpSlideGallery {
    height: 320px;
    border-radius: 16px;
  }

  .nlpSlideHeader h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .nlpSlideHeader h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .nlpSlideHeader p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-btn2 {
    font-size: 13px;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .nlpTrainerSlide {
    padding: 25px 16px;
  }

  .nlpSlideGallery {
    height: 280px;
  }

  .nlpSlideHeader h2 {
    font-size: 20px;
  }

  .nlpSlideHeader h3 {
    font-size: 16px;
  }

  .nlpSlideHeader p {
    font-size: 14px;
  }

  .dpk-offer-wrap {
    padding: 8px 12px;
  }

  .dpk-offer-text {
    font-size: 13px;
  }
}

.contact-section {
    padding: 60px 40px;
    background-color: #ffffff;
    width: 100%;
    max-width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #0a1434;
    padding: 50px;
    border-radius: 0;
}

.contact-content {
    flex: 1;
}

.contact-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-desc {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #ffffff;
}

.contact-info i {
    color: #0a4fcf;
    font-size: 18px;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: left;
    }

    .contact-image {
        justify-content: center;
        margin-top: 30px;
    }

    .contact-content h1 {
        font-size: 32px;
    }
}

.dpk-topbar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 30px;
  background: #f8f8f8;
}

@keyframes dpkPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 84, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 84, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 84, 0, 0);
  }
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: #d0ccc7;
  display: flex;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
  box-sizing: border-box;
}

.strip-left {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll 15s linear infinite;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.strip-right {
  padding: 0 16px;
  flex-shrink: 0;
}

.contact-btn {
  background: linear-gradient(135deg, #ff5400, #ff7b2e);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .marquee {
    font-size: 13px;
  }

  .contact-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.dpk-offer-wrap {
  width: 100%;
  max-width: 900px;
  margin: 12px auto;
  padding: 10px 16px;
  background: #000000;
  border-left: 4px solid #ff5400;
  border-radius: 6px;
  text-align: center;
}

.dpk-offer-title {
  font-size: 14px;
  font-weight: 700;
  color: #ff5400;
  margin-bottom: 4px;
}

.dpk-offer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

.dpk-offer-text span {
  color: #d84315;
  font-weight: 700;
}

@media (max-width: 600px) {
  .dpk-offer-wrap {
    padding: 8px 12px;
  }

  .dpk-offer-text {
    font-size: 13.5px;
  }
}

/* ============================= */
/* PARTNERS SECTION - UPDATED FOR CONTINUOUS SCROLL */
/* ============================= */

.partners-section {
    padding: 80px 40px;
    background: #ffffff;
    text-align: center;
}

.partners-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.partners-section h2 span {
    color: #c40000;
}

.partner-slider {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: partnerScroll 6s linear infinite;
}

.partner-track img {
    height: 70px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .partner-track {
        gap: 40px;
    }
    .partner-track img {
        height: 60px;
    }
}

@media (max-width: 420px) {
    .partner-track {
        gap: 20px;
    }
    .partner-track img {
        height: 48px;
    }
}