* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #FF681F;
  --paragraph-grey: #b0b0b0;      /* consistent grey for p and read more */
}

/* ===== HERO SECTION WITH ORANGE LINE ===== */
#hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.video-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Orange line after hero video */
#hero-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  z-index: 10;
}

/* Mute toggle button */
.mute-toggle {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #030303;
  transition: all 0.3s ease;
}

.mute-toggle i {
  font-size: 1.3rem;
  color: #040404;
}

/* ===== ABOUT SECTION - COMPLETE CSS ===== */

.about-section {
  position: relative;
  padding: 6rem 2rem;
  background: #000000;
  overflow: hidden;
  min-height: 80vh;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background pattern animation */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 104, 31, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 104, 31, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: backgroundShift 25s ease infinite;
  pointer-events: none;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Thin orange line at top */
.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF681F, transparent);
  z-index: 1;
}

/* Content container */
.about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* Left content - text */
.about-text {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 1rem;
  max-width: 550px;
}

.about-text h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.8rem;
  color: #FF681F;
  font-family: "Montserrat Underline", serif;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(255, 104, 31, 0.3);
  display: block;
  width: 100%;
}

/* Remove any default underline */
.about-text h1::after {
  display: none !important;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 100%;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
}

/* Read more button - grey with orange underline */
.read-more {
  font-size: 1.05rem;
  font-weight: 400;
  color: #b0b0b0;
  text-decoration: none;
  border-bottom: 1.5px solid #FF681F;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  gap: 12px;
}

.read-more i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #b0b0b0;
}

.read-more:hover i {
  color: #ffffff;
  transform: translateX(5px);
}

/* Right content - image with rotating rectangle */
.about-images {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  min-height: 500px;
}

/* Rotating rectangle */
.about-images .rotating-rectangle {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 2px solid #FF681F;
  opacity: 0.4;
  animation: rotateRectangle 20s linear infinite;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 104, 31, 0.2);
}

/* Remove any inner rectangle */
.about-images .rotating-rectangle::before {
  display: none !important;
}

