/* Reset */
* {
  margin: 0;
  padding: 0;
}

/* Gradient Background */
.tyc-hero-bg {
  width: 100%;
  height: 100%;
}

/* Blobs */
.tyc-blob {
  position: absolute;
  width: 600px;
  height: 400px;
  background: #d2ff52;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(100px);
  z-index: -1;
  animation: float 10s infinite ease-in-out;
}

.blob1 {
  top: 10%;
  left: -100px;
}

.blob2 {
  bottom: 0%;
  right: -120px;
}


.navbar_thankyou{
  margin-top: -15px;
  margin-bottom: -15px;
  border: none;
}


/* Hero Section */
.tyc-hero-wrapper {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  background-image: url('../images/thakyou_page_back.svg');
  padding: 80px 20px 80px;
  background-repeat: no-repeat;
  background-size: cover;
}

.tyc-hero-box {
  background: transparent;
  border: 1px solid #d8ff33;
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.tyc-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 20px;
  animation: bounceIn 1.2s ease;
}

.tyc-hero-subtext {
  font-size: 16px;
  color: #191919;
  margin-bottom: 50px;
}

.tyc-hero-button {
  background-color: #111;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.tyc-hero-button:hover {
  background-color: #333;
  transform: scale(1.03);
}

/* Brand Showcase */
.tyc-brand-showcase {
  padding: 60px 20px;
  text-align: center;
  background: #fdfdfd;
}

.tyc-brand-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tyc-brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tyc-brand-logos img {
  height: 40px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.tyc-brand-logos img:hover {
  filter: none;
}


.tyc-footer-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .tyc-hero-title {
    font-size: 32px;
  }
  .tyc-hero-subtext {
    font-size: 16px;
  }
  .tyc-brand-logos {
    gap: 20px;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}






/* Image slider 1st  */
/* .wrapper_work {
  display: flex;
  position: relative;
}

.wrapper_work i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper_work i:active {
  transform: translateY(-50%) scale(0.9);
}

.wrapper_work i:hover {
  background: #f2f2f2;
}

.wrapper_work i:first-child {
  left: -22px;
  display: none;
}

.wrapper_work i:last-child {
  right: -22px;
}

.wrapper_work .carousel_work {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel_work.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.carousel_work.dragging img {
  pointer-events: none;
}

.carousel_work img {
  height: 340px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(100% / 3);
}

.carousel_work img:first-child {
  margin-left: 0px;
}

@media screen and (max-width: 900px) {
  .carousel_work img {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 550px) {
  .carousel_work img {
    width: 100%;
  }
}







 */







.work_main{
  margin: 0px 0;
}


.work_main {
  font-size: 15px;
  padding-block: 8px;
  /* background: linear-gradient(135deg, #e8fc8d, #d6ff1e); */
  overflow: hidden;
  user-select: none;

  --gap: 60px;
  display: flex;
  gap: var(--gap);
}

.work_main ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);

  animation: scroll 20s linear infinite;
}

.work_main:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.work_main ul:first-child {
  /* background-color: yellow; */
}

.work_main ul:last-child {
  /* background-color: pink; */
}

.work_main .work_company,
.work_main .price {
  font-weight: 500;
}

.work_main .price {
  margin-inline: 4px;
  padding: 13px 0;
}

.work_main .work_plus .change,
.work_main .work_plus::before {
  color: #089981;
}

.work_main .work_minus .change,
.work_main .work_minus::before {
  color: #f23645;
}

.work_minus img{
  width: 500px;
  height: 300px;
  object-fit: cover;
}

.work_minus{
  display: flex;
  gap: 10px;
}

.work_plus img{
  width: 500px;
  height: 300px;
  object-fit: cover;
}

.work_plus{
  display: flex;
  gap: 10px;
}

@media (max-width: 768px){
  .work_main{
    margin: 30px 0;
  }
}



.work_main_2{
  margin-top: 30px;
}


.techstack-section_thy{
  margin: 30px 20px 60px 20px !important;
}