body {
  margin: 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.vehicle-branding-page {
  padding: 40px;
}
.brand-container{
      margin-top: 120px !important;
}

.branding-section {
  
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-top: 30px;
}
.brand-container {
    display: flex;
    max-width: 1000px;
    margin: auto;
    padding: 0px 10px;

}
.vehicle-branding-offers-container{
    max-width: 1000px;
    margin: auto;
    padding: 0px 10px;
}
/* LEFT SIDE */
.branding-left {
  flex: 1;
  background: #ffffff;
  /* padding: 30px; */
  position: relative;
  text-align: center;
}

.branding-left video {
     width: 100%;
    height: 100%;
  /* margin-top: 40px; */
}

.branding-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.branding-tabs button {
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  background: #333;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.branding-tabs button.active {
  background: #FCD106;
  color: #000;
}

/* RIGHT SIDE */
.branding-right {
  flex: 1;
  background: linear-gradient(135deg, #2f2a2a, #3a3434);
  color: #fff;
      padding: 80px 50px;
  position: relative;
}

.branding-right h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 45px;
    font-weight: 500;
}

.branding-right h2 span {
  color: #FCD106;
}

.branding-right p {
  font-size: 14px;
  line-height: 31px;
  max-width: 400px;
  opacity: .85;
text-align: justify;
}

/* Bottom Controls */
.branding-controls {
  margin-top: 50px;
  display: flex;
  align-items: center;
      gap: 70px;
}

.arrows {
  display: flex;
  gap: 10px;
}

.arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arrow:hover {
  background: #FCD106;
  color: #000;
}

.barcode {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.barcode img{
    width: 100%;
    height: 30px;
    object-fit: contain;
}

.barcode span {
  font-size: 10px;
  letter-spacing: 3px;
}

/* Smooth transition base */
.branding-left img,
.branding-right h2,
.branding-right p {
  transition: all 0.4s ease;
}
.branding-tabs-web-view{
    display: block;
}
.branding-tabs-mobile-view{
    display: none;
}
.arrows-web-view{
    /* display: block; */
}
.arrows-mobile-view{
    display: none;
}
/* Hidden state */
.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.fade-right{
      opacity: 0;
      transform: translateX(20px);
}

/* Visible state */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}
/* Fade out video & title */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Slide out description */
.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.vehicle-branding-offers-section{
        margin-top: 60px;

}
.vehicle-branding-offers-head{
        margin-bottom: 30px;
}
.vehicle-branding-offers-head h2{
        font-size: 31px;
    line-height: 45px;
    font-weight: 500;
    margin: 0px;
}
.vehicle-branding-offers-body span{
    font-size: 14px !important;
    line-height: 33px ;
    font-weight: 600 !important;
}
.vehicle-branding-offers-body p{
    font-size: 14px;
    line-height: 33px;
    font-weight: 300;
    text-align: justify;
}

@media(max-width:991px){
  .brand-container{
      margin-top: 0px !important;
}
.branding-left video 
{
  height: 480px;
}

    .branding-right h2 {
    font-size: 26px;
}
.branding-right p {
    font-size: 13px;
}
.vehicle-branding-offers-head h2 {
    font-size: 25px;
    line-height: 38px;
}
.branding-tabs button {
    padding: 6px 11px;
    font-size: 11px;

}
.branding-section {
  margin-top: 0px;
}
}

@media(max-width:767px){
    .brand-container {
    display: block;
    }
    .branding-tabs-web-view , .arrows-web-view{
    display: none;
}
.branding-tabs-mobile-view{
    display: block;
            margin-bottom: 30px;
}
.arrows-mobile-view{
            display: flex;
}
}

@media(max-width:567px){
    .branding-right {
    padding: 50px 20px;

}

    .vehicle-branding-offers-head h2 {
        font-size: 22px;
        line-height: 34px;
    }
    .vehicle-branding-offers-body p , .vehicle-branding-offers-body span {
    font-size: 13px;
    line-height: 30px;
    }
}

@media(max-width:400px){
        .vehicle-branding-offers-head h2 {
        font-size: 20px;
    }
        .branding-tabs button {
        padding: 6px 7px;
        font-size: 10px;
    }

}