@font-face {
  font-family: Monstrat-400;
  src: url(./assets/fonts/montserrat-regular.ttf);
}
@font-face {
  font-family: Monstrat-500;
  src: url(./assets/fonts/montserrat-medium.ttf);
}
@font-face {
  font-family: Monstrat-600;
  src: url(./assets/fonts/montserrat-bold.ttf);
}
html{
  scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.container{
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  /* overflow-x: hidden; */
  box-sizing: border-box;
}
.mt{
  margin-top: 140px;
}
img{
  height: auto;
  max-width: 100%;
  display: block;
}
a{
  text-decoration: none;
  color: #000;
}
body,p{
  font-family: Monstrat-500;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #2D302F;
  letter-spacing: 0;
}
ul{
  list-style: none;
  padding: 0;
}

li{
  display: inline-block;
  margin-right: 20px;
}
.button{
  display: inline-block;
  background: #0034DE;
  color: #fff;
  padding: 20px 26px;
  font-size: 16px;
  line-height: 1;
  border-radius: 30px;
  transition: all 0.3s ease;
  letter-spacing: 0;
}
.button:hover{
  background: #0026B2;
}
.secondery-button{
  background: transparent;
  border: 2px solid #000;
  color: #000;
}
.secondery-button:hover{
  background: transparent;
}
.title{
  font-size: 44px;
  line-height: 1;
  font-family: Monstrat-600;
}
h1,h2,h3,h4,h5,h6{color: #2D302F;}

/* Intro Video Overlay Styles */
.intro-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-video-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-video-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.intro-video-container video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Hide intro video overlay by default (will be shown via JavaScript) */
.intro-video-overlay.hidden {
  display: none;
}

/* Fallback play button when autoplay is blocked */
.intro-play-btn {
position: absolute;
z-index: 10001;
background: rgba(255,255,255,0.9);
color: #000;
border: none;
padding: 12px 20px;
font-size: 18px;
border-radius: 6px;
cursor: pointer;
}

/* Global responsive styles */
@media (max-width: 1024px) {
  .container {
      padding: 0 15px;
  }
  
  .mt {
      margin-top: 120px;
  }
  
  .title {
      font-size: 36px;
  }
  
  body, p {
      font-size: 15px;
      line-height: 20px;
  }
  
  .button {
      padding: 18px 24px;
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px;
  }
  
  .mt {
      margin-top: 80px;
  }
  
  .title {
      font-size: 28px;
      line-height: 1.1;
  }
  
  body, p {
      font-size: 14px;
      line-height: 18px;
  }
  
  .button {
      padding: 16px 22px;
      font-size: 14px;
  }
  
  li {
      margin-right: 15px;
  }
  .intro-video-container video{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 10px;
  }
  
  .mt {
      margin-top: 60px;
  }
  
  .title {
      font-size: 24px;
      line-height: 1.1;
  }
  
  body, p {
      font-size: 13px;
      line-height: 17px;
  }
  
  .button {
      padding: 14px 20px;
      font-size: 13px;
  }
  
  li {
      margin-right: 10px;
  }
}

/* Announcement bar CSS */
.announcment-bar {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.announcment-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  padding: 10px 0;
}

@media (max-width: 1299px) {
  .announcment-bar-wrapper {
    animation: scroll 20s linear infinite;
    display: inline-flex;
    white-space: nowrap;
    width: auto;
  }

  .announce-text {
    padding-right: 50px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.announce-contact {
  display: flex;
  gap: 38px;
}

/* Announcement bar responsive */
@media (max-width: 768px) {
  .announcment-bar-wrapper {
      /* flex-direction: column; */
      gap: 10px;
      text-align: center;
      /* padding: 15px 0; */
  }
  
  .announce-text {
      font-size: 13px;
      line-height: 1.2;
  }
  
  .announce-contact {
      gap: 20px;
      /* flex-wrap: wrap; */
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .announce-contact {
      /* flex-direction: column; */
      gap: 10px;
  }
  
  .announce-contact a {
      font-size: 13px;
  }
  
  .announce-text {
      font-size: 12px;
      padding: 0 10px;
  }
}


/* Header CSS */
header {
  background: #000;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}
ul.nav-list {
  display: flex;
  align-items: center;
  gap: 45px;
}
.social-media {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-list li a{
  color: #F5F5F5;
}

/* Dropdown Menu Styles */
.dropdown-menu-item {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Only rotate arrow on active (click), not hover */
.dropdown-menu-item.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-submenu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  list-style: none;
}

.dropdown-submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

/* Only show dropdown on active (click), not hover */
.dropdown-menu-item.active .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.dropdown-submenu li {
  display: block;
  margin: 0;
  width: 100%;
}

.dropdown-submenu li a {
  display: block;
  padding: 12px 20px;
  color: #2D302F;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-submenu li a:hover {
  background: #f5f5f5;
  color: #0034DE;
  padding-left: 25px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #F5F5F5;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Header responsive styles */
@media (max-width: 1024px) {
  ul.nav-list {
      gap: 30px;
  }
  
  .social-media {
      gap: 15px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
      display: flex;
      z-index: 1001;
  }
  
  /* header{
    position: sticky;
    top: 0;
    z-index: 4;
  } */
.navigation {
  position: fixed;
  top: 100px;
  left: 0;
  height: auto;
  width: 100%;
  background: #000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 8px rgba(0,0,0,0.08);
}
  
.navigation.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
  
  ul.nav-list {
      flex-direction: row;
      flex-wrap: wrap;
      padding: 20px;
      gap: 33px 45px;
      width: 100%;
      justify-content: center;
  }
  
  .nav-list li {
      /* width: 100%; */
      text-align: center;
      margin: 0;
  }
  .nav-list li:last-child{width: 100%;}
  
  .social-media {
      justify-content: center;
      width: 100%;
      gap: 20px;
      padding: 10px 0;
  }
  
  .nav-list li a.button {
      display: inline-block;
      /* margin-top: 10px; */
      width: 100%;
  }
  
  /* Mobile Dropdown Styles */
  .dropdown-menu-item {
    width: 100%;
    position: relative;
    z-index: 10;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .dropdown-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .dropdown-submenu::before {
    display: none;
  }
  
  .dropdown-menu-item.active .dropdown-submenu {
    max-height: 300px;
    opacity: 1;
    padding: 12px 0;
    pointer-events: auto;
  }
  
  .dropdown-submenu li {
    width: 100%;
    display: block;
  }
  
  .dropdown-submenu li a {
    color: #F5F5F5;
    padding: 14px 20px;
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
  }
  
  .dropdown-submenu li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
      padding: 15px 0;
  }
  
  .logo img {
      max-width: 120px;
  }
  
  .button {
      padding: 15px 20px;
      font-size: 14px;
  }
}

/* Styling for the image-with-text section */
.image-with-text {
  display: flex;
  align-items: center;
  gap: 50px;
}
.image-with-text.image-with-text-2{
  flex-direction: row-reverse;
}

.image-with-text .image-container{
  max-width: 745px;
  width: 100%;
  flex: 1;
}

.image-with-text .image-container img{
  border-radius: 40px;
}
.image-with-text .text-container {
  flex: 1;
  max-width: 645px;
}
.image-with-text .text-container .title {
  color: #0034DE;
}
.image-with-text .text-container .details .para span{
  font-family: Monstrat-600;
  font-weight: 700;
  font-size: 30px;
  font-style: italic;
  line-height: 36px;
  letter-spacing: 0;

}
.image-with-text .text-container .button{
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 120px;
  gap: 10px;
}

/* Image-with-text responsive styles */
@media (max-width: 1024px) {
  .image-with-text {
      gap: 40px;
  }
  
  .image-with-text .text-container .title {
      font-size: 36px;
  }
  
  .image-with-text .text-container .details .para span {
      font-size: 26px;
      line-height: 32px;
  }
  
  .image-with-text .text-container .button {
      margin-top: 36px;
  }
}

@media (max-width: 768px) {
  .image-with-text {
      flex-direction: column;
      gap: 30px;
      text-align: center;
  }
  
  .image-with-text.image-with-text-2 {
      flex-direction: column;
  }
  
  .image-with-text .image-container {
      max-width: 100%;
      order: 1;
  }
  
  .image-with-text .text-container {
      max-width: 100%;
      order: 2;
  }
  
  .image-with-text .image-container img {
      border-radius: 20px;
  }
  
  .image-with-text .text-container .title {
      font-size: 28px;
      margin-bottom: 20px;
  }
  
  .image-with-text .text-container .details .para {
      font-size: 15px;
      line-height: 1.4;
  }
  
  .image-with-text .text-container .details .para span {
      font-size: 22px;
      line-height: 28px;
  }
  
  .image-with-text .text-container .button {
      margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .image-with-text {
      gap: 25px;
  }
  
  .image-with-text .image-container img {
      border-radius: 15px;
  }
  
  .image-with-text .text-container .title {
      font-size: 24px;
      margin-bottom: 15px;
  }
  
  .image-with-text .text-container .details .para {
      font-size: 14px;
      line-height: 1.3;
  }
  
  .image-with-text .text-container .details .para span {
      font-size: 18px;
      line-height: 24px;
  }
  
  .image-with-text .text-container .button {
      margin-top: 25px;
      padding: 15px 20px;
      font-size: 14px;
  }
}


/* compare section*/

.comparison-wrapper {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

.comparison h2{
  text-align: center;
  margin-bottom: 46px;
}

.comparison-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 700px;
  margin: 0 auto;
}

th {
font-size: 30px;
color: #0034DE;
font-weight: 700;
padding: 15px 0;
}

td {
padding: 12px 0;
font-size: 15px;
border-bottom: 1px solid #e5e5e5;
}

tr:last-child td {
border-bottom: none;
}

.header-img {
width: 100%;
max-width: 490px;
border-radius: 6px;
margin: auto;
}

/* Comparison table responsive styles */
@media (max-width: 1024px) {
.comparison h2 {
  font-size: 36px;
  margin-bottom: 36px;
}

th {
  font-size: 24px;
  padding: 12px 0;
}

.header-img {
  max-width: 350px;
}

td {
  font-size: 14px;
  padding: 10px 5px;
}
}

@media (max-width: 768px) {
.comparison h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100vw;
}

.comparison {
  overflow: hidden;
  margin-top: 40px;
}

table {
  min-width: 600px;
  padding: 0 20px;
}

th {
  font-size: 20px;
  padding: 10px 5px;
}

td {
  font-size: 13px;
  padding: 8px 5px;
  line-height: 1.3;
}

.header-img {
  max-width: 250px;
  border-radius: 4px;
}
}

@media (max-width: 480px) {
.comparison h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

table {
  min-width: 500px;
}

th {
  font-size: 16px;
  padding: 8px 3px;
}

td {
  font-size: 12px;
  padding: 6px 3px;
  line-height: 1.2;
}

.header-img {
  max-width: 180px;
}

.comparison-wrapper {
  width: 100%;
  max-width: 100vw;
}

.comparison {
  margin: 40px 0 0 0;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
}

  /* Accessories  */
.accessories-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
width: 100%;
}

.accessories-main h2{
  text-align: center;
  margin-bottom: 40px;
}
.card {
perspective: 1000px;
}

.card-inner {
position: relative;
width: 100%;
height: 324px;
border-radius: 15px;
transition: transform 0.8s;
transform-style: preserve-3d;
cursor: pointer;
}

.card:hover .card-inner {
transform: rotateY(180deg);
}

.card-front,
.card-back {
position: absolute;
inset: 0;
border-radius: 40px;
backface-visibility: hidden;
background: #f5f5f5;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.5s ease;
}
.card-front img {
height: 100%;
width: 100%;
border-radius: 40px;
}
.card-inner h3{
position: absolute;
top: 50%;
left: 10%;
max-width: 220px;
font-size: 32px;
line-height: 44px;
}

/* Back side */
.card-back {
transform: rotateY(180deg);
background: #f5f5f5;
color: #fff;
text-align: center;
opacity: 0;
}

.card:hover .card-back {
opacity: 1;
transition: opacity 0.5s ease-in-out 0.2s;
}

.card-back p {
font-size: 16px;
line-height: 1.5;
padding: 20px;
font-weight: 600;
}

/* Hover depth effect */
.card:hover .card-front {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
transform: scale(1.03);
}

/* Accessories responsive styles */
@media (max-width: 1024px) {
  .accessories-main h2 {
      font-size: 36px;
      margin-bottom: 35px;
  }
  
  .accessories-grid {
      gap: 25px;
  }
  
  .card-inner {
      height: 280px;
  }
  
  .card-inner h3 {
      font-size: 28px;
      line-height: 38px;
      max-width: 200px;
  }
  
  .card-back p {
      font-size: 14px;
      padding: 8px;
  }
}

@media (max-width: 768px) {
  .accessories-main h2 {
      font-size: 28px;
      margin-bottom: 30px;
  }
  
  .accessories-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .card-inner {
      height: 250px;
  }
  
  .card-front,
  .card-back {
      border-radius: 20px;
  }
  
  .card-front img {
      border-radius: 20px;
  }
  
  .card-inner h3 {
      font-size: 24px;
      line-height: 32px;
      max-width: 180px;
      left: 8%;
  }
  
  .card-back p {
      font-size: 13px;
      line-height: 1.4;
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .accessories-main h2 {
      font-size: 24px;
      margin-bottom: 25px;
  }
  
  .accessories-grid {
      max-width: 100%;
      gap: 15px;
  }
  
  .card-inner {
      height: 220px;
  }
  
  .card-front,
  .card-back {
      border-radius: 15px;
  }
  
  .card-front img {
      border-radius: 15px;
  }
  
  .card-inner h3 {
      font-size: 20px;
      line-height: 28px;
      max-width: 160px;
      left: 6%;
  }
  
  .card-back p {
      font-size: 12px;
      line-height: 1.3;
      padding: 12px;
  }
}

  


/* banner slider */

.banner-slider .swiper-slide{position: relative;}
.banner-slider .swiper-slide img{width: 100%;}
.banner-slider .swiper-slide .banner-conntent {
  position: absolute;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  top: 0;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.mobile-slide{display: none;}
.banner-content-wrapper {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
  gap: 200px;
}
.banner-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.banner-text-wrapper span {
  font-size: 16px;
  /* color: #fff; */
  /* opacity: 0.9; */
}
.banner-text-wrapper h2 {
  /* color: #fff; */
  font-size: 44px;
  line-height: 1.1;
  margin: 10px 0;
}
.banner-text-wrapper p {
  /* color: #fff; */
  /* opacity: 0.9; */
  font-size: 16px;
  line-height: 1.4;
  max-width: 600px;
}
.banner-size-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}
.banner-size-wrapper p {
  /* color: #fff; */
  font-size: 16px;
  margin: 0;
}
.sizes {
  display: flex;
  gap: 20px;
}
.sizes span{
background: #F5F5F5;
border: 1px solid #eee;
padding: 20px;
border-radius: 26px;
color: #6B6C6C;
font-size: 40px;
font-weight: 700;
}

/* Banner responsive styles */
@media (max-width: 1199px) {
  .banner-content-wrapper{
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  .banner-content-wrapper {
      max-width: 700px;
      gap: 150px;
      padding-bottom: 80px;
  }
  
  .banner-text-wrapper h2 {
      font-size: 36px;
  }
  
  .sizes span {
      font-size: 32px;
      padding: 16px;
  }
}

@media (max-width: 768px) {
  .banner-content-wrapper {
      max-width: 90%;
      gap: 80px;
      padding-bottom: 20px;
  }
  .desktop-slide{display: none;}
  .mobile-slide{display: block; width: 100%;}

  
  .banner-text-wrapper h2 {
      font-size: 28px;
      line-height: 1.2;
  }
  
  .banner-text-wrapper p {
      font-size: 14px;
      line-height: 1.3;
  }
  
  .banner-size-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .sizes {
      gap: 15px;
      flex-wrap: wrap;
  }
  
  .sizes span {
      font-size: 24px;
      padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .banner-content-wrapper {
      gap: 20px;
  }
  
  .banner-text-wrapper h2 {
      font-size: 24px;
  }
  
  .banner-text-wrapper span,
  .banner-text-wrapper p {
      font-size: 13px;
  }
  
  .sizes span {
      font-size: 20px;
      padding: 10px 14px;
  }
  
  .banner-size-wrapper p {
      font-size: 14px;
  }
}


/* video hover */

.hover-videos-main .top-videos,
.hover-videos-main .bottom-videos {
display: flex;
gap: 30px;
margin-bottom: 30px;
}

.hover-videos-main .video-card {
position: relative;
overflow: hidden;
border-radius: 40px;
cursor: pointer;
}

.hover-videos-main .video-card img,
.hover-videos-main .video-card video {
width: 100%;
height: auto;
border-radius: 40px;
display: block;
object-fit: cover;
}
.hover-videos-main .video-card h2 {
  position: absolute;
  font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 44px;
}
.hover-videos-main .video-card:nth-child(1) h2 {
  top: 50px;
  left: 50%;
  transform: translate(-30%);
  width: 100%;
}
.hover-videos-main .video-card:hover:nth-child(1) h2{
color: #fff;
}
.hover-videos-main .video-card:nth-child(2) h2 {
bottom: 46px;
left: 62px;
color: #fff;
max-width: 450px;
}
.hover-videos-main .bottom-videos .video-card:nth-child(1) h2 {
bottom: 36px;
right: 36px;
top: auto;
left: auto;
transform: unset;
width: auto;
color: #fff;
}
.hover-videos-main .bottom-videos .video-card:nth-child(2) h2 {
bottom: 40%;
right: 86px;
top: auto;
left: auto;
transform: unset;
width: auto;
color: #000;
max-width: 220px;
}
.hover-videos-main .bottom-videos .video-card:hover:nth-child(2) h2{
color: #fff;
}

.hover-videos-main .bottom-videos .video-card:nth-child(3) h2 {
top: 50px;
left: 50px;
transform: unset;
width: auto;
color: #000;
max-width: 190px;
}
.hover-videos-main .bottom-videos .video-card:hover:nth-child(3) h2{
color: #fff;
top: auto;
bottom: 46px;
}

/* Make video overlay exactly match the image */
.hover-videos-main .video-card video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}

/* On hover: reveal video smoothly */
.hover-videos-main .video-card:hover video {
opacity: 1;
}

/* Optional: subtle zoom effect for smoothness */
.hover-videos-main .video-card:hover img {
transform: scale(1.05);
transition: transform 0.4s ease;
}

/* Video hover responsive styles */
@media (max-width: 1024px) {
  .hover-videos-main .video-card h2 {
      font-size: 28px;
      line-height: 36px;
  }
  
  .hover-videos-main .video-card:nth-child(1) h2 {
      top: 40px;
      transform: translate(-40%);
  }
  
  .hover-videos-main .video-card:nth-child(2) h2 {
      bottom: 36px;
      left: 50px;
      max-width: 350px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(1) h2 {
      bottom: 30px;
      right: 30px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(2) h2 {
      bottom: 35%;
      right: 60px;
      max-width: 180px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(3) h2 {
      top: 40px;
      left: 40px;
      max-width: 160px;
  }
}

@media (max-width: 768px) {
  .hover-videos-main .top-videos,
  .hover-videos-main .bottom-videos {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 20px;
  }
  .banner-slider .swiper-slide .banner-conntent{top: 33%;}
  
  .hover-videos-main .video-card {
      border-radius: 20px;
  }
  
  .hover-videos-main .video-card img,
  .hover-videos-main .video-card video {
      border-radius: 20px;
  }
  
  .hover-videos-main .video-card h2 {
      font-size: 24px;
      line-height: 30px;
  }
  
  .hover-videos-main .video-card:nth-child(1) h2 {
      top: 30px;
      left: 30px;
      transform: none;
      width: auto;
      max-width: 250px;
  }
  
  .hover-videos-main .video-card:nth-child(2) h2 {
      bottom: 30px;
      left: 30px;
      max-width: 280px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(1) h2 {
      bottom: 30px;
      right: 30px;
      left: auto;
      max-width: 200px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(2) h2 {
      bottom: 30px;
      right: 30px;
      left: auto;
      max-width: 150px;
  }
  
  .hover-videos-main .bottom-videos .video-card:nth-child(3) h2 {
      top: 30px;
      left: 30px;
      max-width: 140px;
  }
  
  .hover-videos-main .bottom-videos .video-card:hover:nth-child(3) h2 {
      top: auto;
      bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hover-videos-main .video-card {
      border-radius: 15px;
      margin-bottom: 15px;
  }
  
  .hover-videos-main .video-card img,
  .hover-videos-main .video-card video {
      border-radius: 15px;
  }
  
  .hover-videos-main .video-card h2 {
      font-size: 20px;
      line-height: 26px;
  }
  
  .hover-videos-main .video-card:nth-child(1) h2,
  .hover-videos-main .video-card:nth-child(2) h2,
  .hover-videos-main .bottom-videos .video-card h2 {
      top: 20px;
      left: 20px;
      right: auto;
      bottom: auto;
      max-width: 200px;
      transform: none;
  }
  
  .hover-videos-main .bottom-videos .video-card:hover:nth-child(3) h2 {
      top: 20px;
      bottom: auto;
  }
}

/* image slider  */

.image-slider-section .title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 46px;
  gap: 40px;
}
.image-slider-section .title-wrapper .para{max-width: 708px;}
.image-slider-section img {
  border-radius: 40px;
  width: 100%;
  height: auto;
  display: block;
}

.image-slider-section .swiper-slide {
  height: auto;
  overflow: hidden;
}

.image-slider-section .swiper-scrollbar {
  opacity: 1 !important;
  width: 100% !important;
  bottom: -44px !important;
  left: 0 !important;
  right: 0 !important;
}

.image-slider-section {
  position: relative;
  padding-bottom: 44px;
  overflow: hidden;
}

.image-slider-section .mySwiper {
  overflow: visible;
  margin: 0 -20px;
  padding: 0 20px;
}

.image-slider-section .swiper-wrapper {
  padding-bottom: 10px;
}

.image-slider-section .swiper-scrollbar {
  position: relative !important;
  background: rgba(0, 0, 0, 0.1) !important;
  /* height: 2px !important; */
}

/* .image-slider-section .swiper-scrollbar-drag {
  background: #0034DE !important;
  height: 2px !important;
} */

/* Image slider responsive styles */
@media (max-width: 1024px) {
  .image-slider-section .title-wrapper {
      gap: 30px;
      margin-bottom: 36px;
  }
  
  .image-slider-section .title-wrapper .title {
      font-size: 36px;
  }
  
  .image-slider-section .title-wrapper .para {
      max-width: 600px;
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .image-slider-section .title-wrapper {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
      text-align: center;
  }
  
  .image-slider-section .title-wrapper .title {
      font-size: 28px;
      line-height: 1.2;
  }
  
  .image-slider-section .title-wrapper .para {
      max-width: 100%;
      font-size: 14px;
      line-height: 1.4;
  }
  
  .image-slider-section img {
      border-radius: 20px;
  }
  
  .image-slider-section {
      padding-bottom: 30px;
  }

  .image-slider-section .mySwiper {
      margin: 0 -15px;
      padding: 0 15px;
  }

  .image-slider-section .swiper-scrollbar {
      bottom: -30px !important;
      width: 100% !important;
  }

  /* .image-slider-section .swiper-scrollbar-drag {
      height: 2px !important;
  } */
}

@media (max-width: 480px) {
  .image-slider-section .title-wrapper .title {
      font-size: 24px;
  }
  
  .image-slider-section .title-wrapper .para {
      font-size: 13px;
  }
  
  .image-slider-section img {
      border-radius: 15px;
  }
}

  /* Footer top section */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 110px;
    padding-bottom: 50px;
  }

  .footer-left {
    display: flex;
    gap: 72px;
    flex: 1;
    min-width: 250px;
  }
  .extra-logos{
    display: flex;
  }
.extra-logos img{
  max-width: 130px;
}
  

  .footer-left p {
    max-width: 350px;
  }

  /* Footer right group */
  .footer-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 90px;
    flex-wrap: wrap;
    min-width: 300px;
  }

  /* Social icons */
  .footer-social ul {
    list-style: none;
  }

  .footer-social li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 18px;
  }
  .footer-social li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

  .footer-social img {
    width: 16px;
    height: 16px;
  }

  /* Links */
  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #0044ff;
  }

  /* Action */
  .footer-action {
    text-align: left;
  }

  .footer-action p {
    margin-bottom: 20px;
    color: #000;
  }


 

  /* Bottom */
  .footer-bottom {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 50px 0 40px 0;
  }

  .footer-bottom a {
    color: #000;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }

  /* ========== Responsive Styles ========== */

  /* Large tablets (below 1024px) */
  @media (max-width: 1024px) {
    .footer-top {
      gap: 80px;
    }
    
    .footer-left {
      gap: 50px;
    }
    
    .footer-right {
      gap: 60px;
    }
    
    .footer-left p {
      max-width: 300px;
    }
  }

  /* Tablets (below 1024px) */
  @media (max-width: 1024px) {
    .footer-right {
      gap: 60px;
    }
  }

  /* Medium (below 900px) */
  @media (max-width: 900px) {
    .footer-top {
      flex-direction: column;
      gap: 40px;
      align-items: flex-start;
    }

    .footer-right {
      justify-content: space-between;
      width: 100%;
      gap: 50px;
    }

    .footer-action {
      text-align: left;
    }
  }

  /* Tablets (below 768px) */
  @media (max-width: 768px) {
    .footer-left {
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }
    
    .footer-left p {
      max-width: 100%;
    }
    
    .footer-right {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
    }
    
    .footer-action {
      text-align: start;
    }
  }

  /* Mobile (below 600px) */
  @media (max-width: 600px) {
    .footer-right {
      flex-direction: row;
      justify-content: start;
      align-items: start;
      flex-wrap: wrap;
      text-align: start;
      gap: 25px 0;
    }
    .footer-social{width: 50%;}
    .footer-links {width: 50%;}

    .footer-left {
      text-align: start;
      justify-content: center;
      align-items: start;
    }

    .footer-bottom {
      flex-direction: row-reverse;
      text-align: center;
      padding: 30px 0;
      font-size: 14px;

    }

    .footer-left p {
      max-width: 100%;
    }
  }

  /* Small mobile (below 480px) */
  @media (max-width: 480px) {
    .footer-top {
      gap: 30px;
      padding-bottom: 40px;
    }
    
    .footer-left {
      gap: 25px;
    }
    
    .footer-left img {
      max-width: 200px;
    }
    .extra-logos img {
    max-width: 200px;
    height: 100px;
}
    
    .footer-social li {
      margin-bottom: 15px;
      font-size: 13px;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      font-size: 13px;
    }
    
    .footer-action p {
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    
  }

  /* image footer css */

  .footer-image-main{position: relative;}
  .image-footer-section {
    /* background: url('./assets/media/contact.webp'); */
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* position: absolute; */
    overflow: hidden;
    top: 0;
    max-width: 1440px;
    padding: 0 20px;
    /* padding: 50px 66px; */
    width: 100%;  
  }

  /* Placeholder middle image (you’ll replace with your own later) */
  .image-footer-section .footer-image {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 300px;
    opacity: 0.9;
  }

  .image-footer-section .footer-left {
    flex: 1;
    min-width: 280px;
    text-align: left;
    z-index: 1;
    flex-direction: column;
    gap: 40px;
  }

  .image-footer-section .footer-left img {
    max-width: 200px;
  }

  .image-footer-section .footer-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .image-footer-section .footer-left p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
  }

  .image-footer-section .footer-right {
    flex: 1;
    max-width: 286px;
    text-align: left;
    z-index: 1;
    flex-direction: column;
    gap: 20px;
  }



  @media (max-width: 1024px) {
    .image-footer-section {
      padding: 40px 50px;
      gap: 30px;
    }
    
    .image-footer-section .footer-left {
      min-width: 250px;
      gap: 30px;
    }
    
    
    
    .image-footer-section .footer-right {
      max-width: 250px;
      gap: 12px;
    }
  }

  @media (max-width: 768px) {
    .image-footer-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 25px;
      gap: 25px;
    }
    .image-footer-section{
      gap: 50px;
    }

    .image-footer-section .footer-left {
      min-width: auto;
      width: 100%;
      text-align: start;
      gap: 20px;
    }
    
    .image-footer-section .footer-left img {
      
      margin: 0;
    }
    

    
    .image-footer-section .footer-left p {
      font-size: 13px;
      line-height: 1.5;
    }
    
    .image-footer-section .footer-right {
      max-width: 100%;
      text-align: center;
      gap: 15px;
    }
    
    .image-footer-section .footer-right p {
      font-size: 13px;
    }

    .image-footer-section .footer-image {
      position: relative;
      transform: none;
      top: auto;
      right: auto;
      width: 220px;
      margin: 20px 0;
    }
  }

  @media (max-width: 480px) {
    .image-footer-section {
      padding: 25px 20px;
    }
    

    
    .image-footer-section .footer-left h3 {
      margin-bottom: 8px;
    }
    
    .image-footer-section .footer-left p {
      font-size: 12px;
    }
    
    .image-footer-section .footer-right p {
      font-size: 12px;
    }
    
    .image-footer-section .footer-image {
      width: 180px;
    }
  }

  
  /* tab change on click */

  .use-case-wrapper {
    position: relative;
  }

  .use-case-section {
    position: relative;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1440px;
    margin: auto;
    gap: 80px;
    background: #fff;
    overflow: hidden;
  }

  /* Left Image */
  .left {
    flex: 1;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .left img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: opacity 0.6s ease;
  }

  .fade-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Right Tabs */
  .right {
    flex: 1;
  }

  .right h2 {
    margin-bottom: 32px;
  }

  .tab {
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .tab h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .tab p {
    max-width: 90%;
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .tab.active p {
    display: block;
    opacity: 1;
  }

  /* ========== Use Case Responsive Styles ========== */

  /* Tablets */
  @media (max-width: 1024px) {
    .use-case-wrapper {
      height: auto;
    }
    
    .use-case-section {
      gap: 60px;
      top: 0;
    }

    .left {
      height: 400px;
    }

    .left img {
      height: 400px;
    }

    .right h2 {
      font-size: 36px;
      margin-bottom: 28px;
    }

    .tab h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 992px) {
    .use-case-wrapper {
      height: auto;
      position: static;
    }
    
    .use-case-section {
      position: static;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 80px 5%;
      gap: 40px;
      height: auto;
      top: auto;
    }

    .left {
      width: 100%;
      height: auto;
      order: 2;
    }

    .left img {
      height: auto;
      max-height: 400px;
      width: 100%;
    }

    .right {
      order: 1;
      width: 100%;
    }

    .tab {
      border-left: none;
      border-top: 3px solid #e0e0e0;
      border-bottom: none;
      padding: 15px 0;
      text-align: left;
    }

    .tab.active {
      border-top-color: #0034DE;
    }

    .tab p {
      max-width: 100%;
    }
  }

  /* Mobiles */
  @media (max-width: 768px) {
    .use-case-section {
      padding: 0 20px;
      gap: 30px;
    }

    .right h2 {
      font-size: 28px;
      margin-bottom: 24px;
    }

    .tab h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .tab p {
      font-size: 14px;
      line-height: 1.4;
    }

    .left img {
      border-radius: 14px;
      max-height: 300px;
    }
  }

  @media (max-width: 480px) {
    .use-case-section {
      padding: 0 15px;
      gap: 25px;
    }

    .right h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .tab {
      padding: 12px 0;
    }

    .tab h3 {
      font-size: 16px;
    }

    .tab p {
      font-size: 13px;
    }

    .left img {
      max-height: 250px;
      border-radius: 12px;
    }
  }


  .footer-image-wrapper{
    background: url('./assets/media/contact.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 310px;
    display: flex;
    align-items: center;
    border-radius: 40px;
  }

  @media (max-width: 767px) {
    .footer-image-wrapper{
      background: url('./assets/media/mobile-footer.png');
      height: 565px;
      align-items: start;
    }
  }
  
