:root {
  --dark-bg: #121212;
  --dark-secondary: #1e1e1e;
  --dark-tertiary: #242424;
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.3);
  --gold-dark: #d4af37;
  --text: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

html, body {
  background-color: var(--dark-bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Diagonal Sections */
.diagonal-section {
  position: relative;
  padding: 100px 0;
  margin-top: 60px;
  overflow: hidden;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-secondary);
  z-index: -1;
  transform: skewY(-6deg);
  transform-origin: top left;
}

.diagonal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.diagonal-text {
  flex: 1 1 300px;
  max-width: 600px;
}

.diagonal-image {
  flex: 1 1 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-tertiary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: tilt 5s infinite alternate ease-in-out;
  object-fit: cover;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.section-title .highlight {
  color: var(--gold);
  position: relative;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { color: var(--gold); }
  50% { color: var(--gold-dark); }
  100% { color: var(--gold); }
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: var(--gold-glow);
  left: 0;
  bottom: 0;
  transform: translateY(5px);
  z-index: -1;
  opacity: 0.4;
  animation: wave 3s infinite ease-in-out;
}

@keyframes wave {
  0% { transform: translateY(5px) scaleX(1); }
  50% { transform: translateY(5px) scaleX(1.1); }
  100% { transform: translateY(5px) scaleX(1); }
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

@keyframes tilt {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(2deg); }
}

/* Values Section */
.values-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.values-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Expertise Section */
.expertise-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--dark-secondary);
}

.expertise-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* .expertise-bg-line {
  position: absolute;
  height: 1px;
  background: var(--gold);
  opacity: 0.1;
  width: 100%;
  transform-origin: left;
}

.expertise-glow {
  position: absolute;
  width: 80%;
  height: 50%;
  top: 25%;
  left: 10%;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(50px);
  z-index: 0;
  animation: expertise-pulse 12s infinite alternate ease-in-out;
}
 */
@keyframes expertise-pulse {
  0% { opacity: 0.1; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.3; transform: scale(1.1) translate(2%, -2%); }
  100% { opacity: 0.1; transform: scale(1) translate(0, 0); }
}

.expertise-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.expertise-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 40px;
}