@keyframes rotateRectangle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Main image */
.about-images img {
  width: 100%;
  max-width: 420px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  border: none;
  outline: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  filter: brightness(1.05) contrast(1.05);
  animation: floatImage 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.about-images img:hover {
  transform: scale(1.02) translateY(-5px);
}

/* Rectangle hover effect */
.about-images:hover .rotating-rectangle {
  opacity: 0.7;
  border-color: #FF681F;
  box-shadow: 0 0 30px rgba(255, 104, 31, 0.4);
  animation-duration: 10s;
}

/* Animation for text */
.about-text {
  animation: slideInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-images {
  animation: slideInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE STYLES ===== */

/* Extra Large Desktop */
@media (min-width: 1600px) {
  .about-container {
    max-width: 1300px;
  }
  .about-text h1 {
    font-size: 3.3rem;
  }
  .about-text p {
    font-size: 1.1rem;
  }
  .about-images img {
    max-width: 450px;
    height: 550px;
  }
  .about-images .rotating-rectangle {
    width: 480px;
    height: 480px;
  }
}

/* Large Desktop */
@media (min-width: 1400px) and (max-width: 1599px) {
  .about-container {
    max-width: 1200px;
    gap: 3.5rem;
  }
  .about-text h1 {
    font-size: 3rem;
  }
  .about-images img {
    max-width: 420px;
    height: 500px;
  }
  .about-images .rotating-rectangle {
    width: 450px;
    height: 450px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .about-section {
    padding: 5rem 2rem;
  }
  .about-container {
    max-width: 1000px;
    gap: 3rem;
  }
  .about-text h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }
  .about-text p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  .about-images {
    max-width: 450px;
    min-height: 450px;
  }
  .about-images img {
    max-width: 380px;
    height: 450px;
  }
  .about-images .rotating-rectangle {
    width: 400px;
    height: 400px;
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  .about-section {
    padding: 4rem 2rem;
    min-height: auto;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    max-width: 700px;
  }
  .about-text {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }
  .about-text h1 {
    margin-left: auto;
    margin-right: auto;
    font-size: 2.4rem;
  }
  .about-text p {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }
  .read-more {
    margin-left: auto;
    margin-right: auto;
  }
  .about-images {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    min-height: 400px;
  }
  .about-images img {
    max-width: 350px;
    height: 400px;
  }
  .about-images .rotating-rectangle {
    width: 380px;
    height: 380px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .about-section {
    padding: 3.5rem 1.5rem;
  }
  .about-container {
    gap: 2.5rem;
  }
  .about-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .read-more {
    font-size: 0.95rem;
  }
  .about-images {
    min-height: 350px;
  }
  .about-images img {
    max-width: 300px;
    height: 350px;
  }
  .about-images .rotating-rectangle {
    width: 330px;
    height: 330px;
  }
}

/* Mobile Landscape */
@media (max-width: 576px) {
  .about-section {
    padding: 3rem 1rem;
  }
  .about-container {
    gap: 2rem;
  }
  .about-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about-text p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  .read-more {
    font-size: 0.9rem;
  }
  .about-images {
    min-height: 300px;
  }
  .about-images img {
    max-width: 260px;
    height: 300px;
  }
  .about-images .rotating-rectangle {
    width: 280px;
    height: 280px;
  }
}

/* Mobile Portrait */
@media (max-width: 400px) {
  .about-section {
    padding: 2.5rem 0.8rem;
  }
  .about-text h1 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 0.85rem;
  }
  .about-images {
    min-height: 280px;
  }
  .about-images img {
    max-width: 230px;
    height: 280px;
  }
  .about-images .rotating-rectangle {
    width: 250px;
    height: 250px;
  }
}

/* Small Mobile */
@media (max-width: 320px) {
  .about-text h1 {
    font-size: 1.6rem;
  }
  .about-images {
    min-height: 250px;
  }
  .about-images img {
    max-width: 200px;
    height: 250px;
  }
  .about-images .rotating-rectangle {
    width: 220px;
    height: 220px;
  }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  .about-section::before,
  .about-images .rotating-rectangle,
  .about-images img,
  .read-more,
  .read-more i {
    animation: none !important;
    transition: none !important;
  }
  
  .about-images:hover .rotating-rectangle {
    animation-duration: 20s;
  }
  
  .about-images img:hover {
    transform: none;
  }
}

/* ===== DARK MODE ENHANCEMENT ===== */
@media (prefers-color-scheme: dark) {
  .about-section {
    background: #000000;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .about-text h1 {
    color: #FF4500;
  }
  .about-text p {
    color: #ffffff;
  }
  .about-images .rotating-rectangle {
    border-color: #FF4500;
    opacity: 0.8;
  }
}

/* ================= SPOTLIGHT SECTION - ORANGE HEADING, GREY TEXT ================= */

.spotlight-section {
  position: relative;
  padding: 6rem 0;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

/* Background pattern */
.spotlight-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: spotlightBackgroundShift 25s ease infinite;
  pointer-events: none;
}

@keyframes spotlightBackgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Thin orange line at top */
.spotlight-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  z-index: 1;
}

.spotlight-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center; /* Center all text in container */
}

/* ===== SPOTLIGHT HEADING (ORANGE) - CENTERED ===== */
.spotlight-heading {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 3rem;
  color: #FF681F; /* ORANGE */
  letter-spacing: -0.5px;
  font-family: "Montserrat Underline", serif;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 15px;
  text-align: center; /* Center the heading */
}

/* No underline under heading */
.spotlight-heading::after {
  display: none !important;
}

/* ===== SPOTLIGHT CARDS ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  justify-content: center; /* Center the cards */
}

.col-lg-4, .col-md-4, .col-sm-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 767px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.spotlight-card {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  text-align: left; /* Card content remains left-aligned */
}

.spotlight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* Card image wrapper */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(1.05) contrast(1.05);
}

