/* ===== ABOUT ONE RECORDS SECTION ===== */
.one-records-section {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%),
    radial-gradient(circle at 20% 80%, rgba(29, 185, 84, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
  color: #fff;
  position: relative;
  overflow: visible;
}

/* Enhanced Bottom Blur Mask for One Records */
.one-records-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, 0.005) 0.5%, rgba(13, 13, 13, 0.02) 2%, rgba(13, 13, 13, 0.05) 5%, rgba(13, 13, 13, 0.1) 10%, rgba(13, 13, 13, 0.2) 20%, rgba(13, 13, 13, 0.35) 35%, rgba(13, 13, 13, 0.55) 55%, rgba(13, 13, 13, 0.75) 75%, rgba(13, 13, 13, 0.9) 90%, rgba(0, 255, 0, 0.2) 95%, rgba(0, 255, 0, 0.6) 100%);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 1;
  filter: blur(0.15px);
}



.one-records-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  overflow: visible;
}

.one-records-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* Mobile improvements for container */
@media (max-width: 1024px) {
  .one-records-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .one-records-container {
    padding: 0 20px;
  }
  
  .one-records-section {
    padding: 80px 0;
  }
  
  .one-records-header {
    margin-bottom: 60px;
  }
  
  .about-main-subtitle {
    font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  }
  
  .one-records-intro {
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .one-records-container {
    padding: 0 15px;
  }
  
  .one-records-section {
    padding: 60px 0;
  }
  
  .one-records-header {
    margin-bottom: 50px;
  }
  
  .about-main-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  }
}

.one-records-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.one-records-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1DB954, #f39c12);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.one-records-title:hover::after {
  width: 60px;
}

.about-main-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #1DB954;
  margin: 20px 0 0 0;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-align: center;
}

.one-records-intro {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 20px;
  overflow: visible;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
}



/* Responsive Film Frame Effects */
@media (max-width: 768px) {
  .parallax-slider_component {
    padding: 30px 15px;
    border-width: 6px;
  }
  
  .parallax-slider_component::before,
  .parallax-slider_component::after {
    height: 8px;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
  }
  
  .parallax-slider_slide {
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .parallax-slider_component {
    padding: 25px 10px;
    border-width: 4px;
  }
  
  .parallax-slider_component::before,
  .parallax-slider_component::after {
    height: 6px;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
  }
  
  .parallax-slider_slide {
    border-width: 1px;
  }
}

.one-records-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 0;
  justify-self: start;
  max-width: 500px;
  margin-right: 40px;
  position: relative;
  overflow: visible;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 185, 84, 0.3);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(29, 185, 84, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  background: rgba(29, 185, 84, 0.2);
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.stat-icon iconify-icon {
  font-size: 20px;
  color: #1DB954;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-title {
  color: #1DB954;
}

.stat-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-description {
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(29, 185, 84, 0.3);
  }
  
  .stat-icon iconify-icon {
    font-size: 18px;
    color: #1DB954;
  }
}

.one-records-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  justify-self: end;
  min-height: 450px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
}

/* ===== ENHANCED SLIDER ===== */
.media-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 743 / 983;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  background: #000;
  min-height: 450px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
}

.media-slider:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.media-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  filter: brightness(0.9) contrast(1.1);
  z-index: 1;
}

.media-slider .slide.active {
  opacity: 1;
  filter: brightness(1) contrast(1);
  z-index: 2;
}

