* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --selection-color: #3685b6;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}

body {
  background-color: #000000;
  overflow-x: hidden;
}

.design-hero{
  background-image: url(../images/Design-Banner.jpg) !important;
  background-size: cover !important;
  background-position: center !important;
}

#design-subbanner {
  width: 650px !important;
  height: 530px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
#design-subbanner > img {
  width: 100%;
  border: 1px solid rgb(0, 255, 8) !important;
}
#desgin-img-section>img{
  width: 100%;
  height: 450px;
  border: 1px solid blue !important;
}
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.track {
  display: inline-block;
  white-space: nowrap;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.marquee-1 .track {
  animation-name: scroll-left;
}

.marquee-2 .track {
  animation-name: scroll-right;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.track img {
  height: 200px;
  margin: 0 10px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee:hover .track,
.marquee .track:hover {
  animation-play-state: paused;
}

.track img:hover {
  transform: scale(1.05);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.design-works {
 padding: clamp(12px, 3vw, 20px) clamp(32px, 8vw, 100px);
  margin-bottom: 100px;
}

.desgin-eleivatecards>h4{
  color: white !important;
}

.desgin-eleivatecards>p{
  font-size: 0.8rem !important;
}

.desgin-eleivatecards>a{
  text-decoration: none;
  font-size: 0.8rem !important;
  color: white !important;
}

.desgin-highlight{
  color: var(--primary-color);
  font-size: 20px;
  margin: 20px 0;
}

#backgroundtrans:hover{
  background: var(--linear-gradient) !important;
  transition: background 0.6s ease;
  transform: unset;
}

#backgroundtrans:hover p {
  color: white;
}

.desgin-eleivatecards{
  width: clamp(350px, 50vw, 600px);
}

.highlight{
  color: var(--primary-color);
  font-size: 20px;
  margin: 20px 0;
}



@media (max-width: 426px) {
  .design-hero{
    /* background-color: #586ac6; */
    padding-top: 15rem !important;
  }
  .highlight{
    margin: unset;
  }

  /* .desgin-eleivatecards{
    width: unset;
  } */

  .design-works{
    /* padding: 10px 20px; */
    text-align: center;
  }
  
  .ad-performance-section{
    text-align: center;
  }
  .why-choose-us-text>h1{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  .design-works{
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .ad-performance-section{
    text-align: center;
  }

  .card{
    align-items: center;
  }

  .our-works{
    text-align: center;
  }



}