.spotlight-card:hover .card-image {
  transform: scale(1.08);
}

/* ===== CARD OVERLAY - ORANGE HEADING, GREY TEXT ===== */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  text-align: left; /* Overlay content left-aligned */
}

.spotlight-card:hover .card-overlay {
  transform: translateY(0);
}

/* Card title in overlay - ORANGE */
.spot-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #FF681F; /* ORANGE */
  margin-bottom: 0.5rem;
  font-family: "Montserrat Underline", serif;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
  text-align: left;
}

/* Card text in overlay - GREY */
.spot-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0; /* GREY */
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}

/* Explore button - GREY with orange underline */
.spot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0; /* GREY */
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  border-bottom: 1.5px solid #FF681F;
  padding-bottom: 4px;
  width: fit-content;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.spot-btn:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  gap: 12px;
}

.spot-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #b0b0b0;
}

.spot-btn:hover i {
  transform: translateX(5px);
  color: #ffffff;
}

/* ===== CARD FOOTER - GREY TEXT WITH GREY ICONS ===== */
.card-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  font-size: 0.9rem;
  color: #b0b0b0; /* GREY */
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-top: auto;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: default;
  color: #b0b0b0; /* GREY */
}

/* GREY ICONS */
.feature i {
  color: #808080; /* GREY */
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* HOVER EFFECTS - subtle */
.feature:hover {
  color: #d0d0d0; /* Lighter grey on hover */
  transform: translateX(3px);
}

.feature:hover i {
  color: #FF681F; /* Orange on hover */
  opacity: 1;
  transform: scale(1.1);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1400px) {
  .spotlight-section { padding: 5rem 0; }
  .spotlight-heading { font-size: 2.8rem; }
}

@media (max-width: 1200px) {
  .spotlight-heading { font-size: 2.6rem; }
  .spot-title { font-size: 1.4rem; }
}

@media (max-width: 992px) {
  .spotlight-section { padding: 4rem 0; }
  .spotlight-heading { font-size: 2.4rem; }
  .card-footer { padding: 0.8rem 1.2rem; font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .spotlight-section { padding: 3rem 0; }
  .spotlight-heading { font-size: 2.2rem; margin-bottom: 2.5rem; }
  .card-overlay { padding: 1.5rem 1.2rem; }
  .spot-title { font-size: 1.3rem; }
  .spot-text { font-size: 0.9rem; }
  .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .spotlight-section { padding: 2.5rem 0; }
  .spotlight-heading { font-size: 2rem; margin-bottom: 2rem; }
  .card-footer { 
    flex-direction: column; 
    gap: 0.5rem; 
    align-items: flex-start; 
    padding: 0.8rem 1rem; 
  }
  .spot-title { font-size: 1.2rem; }
  .spot-btn { font-size: 0.9rem; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  .spotlight-section *,
  .spotlight-section::before,
  .spotlight-section::after,
  .spotlight-card,
  .card-image,
  .card-overlay,
  .spot-btn,
  .spot-btn i,
  .feature,
  .feature i {
    animation: none !important;
    transition: none !important;
  }
  
  .spotlight-card:hover {
    transform: none;
  }
  
  .spotlight-card:hover .card-image {
    transform: none;
  }
  
  .spot-btn:hover {
    gap: 8px;
  }
  
  .spot-btn:hover i {
    transform: none;
  }
  
  .feature:hover {
    transform: none;
  }
  
  .feature:hover i {
    transform: none;
    color: #808080;
  }
}

/* ================= ABOUT HERO SECTION ================= */

.about-hero-section {
  position: relative;
  padding: 8rem 5rem;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Background image */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) contrast(1.1);
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Background pattern */
.about-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 1;
  animation: heroBackgroundShift 25s ease infinite;
  pointer-events: none;
  opacity: 0.4;
}

/* Thin orange line at top */
.about-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent,#FF681F, transparent);
  z-index: 3;
}

@keyframes heroBackgroundShift {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.about-hero-section .container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== HEADING STYLE ===== */
.about-hero-title {
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2rem;
  color:#FF681F;
  letter-spacing: -0.5px;
  font-family: "Montserrat Underline", serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: inline-block;
  width: auto;
  position: relative;
  padding-bottom: 15px;
}

/* Orange underline under heading */
.about-hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 2px;
  background: #FF681F;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(243, 93, 38, 0.4);
}

/* ===== PARAGRAPH TEXT ===== */
.about-hero-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== BUTTON STYLE ===== */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1.5px solid #FF681F;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-modern:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  gap: 12px;
}