/* Enhanced slider controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-prev { 
  left: 16px; 
}

.slider-next { 
  right: 16px; 
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(29, 185, 84, 0.9);
  border-color: rgba(29, 185, 84, 0.8);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

/* Slider indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-indicator.active {
  background: #1DB954;
  transform: scale(1.2);
}

/* Mobile responsive for slider controls */
@media (max-width: 768px) {
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .slider-prev {
    left: 12px;
  }
  
  .slider-next {
    right: 12px;
  }
  
  .slider-indicators {
    bottom: 15px;
    gap: 8px;
  }
  
  .slider-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .slider-prev {
    left: 8px;
  }
  
  .slider-next {
    right: 8px;
  }
  
  .slider-indicators {
    bottom: 12px;
    gap: 6px;
  }
  
  .slider-indicator {
    width: 8px;
    height: 8px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .one-records-intro {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 30px;
    max-width: 800px;
    overflow: visible;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  
  .one-records-text {
    padding-right: 0;
    order: 2;
    justify-self: center;
    max-width: 600px;
    margin-right: 0;
    overflow: visible;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  
  .one-records-media {
    order: 1;
    justify-self: center;
    min-height: 500px;
    margin-left: 0;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  
  .one-records-text p {
    padding-left: 0 !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  
  .one-records-text p::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .one-records-section {
    padding: 80px 0;
  }
  
  .one-records-header {
    margin-bottom: 60px;
  }
  
  .one-records-intro {
    gap: 40px;
    padding: 0 20px;
    max-width: 600px;
  }
  
  .one-records-text {
    max-width: 500px;
    margin-right: 0;
  }
  
  .one-records-media {
    min-height: 450px;
    margin-left: 0;
  }
  
  .media-slider {
    max-width: 500px;
    min-height: 400px;
  }
  
  .slider-prev { 
    left: 12px; 
  }
  
  .slider-next { 
    right: 12px; 
  }
}

@media (max-width: 480px) {
  .one-records-section {
    padding: 60px 0;
  }
  
  .one-records-container {
    padding: 0 15px;
  }
  
  .one-records-header {
    margin-bottom: 50px;
  }
  
  .one-records-intro {
    gap: 30px;
    padding: 0 15px;
  }
  
  .one-records-text {
    max-width: 400px;
    margin-right: 0;
  }
  
  .one-records-media {
    margin-left: 0;
    min-height: 350px;
  }
  
  .media-slider {
    max-width: 400px;
    min-height: 300px;
    border-radius: 16px;
  }
  
  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .slider-prev { 
    left: 8px; 
  }
  
  .slider-next { 
    right: 8px; 
  }
}

/* Animation for text appearance */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for slider */
.media-slider .slide {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

/* ===== HORIZONTAL GALLERY WITH PARALLAX ===== */
.horizontal-gallery {
  margin-top: 100px;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  background: transparent;
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.gallery-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1DB954, #ffffff, #1DB954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

/* Parallax Slider Component */
.parallax-slider_component {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
  padding: 40px 20px;
  position: relative;
  border: 8px solid #000;
  border-radius: 12px;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.95) 90%, transparent 100%),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 1px,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(255, 255, 255, 0.05) 2px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 8px,
      rgba(255, 255, 255, 0.08) 8px,
      rgba(255, 255, 255, 0.08) 12px
    );
  box-shadow: 
    0 0 30px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(0, 0, 0, 0.6),
    0 10px 40px rgba(0, 0, 0, 0.5);
  animation: filmFrameGlow 8s ease-in-out infinite;
}

/* Film perforations - top row */
.parallax-slider_component::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  height: 12px;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 10px,
      rgba(255, 255, 255, 1) 10px,
      rgba(255, 255, 255, 1) 22px,
      transparent 22px,
      transparent 32px
    );
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 0 8px rgba(0, 0, 0, 0.6);
  border-radius: 8px 8px 0 0;
}

/* Film perforations - bottom row */
.parallax-slider_component::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -6px;
  right: -6px;
  height: 12px;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 10px,
      rgba(255, 255, 255, 1) 10px,
      rgba(255, 255, 255, 1) 22px,
      transparent 22px,
      transparent 32px
    );
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 0 8px rgba(0, 0, 0, 0.6);
  border-radius: 0 0 8px 8px;
}



@keyframes filmBorderScan {
  0%, 100% { 
    opacity: 0.7;
    box-shadow: 
      0 0 20px rgba(255, 255, 255, 0.5),
      0 0 40px rgba(255, 255, 255, 0.3),
      inset 0 0 10px rgba(0, 0, 0, 0.4);
  }
  50% { 
    opacity: 1;
    box-shadow: 
      0 0 30px rgba(255, 255, 255, 0.7),
      0 0 60px rgba(255, 255, 255, 0.5),
      inset 0 0 15px rgba(0, 0, 0, 0.6);
  }
}

@keyframes filmFrameGlow {
  0%, 100% { 
    opacity: 0.8;
    filter: brightness(0.9);
    box-shadow: 
      0 0 30px rgba(0, 0, 0, 0.8),
      inset 0 0 20px rgba(0, 0, 0, 0.6),
      0 10px 40px rgba(0, 0, 0, 0.5);
  }
  50% { 
    opacity: 1;
    filter: brightness(1.1);
    box-shadow: 
      0 0 40px rgba(0, 0, 0, 0.9),
      inset 0 0 25px rgba(0, 0, 0, 0.7),
      0 15px 50px rgba(0, 0, 0, 0.6);
  }
}

.parallax-slider_slide {
  width: 400px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-right: 40px;
  border: 3px solid rgba(0, 0, 0, 0.8);
  box-shadow: 
    0 0 20px rgba(0, 0, 0, 0.6),
    inset 0 0 15px rgba(0, 0, 0, 0.4);
  background: 
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 2px
    );
}

