/*hero section style*/

/* Video Container Styles */
  .hero-video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  
  .hero-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .hero-video-container::before {
    content: "";
    display: block;
     
  }

  /* Image Container Styles */
  /*.hero-image-container {*/
  /*  position: relative;*/
  /*  overflow: hidden;*/
  /*  width: 70%;*/
  /*  border-radius: 12px;*/
  /*  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);*/
  /*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
  /*  margin-bottom: 80px;*/
  /*  background: rgba(255, 255, 255, 0.1);*/
  /*  backdrop-filter: blur(5px);*/
  /*  padding: 10px;*/
  /*  border: 1px solid rgba(255, 255, 255, 0.2);*/
  /*}*/
  
  /*.hero-image-container:hover {*/
  /*  transform: translateY(-5px) scale(1.02);*/
  /*  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
  /*}*/
  
  /*.hero-image-container::before {*/
  /*  content: "";*/
  /*  position: absolute;*/
  /*  top: -50%;*/
  /*  left: -50%;*/
  /*  width: 200%;*/
  /*  height: 200%;*/
  /*  background: linear-gradient(*/
  /*    to bottom right,*/
  /*    rgba(255, 255, 255, 0) 0%,*/
  /*    rgba(255, 255, 255, 0.1) 50%,*/
  /*    rgba(255, 255, 255, 0) 100%*/
  /*  );*/
  /*  transform: rotate(30deg);*/
  /*  animation: shine 3s infinite;*/
  /*  z-index: 1;*/
  /*}*/
  
  .animated-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  }
  
  /* Floating animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Shine effect animation */
  @keyframes shine {
    0% {
      top: -50%;
      left: -50%;
    }
    100% {
      top: 150%;
      left: 150%;
    }
  }
  
    
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  /* CTA Button and Customer Count Styles */
  .hero-content .cta-container {
    margin-bottom: 30px;
  }
  
  .hero-content .btn-white {
    background-color: white;
    color: #8338ec;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .hero-content .btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-content .customer-count {
    position: relative;
    padding-left: 20px;
  }
  
  .hero-content .customer-count:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  /* User Stack Styles */
  .user-stack {
    position: relative;
  }
  
  .user-images {
    display: flex;
    align-items: center;
  }
  
  .user-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #8338ec;
    background-color: #fff;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  .user-image:nth-child(1) {
    z-index: 3;
    /*transform: translateY(-5px);*/
  }
  
  .user-image:nth-child(2) {
    z-index: 2;
    margin-left: -15px;
  }
  
  .user-image:nth-child(3) {
    z-index: 1;
    margin-left: -15px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero-video-container, .hero-image-container {
      max-width: 90%;
      margin: 0 auto 30px auto;
    }
    
    .hero-section {
      padding-top: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-video-container, .hero-image-container {
      max-width: 100%;
      margin-bottom: 30px;
    }
    
    .animated-image {
      animation: float 4s ease-in-out infinite;
    }
  }
  
  @media (max-width: 576px) {
    .cta-container {
      flex-direction: column;
      align-items: center;
    }
    
    .user-stack {
      margin-bottom: 15px;
    }
    
    .customer-count {
      margin-top: 5px;
      padding-left: 0;
      padding-top: 15px;
      text-align: center;
    }
    
    .customer-count:before {
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      height: 1px;
      width: 40px;
    }
  }
  
  /*end hero section sytyle */
  
  
  /*logo slider style*/
    .logo-slider .slick-slide img {
      height: 50px;
      margin: 0 20px;
    }
    .logo-slider {
      padding: 20px 0;
    }
    .debug-message {
      text-align: center;
      padding: 20px;
      color: #333;
    }
    /*end lgo slider*/
    
    
    /*floating video */
     .floating-shorts {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 170px; /* Initial width */
      z-index: 1000; /* Ensure it stays on top */
      border-radius: 8px;
      overflow: hidden;
      transition: width 0.3s ease, height 0.3s ease; /* Smooth transition for size change */
    }
    .floating-shorts.expanded {
      width: 300px; /* Expanded width */
      height: 460px; /* Adjusted height for expanded state */
    }
    .floating-shorts video {
      width: 100%;
      height: 276px; /* Initial height */
      border-radius: 8px;
      object-fit: cover;
      transition: height 0.3s ease; /* Smooth transition for video height */
    }
    .floating-shorts.expanded video {
      height: 460px; /* Expanded video height */
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #ff0000;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      z-index: 1001; /* Ensure the button is clickable over the video */
    }
    .close-btn:hover {
      background-color: #cc0000;
    }

    /*end floating video */
    
    
    /*floating whatappicon*/
      .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000; /* Ensure it stays on top */
    }
    .whatsapp-float img {
      width: 60px; /* Adjust size as needed */
      height: 60px;
      transition: transform 0.3s ease; /* Smooth hover effect */
    }
    .whatsapp-float img:hover {
      transform: scale(1.1); /* Slight zoom on hover */
    }
    /*end floating whatsapp icon */
    
    
    
    /*watch and shop */
     .watch-and-shop {
      background-color: #1a2a44; /* Dark background color */
      padding: 50px 0;
    }
    .watch-and-shop h2 {
      text-align: center;
      color: #fff;
      font-weight: bold;
      margin-bottom: 40px;
      text-transform: uppercase;
    }
    .watch-and-shop .slick-slide {
      padding: 0 15px; /* Space between cards */
    }
    .watch-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      position: relative;
    }
    .video-container {
      position: relative;
      width: 100%;
      height: 410px; /* Adjust based on your videos */
      overflow: hidden;
    }
    .video-container iframe {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure video fills the container */
    }
    .overlay-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: center;
      background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
      color: #fff;
      padding: 20px;
    }
    .overlay-content h3 {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .overlay-content p.title {
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
    .overlay-content .btn {
      background-color: #fff;
      color: #000;
      border: 2px solid #000;
      border-radius: 20px;
      padding: 5px 20px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .overlay-content .btn:hover {
      background-color: #000;
      color: #fff;
    }
    .card-wrapper {
      margin-bottom: 20px; /* Space for the description below */
    }
    .description {
      padding: 15px 0;
      font-size: 0.9rem;
      color: #fff; /* White text to match the background */
      text-align: center; /* Center the description below the card */
    }
    .description a {
      color: #ff6f61; /* Matching the gradient color from the original design */
      text-decoration: none;
      font-weight: bold;
    }
    .description a:hover {
      text-decoration: underline;
    }
    /* Slick Slider Arrow Styling */
    .slick-prev, .slick-next {
      font-size: 0;
      line-height: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background-color: #fff;
      border-radius: 50%;
      border: none;
      z-index: 1;
    }
    .slick-prev:before, .slick-next:before {
      font-family: 'slick';
      font-size: 20px;
      line-height: 1;
      color: #000;
    }
    .slick-prev {
      left: -50px;
    }
    .slick-next {
      right: -50px;
    }
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .watch-and-shop .slick-slide {
        padding: 0 10px;
      }
      .slick-prev {
        left: -20px;
      }
      .slick-next {
        right: -20px;
      }
     
    }
    .watch-slider .slick-next{
        right:4px !important;
        background:#8338ec;
        color:white;
    }
    
    .watch-slider .slick-prev{
        left:4px !important;
         background:#8338ec;
         color:white;
    }
    .slick-next:before{
        color:white !important;
    }
    .slick-prev:before{
        color:white !important;
    }
    /*end watch and shop*/
    
    
    /*smart card feature*/
      .smart-card-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: relative;
}

.smart-card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238338ec' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.smart-card-section .heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.smart-card-section .heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #8338ec, transparent);
    border-radius: 5px;
}

