:root {
  --primary-color: #ecad29;
  --text-color: #FFFFFFDD;
}

.card-slider-section {
  margin: 0;
  background-color: #1a1a1a;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  height: 100vh;
  width: 100%;
  min-height: 100vh;
}

.card-slider-section .card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
}

.card-slider-section #btn {
  position: absolute;
  top: 690px;
  left: 16px;
  z-index: 99;
}

.card-slider-section .card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-color);
  padding-left: 16px;
}

.card-slider-section .content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

.card-slider-section .content-title-1,
.card-slider-section .content-title-2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

.card-slider-section .content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: var(--text-color);
}

.card-slider-section .details {
  z-index: 22;
  position: absolute;
  top: 240px;
  left: 60px;
}

.card-slider-section .details .logo-box {
  height: 100px;
  overflow: hidden;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: white;
  border-radius: 12px;
  padding: 0 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: fit-content;
}

.card-slider-section .details .logo-box .logo-image {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.card-slider-section .details .logo-box .logo-image:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}

.card-slider-section .details .title-1,
.card-slider-section .details .title-2 {
  font-weight: 600;
  font-size: 72px;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.card-slider-section .details .title-box-1,
.card-slider-section .details .title-box-2 {
  margin-top: 2px;
  height: 100px;
  overflow: hidden;
}

.card-slider-section .details > .desc {
  margin-top: 16px;
  width: 500px;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.card-slider-section .details > .cta {
  width: 500px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.card-slider-section .details > .cta > .bookmark {
  border: none;
  background-color: var(--primary-color);
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: white;
  display: grid;
  place-items: center;
}

.card-slider-section .details > .cta > .bookmark svg {
  width: 20px;
  height: 20px;
}

.card-slider-section .details > .cta > .discover {
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  height: 44px;
  border-radius: 99px;
  color: #ffffff;
  padding: 8px 32px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.card-slider-section .details > .cta > .discover:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  border-color: #ffffff;
  text-shadow: none;
  font-weight: 700;
}

.card-slider-section nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  font-weight: 500;
}

.card-slider-section nav svg {
  width: 20px;
  height: 20px;
}

.card-slider-section nav .svg-container {
  width: 20px;
  height: 20px;
}

.card-slider-section nav > div {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
}

.card-slider-section nav > div:first-child {
  gap: 10px;
}

.card-slider-section nav > div:last-child {
  gap: 24px;
}

.card-slider-section nav > div:last-child > .active {
  position: relative;
}

.card-slider-section nav > div:last-child > .active:after {
  bottom: -8px;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  height: 3px;
  border-radius: 99px;
  background-color: var(--primary-color);
}

.card-slider-section .indicator {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: var(--primary-color);
  display: none;
}

.card-slider-section .pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
}

.card-slider-section .pagination > .arrow {
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-slider-section .pagination > .arrow:hover {
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.card-slider-section .pagination > .arrow:hover svg {
  color: var(--primary-color);
  transform: scale(1.1);
}

.card-slider-section .pagination > .arrow:nth-child(2) {
  margin-left: 20px;
}

.card-slider-section .pagination > .arrow svg {
  width: 28px;
  height: 28px;
  stroke-width: 3;
  color: #ffffff;
  transition: all 0.3s ease;
}

.card-slider-section .pagination .progress-sub-container {
  margin-left: 24px;
  z-index: 60;
  width: 500px;
  height: 50px;
  display: flex;
  align-items: center;
  display: none;
}

.card-slider-section .pagination .progress-sub-container .progress-sub-background {
  width: 500px;
  height: 3px;
  background-color: #ffffff33;
}

.card-slider-section .pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
  height: 3px;
  background-color: var(--primary-color);
}

.card-slider-section .pagination .slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 60;
  position: relative;
  display: none;
}

.card-slider-section .pagination .slide-numbers .item {
  width: 50px;
  height: 50px;
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: bold;
}

.card-slider-section .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .card-slider-section {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .card-slider-section .details {
    top: 80px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    z-index: 50;
  }
  
  .card-slider-section .details .logo-box {
    height: 80px;
    margin-bottom: 16px;
    padding: 0 16px;
    border-radius: 10px;
    width: fit-content;
  }
  
  .card-slider-section .details .logo-box .logo-image {
    height: 60px;
    max-width: 200px;
  }
  
  .card-slider-section .card {
    border-radius: 12px;
    z-index: 10;
  }
  
  .card-slider-section .card-content {
    padding-left: 12px;
    padding-right: 12px;
    z-index: 20;
  }
  
  .card-slider-section .details .title-1,
  .card-slider-section .details .title-2 {
    font-size: 32px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  }
  
  .card-slider-section .details .title-box-1,
  .card-slider-section .details .title-box-2 {
    height: 40px;
  }
  
  .card-slider-section .details > .desc {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }
  
  .card-slider-section .details > .cta {
    width: 100%;
    margin-top: 16px;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  
  .card-slider-section .details > .cta > .discover {
    margin-left: 0;
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    height: 48px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }
  
  .card-slider-section .pagination {
    bottom: 30px;
    left: 0;
    right: 0;
    transform: none;
    top: auto;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    z-index: 60;
    padding: 0 20px;
  }
  
  .card-slider-section .pagination > .arrow {
    width: 50px;
    height: 50px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .card-slider-section .pagination > .arrow:nth-child(2) {
    margin-left: 0;
  }
  
  .card-slider-section .pagination .progress-sub-container {
    margin-left: 0;
    width: 200px;
    order: 3;
    display: none;
  }
  
  .card-slider-section .pagination .progress-sub-container .progress-sub-background {
    width: 200px;
  }
  
  .card-slider-section .pagination .slide-numbers {
    width: 40px;
    height: 40px;
    order: 2;
    display: none;
  }
  
  .card-slider-section .pagination .slide-numbers .item {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .card-slider-section .content-title-1,
  .card-slider-section .content-title-2 {
    font-size: 14px;
  }
  
  .card-slider-section .content-place {
    font-size: 10px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .card-slider-section .details {
    top: 60px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }
  
  .card-slider-section .details .logo-box {
    height: 70px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 8px;
    width: fit-content;
  }
  
  .card-slider-section .details .logo-box .logo-image {
    height: 50px;
    max-width: 160px;
  }
  
  .card-slider-section .details .title-1,
  .card-slider-section .details .title-2 {
    font-size: 28px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  }
  
  .card-slider-section .details .title-box-1,
  .card-slider-section .details .title-box-2 {
    height: 35px;
  }
  
  .card-slider-section .details > .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }
  
  .card-slider-section .details > .cta {
    margin-top: 14px;
    gap: 10px;
  }
  
  .card-slider-section .details > .cta > .discover {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    height: 44px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }
  
  .card-slider-section .pagination {
    bottom: 20px;
    padding: 0 16px;
  }
  
  .card-slider-section .pagination > .arrow {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  
  .card-slider-section .pagination .progress-sub-container {
    width: 150px;
    display: none;
  }
  
  .card-slider-section .pagination .progress-sub-container .progress-sub-background {
    width: 150px;
  }
}

/* Small Desktop Responsive Styles */
@media (max-width: 1100px) and (min-width: 769px) {
  .card-slider-section {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
  }

  .card-slider-section .details {
    top: 120px;
    left: 32px;
    right: 32px;
    width: calc(100% - 64px);
    z-index: 50;
  }

  .card-slider-section .details .logo-box {
    height: 70px;
    margin-bottom: 14px;
    padding: 0 14px;
    border-radius: 10px;
    width: fit-content;
  }

  .card-slider-section .details .logo-box .logo-image {
    height: 50px;
    max-width: 160px;
  }

  .card-slider-section .card {
    border-radius: 16px;
    z-index: 10;
  }

  .card-slider-section .card-content {
    padding-left: 16px;
    padding-right: 16px;
    z-index: 20;
  }

  .card-slider-section .details .title-1,
  .card-slider-section .details .title-2 {
    font-size: 40px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  }

  .card-slider-section .details .title-box-1,
  .card-slider-section .details .title-box-2 {
    height: 60px;
  }

  .card-slider-section .details > .desc {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }

  .card-slider-section .details > .cta {
    width: 100%;
    margin-top: 18px;
    flex-direction: row;
    gap: 14px;
    align-items: center;
  }

  .card-slider-section .details > .cta > .discover {
    margin-left: 0;
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }

  .card-slider-section .pagination {
    bottom: 40px;
    left: 0;
    right: 0;
    transform: none;
    top: auto;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    z-index: 60;
    padding: 0 32px;
  }

  .card-slider-section .pagination > .arrow {
    width: 48px;
    height: 48px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .card-slider-section .pagination > .arrow:nth-child(2) {
    margin-left: 0;
  }

  .card-slider-section .pagination .progress-sub-container {
    margin-left: 0;
    width: 250px;
    order: 3;
    display: none;
  }

  .card-slider-section .pagination .progress-sub-container .progress-sub-background {
    width: 250px;
  }

  .card-slider-section .pagination .slide-numbers {
    width: 40px;
    height: 40px;
    order: 2;
    display: none;
  }

  .card-slider-section .pagination .slide-numbers .item {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .card-slider-section .content-title-1,
  .card-slider-section .content-title-2 {
    font-size: 16px;
  }

  .card-slider-section .content-place {
    font-size: 11px;
  }
}