.parallax-slider_slide img {
  width: 200%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateX(0);
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Buttons hidden - only dragging mode */
.flickity-button {
  display: none !important;
}

/* Mobile responsive for parallax slider */
@media (max-width: 1024px) {
  .parallax-slider_slide {
    width: 320px;
    height: 480px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .parallax-slider_slide {
    width: 280px;
    height: 420px;
    margin-right: 25px;
    border-radius: 12px;
  }
  
  .parallax-slider_component {
    padding: 30px 15px;
    border-width: 6px;
  }
}

@media (max-width: 480px) {
  .parallax-slider_slide {
    width: 240px;
    height: 360px;
    margin-right: 20px;
    border-radius: 10px;
  }
  
  .parallax-slider_component {
    padding: 25px 10px;
    border-width: 4px;
  }
}

.text-size-huge {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.text-size-small {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #cccccc;
  opacity: 0.8;
}

.u-italic {
  font-style: italic;
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.gallery-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1DB954, #ffffff, #1DB954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

/* About Content Row */
.about-content-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 25px;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* About Cards Container - 3 Media Sliders */
.about-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.about-cards-container .one-records-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 450px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.about-cards-container .media-slider {
  max-width: 450px;
  min-height: 450px;
}

/* Hide navigation controls for first two sliders */
.about-cards-container .one-records-media:nth-child(1) .slider-prev,
.about-cards-container .one-records-media:nth-child(1) .slider-next,
.about-cards-container .one-records-media:nth-child(1) .slider-indicators,
.about-cards-container .one-records-media:nth-child(2) .slider-prev,
.about-cards-container .one-records-media:nth-child(2) .slider-next,
.about-cards-container .one-records-media:nth-child(2) .slider-indicators {
  display: none !important;
}

/* Text content styling for first two sliders */
.about-cards-container .media-slider.text-content {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(29, 185, 84, 0.05) 100%);
  border: 2px solid rgba(29, 185, 84, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.about-cards-container .text-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about-cards-container .text-slide h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #1DB954;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.about-cards-container .text-slide p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1.1rem);
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  max-width: 100%;
}

/* Image with text overlay styling */
.about-cards-container .media-slider.image-with-text {
  position: relative;
}

.about-cards-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(29, 185, 84, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  text-align: center;
  z-index: 3;
  border-radius: 20px;
}

.about-cards-container .image-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #1DB954;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-cards-container .image-overlay p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.95rem, 1.9vw, 1.1rem);
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  max-width: 100%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Remove About Text styles - no longer needed */

/* Mobile responsive styles for about section */
@media (max-width: 1024px) {
  .about-content-row {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 95%;
    padding: 0 15px;
  }
  
  .about-cards-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .about-cards-container .media-slider {
    max-width: 400px;
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .about-content-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    padding: 0 10px;
  }
  
  .about-cards-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .about-cards-container .one-records-media {
    margin: 0 auto;
    max-width: 400px;
    padding: 30px;
  }
  
  .about-cards-container .media-slider {
    max-width: 100%;
    min-height: 350px;
    border-radius: 16px;
  }
  
  .about-cards-container .media-slider.text-content {
    padding: 30px 20px;
    min-height: 280px;
  }
  
  .about-cards-container .image-overlay {
    padding: 30px 20px;
  }
  
  .about-cards-container .image-overlay h3 {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    margin: 0 0 15px 0;
  }
  
  .about-cards-container .image-overlay p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
  }
  
  .about-cards-container .text-slide h3 {
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  }
  
  .about-cards-container .text-slide p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .about-content-row {
    gap: 25px;
    padding: 0 5px;
  }
  
  .about-cards-container {
    gap: 8px;
  }
  
  .about-cards-container .one-records-media {
    max-width: 380px;
    margin-bottom: -170px;
    padding: 35px;
  }
  
  .about-cards-container .media-slider {
    min-height: 300px;
    border-radius: 12px;
  }
  
  .about-cards-container .media-slider.text-content {
    padding: 35px 25px;
    min-height: 320px;
  }
  
  .about-cards-container .image-overlay {
    padding: 35px 25px;
  }
  
  .about-cards-container .image-overlay h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    margin: 0 0 12px 0;
  }
  
  .about-cards-container .image-overlay p {
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    line-height: 1.4;
  }
  
  .about-cards-container .text-slide {
    gap: 15px;
  }
  
  .about-cards-container .text-slide h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  }
  
  .about-cards-container .text-slide p {
    font-size: clamp(0.85rem, 1.7vw, 0.95rem);
    line-height: 1.4;
  }
}

/* What We Do Integrated */
.what-we-do-integrated {
  margin: 80px 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Mobile responsive for What We Do section */
@media (max-width: 1024px) {
  .what-we-do-integrated {
    padding: 0 30px;
    margin: 60px 0;
  }
}

@media (max-width: 768px) {
  .what-we-do-integrated {
    margin: 60px 0;
    padding: 0 20px;
    gap: 50px;
  }
  
  .what-we-do-title-section {
    margin-bottom: 40px;
  }
  
  .what-we-do-main-title {
    font-size: clamp(1.6rem, 3.2vw, 2rem);
  }
}

@media (max-width: 480px) {
  .what-we-do-integrated {
    margin: 50px 0;
    padding: 0 15px;
    gap: 40px;
  }
  
  .what-we-do-title-section {
    margin-bottom: 30px;
  }
  
  .what-we-do-main-title {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  }
}

.what-we-do-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  padding: 0;
  position: relative;
  overflow: visible;
  text-align: center;
}



.what-we-do-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #1DB954;
  margin: 0;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.what-we-do-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2.1vw, 1.15rem);
  line-height: 1.7;
  color: #f0f0f0;
  margin: 0;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-do-integrated {
    margin: 60px 0;
    padding: 0 15px;
  }
  
  .what-we-do-card {
    padding: 0;
    gap: 20px;
  }
  
  .what-we-do-title {
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  }
  
  .what-we-do-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
  }
}

/* What We Do Title Section */
.what-we-do-title-section {
  text-align: center;
}

.what-we-do-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #1DB954;
  margin: 0;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