.btn-modern i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-modern:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1400px) {
  .about-hero-section { padding: 6rem 4rem; }
  .about-hero-title { font-size: 3.2rem; }
}

@media (max-width: 1200px) {
  .about-hero-section { padding: 5rem 3rem; }
  .about-hero-title { font-size: 3rem; }
  .about-hero-text { font-size: 0.95rem; }
}

@media (max-width: 992px) {
  .about-hero-section { 
    padding: 4rem 2rem; 
    text-align: center; 
    min-height: 70vh;
  }
  .about-hero-title { 
    font-size: 2.8rem; 
    margin-left: auto; 
    margin-right: auto;
  }
  .about-hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-hero-text { 
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
  }
  .btn-modern {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-hero-section { padding: 3rem 1.5rem; }
  .about-hero-title { 
    font-size: 2.4rem; 
    padding-bottom: 12px;
  }
  .about-hero-title::after { width: 150px; }
  .about-hero-text { font-size: 0.9rem; }
  .btn-modern { font-size: 1rem; }
}

@media (max-width: 576px) {
  .about-hero-section { padding: 2.5rem 1rem; }
  .about-hero-title { 
    font-size: 2rem; 
    padding-bottom: 10px;
  }
  .about-hero-title::after { width: 120px; }
  .about-hero-text { font-size: 0.85rem; }
}

/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-us {
  position: relative;
  padding: 8rem 5rem;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Background pattern */
.why-choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: whyBackgroundShift 25s ease infinite;
  pointer-events: none;
}

@keyframes whyBackgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Thin orange line at top */
.why-choose-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  z-index: 1;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.content-layer {
  position: relative;
  z-index: 3;
}

/* ===== SUBTITLE ===== */
.subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: "Montserrat Underline", serif;
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* ===== TITLE ===== */
.title-light {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--primary-orange);
  letter-spacing: -0.5px;
  font-family: "Montserrat Underline", serif;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  
  /* Per-word underline */
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  align-items: baseline;
  justify-content: center;
}

/* Each word gets underline */
.title-light word {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Orange underline under each word */
.title-light word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-orange);
  border-radius: 1px;
  box-shadow: 0 0 4px rgba(243, 93, 38, 0.4);
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Feature Box */
.feature-box {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 30px;
  padding: 2.5rem 1.8rem;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  background: rgba(20, 20, 20, 0.9);
}

/* Feature icons */
.feature-box i {
  font-size: 2.8rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  opacity: 0.9;
}

.feature-box:hover i {
  transform: scale(1.1);
  color: #ff9f7a;
  text-shadow: 0 0 15px rgba(255, 159, 122, 0.5);
}

/* Feature title */
.feature-box h4 {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #b0b0b0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.feature-box:hover h4 {
  color: #d0d0d0;
}

/* Feature text */
.feature-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #808080;
  font-weight: 300;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-box:hover p {
  color: #a0a0a0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .why-choose-us { padding: 6rem 4rem; }
  .title-light { font-size: 2.6rem; }
  .features-grid { gap: 1.5rem; }
}