.expertise-title .highlight {
  animation: text-shine 3s infinite linear;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@keyframes text-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.expertise-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.expertise-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 2/1;
  background: var(--dark-tertiary);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Global Presence Section */
.global-section {
  padding: 100px 0;
  position: relative;
}

/* Location Cards */
.location-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.location-card {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  background: linear-gradient(125deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
  border-radius: 16px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--gold-glow), transparent 70%);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.location-card:hover::before {
  opacity: 0.2;
}

.location-title {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 25px;
  position: relative;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  opacity: 0.7;
  transition: width 0.3s ease;
}

.location-card:hover .location-title::after {
  width: 100px;
}

.location-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  background: var(--dark-tertiary);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.location-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotate-in.active {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Floating Elements */
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}

.global-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .diagonal-content {
    gap: 30px;
  }
  
  .diagonal-image {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .diagonal-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .diagonal-text {
    max-width: 100%;
    text-align: center;
    order: 1;
  }
  
  .diagonal-image {
    order: 2;
    width: 100%;
    max-width: 500px;
    height: 300px;
  }
  
  .section-title {
    margin-top: 50px;
    margin-left: 0;
    text-align: center;
    width: 100%;
    display: block;
  }
  
  .expertise-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .diagonal-section,
  .values-section,
  .expertise-section,
  .global-section {
    padding: 80px 0;
  }
  
  .diagonal-text {
    padding: 0px 10px;
  }
  
  .diagonal-image {
    height: 250px;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .location-cards {
    gap: 20px;
  }
  
  .location-card {
    min-width: 260px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .diagonal-section,
  .values-section,
  .expertise-section,
  .global-section {
    padding: 60px 0;
  }
  
  .diagonal-image {
    height: 200px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .expertise-title {
    font-size: 1.8rem;
  }
  
  .expertise-text {
    font-size: 1rem;
  }
  
  .location-card {
    padding: 15px;
  }
  
  .location-title {
    font-size: 1.4rem;
  }
}

@keyframes floating { 
  0% { transform: translate(0, 0); } 
  100% { transform: translate(10px, 10px); }
}\n\n/* About page components (moved from inline <style> blocks) */\n\n/* first.php */\n/* Ensure no horizontal scrolling on any device */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
  }

  .meticulis-about {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .meticulis-about__heading {
    width: 100%;
    position: relative;
    margin-top: 40px;
    padding: 0 40px;
    padding-bottom: 60px;
    background-image: linear-gradient(to bottom, #000000 0%, #121212 100%);
    box-sizing: border-box;
    overflow: hidden; /* Add overflow hidden here */
  }

  .meticulis-about__content {
    max-width: 1110px;
    min-height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .meticulis-about__text {
    z-index: 1;
    color: #ffffff;
    background-color: rgba(18, 18, 18, 0.7);
    padding: 40px;
    max-width: 620px;
    margin-top: 160px;
    width: 100%;
    backdrop-filter: blur(8px);
    animation: meticulis-text 0.8s 0.6s ease backwards;
    position: relative;
    box-sizing: border-box;
  }

  .meticulis-about__text:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #d4af37;
    top: 0;
    left: 0;
    animation: meticulis-line 0.8s 0.6s ease backwards;
  }

  @keyframes meticulis-line {
    0% {
      right: 0;
      width: 100%;
      opacity: 0;
    }
  }

  @keyframes meticulis-text {
    0% {
      opacity: 0;
      transform: translateX(200px);
    }
  }

  .meticulis-about__preTitle {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #d4af37;
  }

  .meticulis-about__title {
    text-transform: uppercase;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-size: 40px;
    color: #ffffff;
  }

  .meticulis-about__description {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
    color: #e0e0e0;
    word-wrap: break-word;
  }

  .meticulis-about__image {
    position: absolute;
    right: 0;
    max-width: 600px;
    width: 60%;
    height: 600px;
    transform: translateY(100px);
    overflow: hidden;
    animation: meticulis-image 0.6s 0.2s ease backwards;
    /* Make sure image doesn't overflow container */
    max-right: 100%;
  }

  @keyframes meticulis-image {
    0% {
      opacity: 0;
      transform: translateY(200px);
    }
  }

  .meticulis-about__image:before, .meticulis-about__image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 100%;
    background-image: linear-gradient(to top, #121212 0%, #1e1e1e 100%);
    opacity: 1;
    left: 0;
  }

  .meticulis-about__image:before {
    animation: meticulis-imageBefore 1s 0.2s ease backwards;
  }

  @keyframes meticulis-imageBefore {
    0% {
      height: 100%;
      top: 0;
    }
  }

  .meticulis-about__image:after {
    background-image: linear-gradient(to top, #121212 0%, #1e1e1e 100%);
    height: 100%;
    top: 0;
    opacity: 0.2;
  }

  .meticulis-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .meticulis-about__cta {
    padding: 16px 32px;
    color: #d4af37;
    background-color: transparent;
    border: 1px solid #d4af37;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 32px;
    cursor: pointer;
    box-shadow: inset 0px 0px 0px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
  }

  .meticulis-about__cta:hover {
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    box-shadow: inset 0px -80px 0px #d4af37 !important;
    transform: translateY(-5px) !important;
    color: #121212 !important;
  }

  /* Fix for wider screens (laptop view) */
  @media screen and (min-width: 1200px) {
    .meticulis-about__content {
      overflow: visible;
      position: relative;
    }
    
    .meticulis-about__image {
      right: 0;
      width: 60%;
      max-width: 600px;
    }
  }

  /* Responsive styles */
  @media screen and (max-width: 1199px) {
    .meticulis-about__image {
      width: 50%;
      right: 0;
    }
  }

  @media screen and (max-width: 992px) {
    .meticulis-about__content {
      flex-direction: column;
      min-height: auto;
      overflow: hidden;
    }
    
    .meticulis-about__text {
      margin-top: 100px;
      width: 100%;
      max-width: 100%;
    }
    
    .meticulis-about__image {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: 400px;
      transform: translateY(0);
      margin-top: 40px;
      right: auto;
    }
  }

  @media screen and (max-width: 768px) {
    .meticulis-about__heading {
      padding: 0 20px;
    }
    
    .meticulis-about__text {
      padding: 20px;
      margin-top: 80px;
    }
    
    .meticulis-about__title {
      margin-bottom: 16px;
      font-size: 28px;
    }
    
    .meticulis-about__description {
      font-size: 14px;
      line-height: 24px;
    }
    
    .meticulis-about__image {
      height: 350px;
    }
    
    .meticulis-about__cta {
      padding: 12px 24px;
      margin-top: 20px;
      font-size: 14px;
    }
  }

  @media screen and (max-width: 480px) {
    .meticulis-about__heading {
      padding: 0 15px;
    }
    
    .meticulis-about__text {
      margin-top: 60px;
      padding: 15px;
    }
    
    .meticulis-about__title {
      font-size: 24px;
    }
    
    .meticulis-about__image {
      height: 300px;
    }
  }
  
  /* Added extra breakpoint for smaller devices */
  @media screen and (max-width: 320px) {
    .meticulis-about__heading {
      padding: 0 10px;
    }
    
    .meticulis-about__text {
      padding: 10px;
      margin-top: 40px;
    }
    
    .meticulis-about__title {
      font-size: 20px;
    }
    
    .meticulis-about__preTitle {
      font-size: 12px;
    }
    
    .meticulis-about__image {
      height: 250px;
    }
    
    .meticulis-about__cta {
      padding: 10px 20px;
      font-size: 12px;
    }
  }\n\n/* slider.php */\n/* Enhanced Slider Styles */
    .slider__wrapper {
      max-width: 1300px;
      width: 100%;
      margin: 30px auto;
      position: relative;
      overflow: hidden;
      padding: 30px 0;
    }

    .slider {
      display: flex;
      transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
      padding: 0 60px;
      box-sizing: border-box;
    }

    .slider__content {
      flex: 0 0 calc(100% - 40px);
      max-width: 1000px;
      margin-right: 20px;
      background: #323131;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      padding: 20px;
      min-height: 360px;
      color: #fff;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform-origin: center;
      position: relative;
      cursor: pointer;
      opacity: 0.7;
      overflow: hidden;
    }

    .slider__content:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, #ffd700, transparent);
      transform: scaleX(0);
      transition: transform 0.6s ease-out;
    }

    .slider__content:hover {
      transform: translateY(-7px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      opacity: 0.9;
    }
    
    .slider__content:hover:before {
      transform: scaleX(1);
    }
    
    .slider__content.active {
      transform: scale(1.05);
      z-index: 10;
      background: #3a3939;
      box-shadow: 0 15px 35px rgba(0,0,0,0.4), 
                  0 0 25px rgba(255, 215, 0, 0.3);
      opacity: 1;
    }
    
    .slider__content.active:before {
      transform: scaleX(1);
      background: linear-gradient(90deg, transparent, #ffd700 70%, transparent);
    }

    .slider__text span {
      font-size: 28px;
      font-weight: bold;
      color: #ffd700;
      display: block;
      margin-bottom: 5px;
      transform: translateY(5px);
      opacity: 0;
      animation: fadeInDown 0.5s 0.2s forwards;
    }

    .slider__text h3 {
      margin: 10px 0 15px;
      font-size: 20px;
      color: #fff;
      transform: translateY(10px);
      opacity: 0;
      animation: fadeInDown 0.5s 0.4s forwards;
    }

    .slider__text p {
      font-size: 15px;
      line-height: 1.5;
      transform: translateY(15px);
      opacity: 0;
      animation: fadeInDown 0.5s 0.6s forwards;
    }

    .slider__image {
      margin: 0;
      overflow: hidden;
      border-radius: 10px;
      margin-top: 15px;
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.6s 0.7s forwards;
      position: relative;
    }
    
    .slider__image:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .slider__content:hover .slider__image:after,
    .slider__content.active .slider__image:after {
      opacity: 1;
    }
    
    .slider__image img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
      height: 160px;
      object-fit: cover;
      filter: brightness(0.9);
    }
    
    .slider__content:hover .slider__image img {
      transform: scale(1.1) rotate(1deg);
      filter: brightness(1.1);
    }
    
    .slider__content.active .slider__image img {
      transform: scale(1.15);
      filter: brightness(1.2);
    }

    /* Arrow Buttons */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 215, 0, 0.15);
      border: none;
      color: #fff;
      font-size: 24px;
      height: 45px;
      width: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      transition: all 0.4s ease;
      opacity: 0.7;
    }

    .arrow:hover {
      background-color: rgba(255, 215, 0, 0.4);
      transform: translateY(-50%) scale(1.1);
      opacity: 1;
    }

    .arrow:active {
      transform: translateY(-50%) scale(0.95);
    }

    .arrow-left {
      left: 10px;
    }

    .arrow-right {
      right: 10px;
    }
    
    /* Indicators */
    .slider__indicators {
      display: flex;
      justify-content: center;
      margin-top: 60px;
      gap: 8px;
    }
    
    .slider__indicator {
      width: 8px;
      height: 8px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }
    
    .slider__indicator:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 215, 0, 0.5);
      transform: scale(0);
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
    
    .slider__indicator:hover:before {
      transform: scale(1);
    }
    
    .slider__indicator.active {
      background-color: #ffd700;
      width: 22px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Reset animations when slide becomes active */
    .slider__content.active .slider__text span,
    .slider__content.active .slider__text h3,
    .slider__content.active .slider__text p,
    .slider__content.active .slider__image {
      animation: none;
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Add animation delay when slide becomes active */
    .slider__content.active .slider__text span {
      animation: pulse 2s infinite alternate;
    }
    
    @keyframes pulse {
      0% {
        opacity: 0.9;
      }
      100% {
        opacity: 1;
        transform: translateY(-2px);
      }
    }

    /* Responsive Styles */
    /* Mobile (320px minimum) */
    @media (min-width: 320px) and (max-width: 575px) {
      .slider__wrapper {
        padding: 20px 0;
      }
      
      .slider {
        padding: 0 40px;
      }
      
      .slider__content {
        flex: 0 0 calc(100% - 20px);
        min-height: 320px;
        padding: 15px;
        margin-right: 10px;
      }
      
      .slider__text span {
        font-size: 24px;
      }
      
      .slider__text h3 {
        font-size: 18px;
        margin: 8px 0 10px;
      }
      
      .slider__text p {
        font-size: 14px;
      }
      
      .slider__image img {
        height: 130px;
      }
      
      .arrow {
        font-size: 20px;
        height: 35px;
        width: 35px;
      }
      
      .slider__indicator {
        width: 6px;
        height: 6px;
      }
      
      .slider__indicator.active {
        width: 15px;
      }
      
      .slider__content.active {
        transform: scale(1.03);
      }
    }
    
    /* Tablet */
    @media (min-width: 576px) and (max-width: 991px) {
      .slider__wrapper {
        max-width: 800px;
      }
      
      .slider__content {
        flex: 0 0 calc(50% - 30px);
        max-width: 250px;
      }
    }
    
    /* Desktop */
    @media (min-width: 992px) {
      .slider__content {
        flex: 0 0 calc(33.333% - 40px);
        max-width: 300px;
      }
      
      .slider__content.active {
        transform: scale(1.08);
      }
    }
    
    /* Large Desktop */
    @media (min-width: 1200px) {
      .slider__content {
        flex: 0 0 calc(25% - 40px);
        max-width: 300px;
      }
    }\n