.smart-card-section .heading span {
    color: #8338ec;
    position: relative;
}

.card-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-annotations {
    flex: 1;
    max-width: 350px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.left-annotations .feature-item {
    justify-content: flex-end;
    text-align: right;
}

.right-annotations .feature-item {
    justify-content: flex-start;
    text-align: left;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8338ec;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(131, 56, 236, 0.3);
    z-index: 2;
    flex-shrink: 0;
}

.left-annotations .feature-icon {
    order: 2;
    margin-left: 15px;
}

.right-annotations .feature-icon {
    order: 1;
    margin-right: 15px;
}

.feature-content {
    flex: 1;
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #8338ec;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.connector {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8338ec, rgba(131, 56, 236, 0.3));
    z-index: 1;
}

.left-annotations .connector {
    right: 40px;
}

.right-annotations .connector {
    left: 40px;
}

.card-container {
    position: relative;
    width: 320px;
    height: 200px;
    perspective: 1000px;
    margin: 0 30px;
}

.smart-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
    border-radius: 16px;
    background: linear-gradient(135deg, #8338ec, #5e17eb);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 20px rgba(255, 255, 255, 0.2) inset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    }
}

.card-container:hover .smart-card {
    animation-play-state: paused;
    transform: rotateY(10deg) rotateX(5deg);
}

.card-chip {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffdc5e, #ffc107);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-chip::before, .card-chip::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
}

.card-chip::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.card-chip::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.card-wave {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(240)'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0.4'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='300' height='250' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.qr-code {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L100,0 L100,100 L0,100 Z' fill='none' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M30,30 L30,10 L10,10 L10,30 L30,30 Z' fill='%23000'/%3E%3Cpath d='M70,30 L70,10 L50,10 L50,30 L70,30 Z' fill='%23000'/%3E%3Cpath d='M30,70 L30,50 L10,50 L10,70 L30,70 Z' fill='%23000'/%3E%3Cpath d='M70,70 L70,50 L50,50 L50,70 L70,70 Z' fill='%23000'/%3E%3Cpath d='M90,10 L90,30 L80,30 L80,20 L70,20 L70,30 L80,30 L80,40 L90,40 L90,90 L80,90 L80,70 L70,70 L70,90 L40,90 L40,70 L30,70 L30,90 L10,90 L10,40 L20,40 L20,50 L30,50 L30,40 L40,40 L40,30 L30,30 L30,40 L20,40 L20,30 L10,30 L10,10 L40,10 L40,20 L50,20 L50,10 L90,10 Z' fill='%23000'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-top: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .card-showcase {
        max-width: 900px;
    }
    
    .feature-annotations {
        max-width: 300px;
    }
    
    .feature-content h5 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .smart-card-section .heading {
        font-size: 2.5rem;
    }
    
    .card-showcase {
        flex-direction: column;
    }
    
    .feature-annotations {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        order: 2;
    }
    
    .left-annotations, .right-annotations {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        width: 45%;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .left-annotations .feature-item, 
    .right-annotations .feature-item {
        justify-content: flex-start;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 0 15px 0;
        order: 1;
    }
    
    .connector {
        display: none;
    }
    
    .card-container {
        order: 1;
        margin: 0 0 40px 0;
    }
}

@media (max-width: 768px) {
    .smart-card-section {
        padding: 60px 0;
    }
    
    .smart-card-section .heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .feature-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .smart-card-section .heading {
        font-size: 1.8rem;
    }
    
    .card-container {
        width: 280px;
        height: 175px;
    }
    
    .card-chip {
        width: 35px;
        height: 25px;
        top: 20px;
        left: 20px;
    }
    
    .card-logo {
        top: 20px;
        right: 20px;
        font-size: 0.9rem;
    }
    
    .qr-code {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .feature-content h5 {
        font-size: 0.85rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
}
    /*end smart card feature */
    
    
    /*how nfc work */
       .container4{
             padding: 20px;
        }
        .container {
            /*text-align: center;*/
            position: relative;
           
        }

        .heading1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 2rem;
        }

        .subheading1 {
            font-size: 1.2rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
        }

       

        .phone-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .steps {
            position: relative;
            text-align: left;
            padding-left: 20px;
        }

        .step {
            margin-bottom: 2rem;
            position: relative;
            display: flow;
            align-items: flex-start;
        }

       

        .step-content {
            text-align: start;
        }

        .step-content h5 {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .step-content p {
            font-size: 0.9rem;
            color: #555;
        }


        @media (max-width: 767px) {
            .steps {
                padding-left: 0;
                margin-top: 20px;
            }

           
        }