@media (max-width: 992px) {
  .why-choose-us { padding: 5rem 3rem; }
  .title-light { font-size: 2.4rem; }
  .features-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .feature-box { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
  .why-choose-us { padding: 4rem 1.5rem; }
  .subtitle { font-size: 1.1rem; }
  .title-light { 
    font-size: 2rem; 
    gap: 0.2rem 0.4rem;
  }
  .feature-box i { font-size: 2.3rem; }
  .feature-box h4 { font-size: 1.2rem; }
  .feature-box p { font-size: 0.9rem; }
}

@media (max-width: 576px) {
  .why-choose-us { padding: 3rem 1rem; }
  .subtitle { font-size: 1rem; }
  .title-light { 
    font-size: 1.6rem; 
    gap: 0.15rem 0.3rem;
  }
  .features-grid { 
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .feature-box { padding: 1.8rem 1.2rem; }
  .feature-box i { font-size: 2.2rem; }
  .feature-box h4 { font-size: 1.1rem; }
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
  .why-choose-us *,
  .why-choose-us::before,
  .why-choose-us::after,
  .feature-box,
  .feature-box i,
  .feature-box h4,
  .feature-box p {
    animation: none !important;
    transition: none !important;
  }
  
  .feature-box:hover {
    transform: none;
  }
  
  .feature-box:hover i {
    transform: none;
    color: var(--primary-orange);
  }
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials-section {
  position: relative;
  padding: clamp(3rem, 8vw, 8rem) clamp(0.5rem, 2vw, 2rem);
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

/* Background pattern */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: testimonialBackgroundShift 25s ease infinite;
  pointer-events: none;
}

@keyframes testimonialBackgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Thin orange line at top */
.testimonials-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/* ===== HEADING ===== */
.testimonials-heading {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  color:#FF681F;
  letter-spacing: -0.5px;
  font-family: "Montserrat Underline", serif;
  text-align: center;
  position: relative;
  display: block;
  width: 100%;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.testimonials-heading::after {
  display: none !important;
}

/* ===== SWIPER ===== */
.swiper {
  padding: clamp(10px, 2vw, 20px) clamp(3px, 1vw, 10px) clamp(40px, 8vw, 60px) !important;
  overflow: visible !important;
  width: 100%;
  margin: 0 auto;
}

.swiper-wrapper {
  padding: clamp(5px, 1vw, 10px) 0;
  margin: 0;
}

.swiper-slide {
  height: auto;
  display: flex;
  padding: 0 clamp(2px, 0.5vw, 5px);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: clamp(20px, 3vw, 30px);
  padding: clamp(1.2rem, 4vw, 2.5rem) clamp(0.8rem, 3vw, 2rem);
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 25px 45px rgba(255, 107, 53, 0.25);
  background: rgba(30, 30, 30, 0.8);
}

/* Client Image */
.client-img {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
  border: 3px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.testimonial-card:hover .client-img {
  border-color: #FF681F;
  transform: scale(1.05);
}

/* Client Name */
.client-name {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  color: #b0b0b0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.3px;
  margin: 0 0 0.3rem 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover .client-name {
  color: #d0d0d0;
}

/* Client Role */
.client-role {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 300;
  color: #808080;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 clamp(0.5rem, 1.5vw, 1rem) 0;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .client-role {
  color: #a0a0a0;
}

/* Review Text */
.review-text {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  line-height: 1.7;
  color: #808080;
  font-weight: 300;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  transition: color 0.3s ease;
  font-style: italic;
}

.testimonial-card:hover .review-text {
  color: #a0a0a0;
}

/* ===== SWIPER PAGINATION ===== */
.swiper-pagination {
  bottom: clamp(5px, 1vw, 10px) !important;
}

.swiper-pagination-bullet {
  width: clamp(6px, 1.5vw, 10px);
  height: clamp(6px, 1.5vw, 10px);
  background: #808080;
  opacity: 0.5;
  transition: all 0.3s ease;
  margin: 0 clamp(3px, 0.5vw, 5px) !important;
}

.swiper-pagination-bullet-active {
  background: #FF681F;
  opacity: 1;
  width: clamp(20px, 4vw, 30px);
  border-radius: 5px;
}

/* ===== SWIPER ARROWS ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #FF681F !important;
  width: clamp(35px, 5vw, 45px);
  height: clamp(35px, 5vw, 45px);
  transition: all 0.3s ease;
  background: transparent;
  border: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff9f7a !important;
  transform: scale(1.1);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonials-section {
    padding: 5rem 1.2rem;
  }
  
  .testimonials-heading {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .swiper {
    padding: 15px 5px 50px !important;
  }
  
  .testimonial-card {
    padding: 1.8rem 1.2rem;
  }
  
  .client-img {
    width: 80px;
    height: 80px;
  }
  
  .client-name {
    font-size: 1.2rem;
  }
  
  .client-role,
  .review-text {
    font-size: 0.9rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 767px) {
  .testimonials-section {
    padding: 4rem 1rem;
  }
  
  .testimonials-heading {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .swiper {
    padding: 12px 3px 45px !important;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .client-img {
    width: 70px;
    height: 70px;
    margin-bottom: 0.8rem;
  }
  
  .client-name {
    font-size: 1.1rem;
  }
  
  .client-role,
  .review-text {
    font-size: 0.85rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Mobile */
@media (min-width: 320px) and (max-width: 575px) {
  .testimonials-section {
    padding: 3rem 0.5rem;
  }
  
  .testimonials-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
  
  .swiper {
    padding: 10px 0 40px !important;
  }
  
  .testimonial-card {
    padding: 1.2rem 0.8rem;
  }
  
  .client-img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.6rem;
    border-width: 2px;
  }
  
  .client-name {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .client-role {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .review-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .testimonials-section *,
  .testimonials-section::before,
  .testimonials-section::after,
  .testimonial-card,
  .client-img {
    animation: none !important;
    transition: none !important;
  }
  
  .testimonial-card:hover {
    transform: none;
  }
  
  .testimonial-card:hover .client-img {
    transform: none;
    border-color: rgba(255, 107, 53, 0.3);
  }
}

/* ================= TRUSTED PRODUCTS SECTION ================= */

#brands {
  position: relative;
  padding: 80px 0;
  background: #000000;
  width: 100%;
  overflow: hidden;
}

#brands .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Section Title - COMPLETELY RESET ALL UNDERLINES */
#brands .section-title {
  font-size: 3rem;
  font-weight: 300;
  color: #FF681F;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Montserrat Underline", serif;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  
  /* REMOVE ALL POSSIBLE UNDERLINES */
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-decoration-color: transparent !important;
  text-decoration-thickness: 0 !important;
  text-underline-offset: 0 !important;
  text-underline-position: none !important;
  
  /* REMOVE ANY BORDER THAT LOOKS LIKE UNDERLINE */
  border-bottom: none !important;
  border-bottom-width: 0 !important;
  border-bottom-style: none !important;
  border-bottom-color: transparent !important;
  
  /* REMOVE ANY BOX SHADOW THAT LOOKS LIKE UNDERLINE */
  box-shadow: none !important;
  
  /* REMOVE ANY BACKGROUND THAT LOOKS LIKE UNDERLINE */
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  
  /* RESET ALL PSEUDO-ELEMENTS */
  position: relative;
}

/* COMPLETELY DISABLE ALL PSEUDO-ELEMENTS FIRST */
#brands .section-title::before,
#brands .section-title::after,
#brands h2::before,
#brands h2::after,
#brands .section-title *::before,
#brands .section-title *::after {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* THEN ADD ONLY OUR SPECIFIC ORANGE UNDERLINE */
#brands .section-title::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 180px !important;
  height: 2px !important;
  background: #FF681F !important;
  border-radius: 1px !important;
  box-shadow: 0 0 8px rgba(255, 104, 31, 0.4) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Slider Container - FULL WIDTH */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Remove any gradient overlays */
.slider-container::before,
.slider-container::after {
  display: none;
}

/* Slider Track - Infinite Scroll */
.slider-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
  padding: 20px 0;
}

/* Even faster on hover */
.slider-container:hover .slider-track {
  animation-duration: 15s;
}

/* Individual Slide */
.slide {
  flex: 0 0 auto;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Images */
.slide img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  filter: brightness(1);
  border: none;
  background: transparent;
  box-shadow: none;
}

.slide img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 6 - 40px * 6));
  }
}

/* Orange line at top - THIS IS THE THIN LINE AT THE TOP OF SECTION, NOT AN UNDERLINE */
#brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF681F, transparent);
  z-index: 1;
}

/* ===== RESPONSIVE ===== */

/* Large Desktop */
@media (min-width: 1600px) {
  .slide { 
    width: 350px; 
  }
  .slide img { 
    height: 400px; 
  }
  .slider-track { 
    animation-duration: 22s; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-350px * 6 - 40px * 6)); }
  }
}

/* Desktop */
@media (max-width: 1400px) {
  .slide { 
    width: 280px; 
  }
  .slide img { 
    height: 290px; 
  }
  .slider-track { 
    animation-duration: 18s; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-280px * 6 - 40px * 6)); }
  }
}

/* Small Desktop/Laptop */
@media (max-width: 1200px) {
  #brands .section-title { 
    font-size: 2.8rem; 
  }
  .slide { 
    width: 270px; 
  }
  .slide img { 
    height: 220px; 
  }
  .slider-track { 
    animation-duration: 16s; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-270px * 6 - 40px * 6)); }
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  #brands { 
    padding: 60px 0; 
  }
  #brands .section-title { 
    font-size: 2.4rem; 
  }
  .slider-track { 
    gap: 30px; 
    animation-duration: 15s; 
  }
  .slide { 
    width: 240px; 
  }
  .slide img { 
    height: 250px; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-240px * 6 - 30px * 6)); }
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  #brands { 
    padding: 50px 0; 
  }
  #brands .section-title { 
    font-size: 2.2rem; 
  }
  .slider-track { 
    gap: 25px; 
    animation-duration: 14s; 
  }
  .slide { 
    width: 220px; 
  }
  .slide img { 
    height: 230px; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-220px * 6 - 25px * 6)); }
  }
}

/* Mobile Landscape */
@media (max-width: 576px) {
  #brands { 
    padding: 40px 0; 
  }
  #brands .section-title { 
    font-size: 2rem; 
  }
  #brands .section-title::after { 
    width: 120px; 
  }
  .slider-track { 
    gap: 20px; 
    animation-duration: 12s; 
  }
  .slide { 
    width: 200px; 
  }
  .slide img { 
    height: 210px; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-200px * 6 - 20px * 6)); }
  }
}

/* Mobile Portrait */
@media (max-width: 400px) {
  #brands .section-title { 
    font-size: 1.8rem; 
  }
  .slider-track { 
    gap: 15px; 
    animation-duration: 10s; 
  }
  .slide { 
    width: 180px; 
  }
  .slide img { 
    height: 190px; 
  }
  @keyframes scroll {
    100% { transform: translateX(calc(-180px * 6 - 15px * 6)); }
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
  }
}
/* ULTIMATE FIX - ADD THIS AT THE VERY END */
#brands .section-title,
#brands h2,
.section-title,
h2.section-title {
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

#brands .section-title::before,
#brands .section-title::after,
#brands h2::before,
#brands h2::after,
.section-title::before,
.section-title::after,
h2.section-title::before,
h2.section-title::after {
  all: unset !important;
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Re-add ONLY our specific underline */
#brands .section-title::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 180px !important;
  height: 2px !important;
  background: #FF681F !important;
  border-radius: 1px !important;
  box-shadow: 0 0 8px rgba(255, 104, 31, 0.4) !important;
  visibility: visible !important;
  opacity: 1 !important;
  all: revert !important;
}
