
:root {
    --primary-red: #bf023f;
    --secondary-red: #dc3545;
    --light-red: rgba(255, 208, 209, 0.3) ;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1 0 auto;
  }
 
  /* Fixed margins and padding for sections */
  .our-products,banner-section, .certifications, .features-section, 
  .about-section, .app-Download, .testimonials, .faq-section, .tracking-features-section {
    padding: 3rem 0;
  }
  @media (max-width: 1024px) {
  .our-products,
  .banner-section,
  .certifications,
  .features-section,
  .about-section,
  .app-Download,
  .testimonials,
  .faq-section,
  .tracking-features-section {
    padding: 2rem 0;
  }
}

/* Banner */  
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 450px;
  background-image: url("https://nekinsan-admin.s3.ap-south-1.amazonaws.com/web_images/background_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide .content {
  display: flex;
  align-items: center;
  width: 100%;
}

.slide .text {
  flex: 1;
  color: #1c2237;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.3s;
  margin-left: 5rem;
}

.slide.active .text {
  opacity: 1;
  transform: translateY(0);
}

.slide .text h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

.slide .text p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.slide .image {
  flex: 1;
  text-align: right;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.5s;
}

.slide.active .image {
  opacity: 1;
  transform: translateX(0);
}

.slide .image img {
  max-height: 500px;
  width: auto;
}

/* Mobile CSS */
@media (max-width: 768px) {
  .hero-slider {
    background-image: url("https://nekinsan-admin.s3.ap-south-1.amazonaws.com/web_images/background_mobile_img.webp");
    height: 300px;
  }

  .slide .content {
    flex-direction: column;
    height: 100%;
    padding: 0;
    position: relative;
  }

  .slide .text {
    margin-left: 1rem;
    padding-right: 10px;
    width: 100%;
    z-index: 2;
    position: absolute;
    top: 20px;
    left: 0;
  }

  .slide .text h1 {
    font-size: 1.8rem;
    white-space: normal;
    margin-bottom: 5px;
  }

  .slide .text p {
    font-size: 1rem;
    white-space: normal;
    margin-top: 0;
  }

  .slide .image {
    width: 100%;
    height: 100%;
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .slide .image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-slider {
    width: 100%;
    height: 300px;
    background-image: url("https://nekinsan-admin.s3.ap-south-1.amazonaws.com/web_images/background_mobile_img.webp");
    position: relative;
    top: 0;
  }

  .slide {
    top: 0;
    height: 100%;
  }

  .slide .content {
    height: 100%;
    padding: 0;
    position: relative;
  }

  .slide .text {
    width: 85%;
    text-align: left;
    margin: 0;
    padding: 15px 0 0 15px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .slide .text h1{
    font-size: 1.6rem;
    white-space: normal;
    margin-bottom: 3px;
  }

  .slide .text p {
    font-size: 0.9rem;
    margin-top: 0;
  }

  .slide .image {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
  }

  .slide .image img {
    max-height: 240px;
    width: auto;
    margin: 0;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .slide .text h1 {
    font-size: 1.4rem;
  }

  .slide .text p {
    font-size: 0.8rem;
  }

  .slide .image img {
    max-height: 150px;
  }
}

  .navbar .nav-link {
    color: #555;
    font-weight: 700;
    padding: 1rem ;
      font-size: 18px; 
  }

  .navbar .nav-link.active, .navbar .nav-link:hover {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
  }
  
 
  .icon-red, .text-login {
    color: var(--primary-red);
  }

  .mobile-menu-icons {
    display: none;
  }

  .mobile-header {
    display: none;
  }

  .desktop-header, .mobile-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 6px 0 10px -1px rgba(0, 0, 0, 0.3);

  }
  
  /* Mobile Styles */
  @media (max-width: 991px) {
    
    .desktop-header,
    .desktop-nav {
      display: none;
    }
    
    .mobile-header {
      display: block;
      padding: 5px 0;
      background: white;
      box-shadow: none;
    }


    .mobile-header .nav-icons {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mobile-header .nav-icons a {
      color: var(--primary-red);
      font-size: 1.5rem;
      text-decoration: none;
    }
.mobile-menu-wrapper {
    background: white;
    position: sticky;
    top: 45px;
    z-index: 9999;
}
    .mobile-menu-icons {
    display: block;
    background: white;
    /* padding: 12px 8px; */
    z-index: 999;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 5px 5px;
    border-radius: 50px;
    border: 1px solid #f0f0f0;
    }

.mobile-menu-icons .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 10px;
    font-weight: bold;
  }

.mobile-menu-icons .icon-item:active {
  opacity: 0.6;
}

.header-icon-img {
  width: 22px;  
  height: 22px; 
  margin: 5px;
}
.header-tracking-img{
    width: 25px;  
    height: 25px;
    margin: 3px;
}
.mobile-menu-icons .col {
  padding: 3px 0;
}
     .mobile-menu-icons .icon-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-red);
  }
    .navbar-collapse {
      position: fixed;
      top: 60px;
      left: 0;
      padding: 1rem;
      width: 100%;
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
  }
  .social-icons {
    display: flex;
    align-items: center;
  }
  .social-icons a {
    color: var(--primary-red);
    margin-left: 12px;
    font-size: 1.2rem;
  }
  
  @media (max-width: 991px) {
  }
  .navbar-nav {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .nav-icon {
    color: #bf023f;
    margin-right: 8px;
    font-size: 1.5rem; 
  }
  
  .nav-link {
    display: flex;
    align-items: center;
  
  }    
  .section-header {
    display: inline-block; 
  }
  
  .section-header h3 {
    /* font-size: 2rem; */
    color: #333;
    margin: 0;
    line-height: 0.5 !important;
  }
  .custom-header h1{
    font-size: 2rem;
    color: #fff;
    margin: 0;
    line-height: 0.5 !important;
  
  }
  
  .title-underline{
    width: 15%; 
    height: 4px; 
    background-color: #fff; 
    margin-top: 5px; 
    display: inline-block ;
   
  }
  
/* Products Section */


.section-header {
margin-bottom: 30px;
}

.section-header h3 {

color: #333;
}

.category-title {
color: #333;
margin-bottom: 20px;
text-align: left;
padding-left: 10px;
border-left: 4px solid #bf023f;
}

.product-slider-container {
position: relative;
display: flex;
align-items: center;
}

/* The slider itself */
.product-slider {
display: flex;
overflow-x: hidden;
scroll-behavior: smooth;
gap: 20px;
padding: 10px 5px;
width: 100%;
-ms-overflow-style: none;  
scrollbar-width: none;  
}

.product-slider::-webkit-scrollbar {
display: none;
}

/* Scroll buttons */
.scroll-button {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
border: none;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
cursor: pointer;
z-index: 2;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease;
}

.scroll-button:hover {
background-color: #f5f5f5;
}

.scroll-button svg {
width: 24px;
height: 24px;
stroke: #333;
stroke-width: 4;
}

.prev-button {
left: -10px;
}

.next-button {
right: -10px;
}

/* Product Cards */
.product-card {
flex: 0 0 calc(25% - 15px); /* Show 4 cards at a time, with gap considered */
min-width: calc(25% - 15px);
background: #fff;
border-radius: 8px;
border: 1px solid #e0e0e0;
padding: 16px;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
position: relative;
width: 100%;
padding-top: 100%; /* 1:1 Aspect Ratio */
margin-bottom: 12px;
}

.product-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 6px;
transition: transform 0.3s ease;
}

.product-image:hover img {
transform: scale(1.05);
}

.product-title {
text-align: center;
height: 48px; /* Fixed height to maintain alignment */
display: flex;
flex-direction: column;
justify-content: center;
}

.product-title span {
display: block;
text-transform: uppercase;
font-weight: 600;
color: black;
line-height: 1.2;
}

.product-footer .pack-info {
    color: #666;
    font-size: 0.75rem;
    font-weight: normal;
    white-space: nowrap;
  }
.product-footer {
 display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    flex-wrap: nowrap;
    gap: 8px;
}

 .price-container {
   display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  }
  
  .price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  }

.original-price {
text-decoration: line-through;
color: #666;
font-size: 0.875rem;
white-space: nowrap;
}

 .discount-percentage {
    font-size: 0.75rem;
    color: #2e7d32;
    font-weight: 600;
    white-space: nowrap;
  }

  .discounted-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #bf023f;
    text-align: start;
    white-space: nowrap;
  }
  
  .buy-now-button {
    display: inline-flex;
    width: auto;
    align-items: center; 
   justify-content: center;
    font-weight: 600 !important;
    background: #bf023f;
    color: white !important;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

.buy-now-button:hover {
background: #a00234;
}

@media (max-width: 991px) {
.product-card {
  flex: 0 0 calc(33.33% - 14px); /* Show 3 cards at a time on tablets */
  min-width: calc(33.33% - 14px);
}
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
.product-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-snap-type: x mandatory;
  padding: 10px 5px 20px;
}

.product-slider:after {
  content: "";
  padding-right: 5px;
}

.product-card {
  flex: none;
  min-width: 0;
  width: 100%;
  scroll-snap-align: start;
  padding: 12px;
}

.scroll-button {
  width: 30px;
  height: 30px;
}

.scroll-button svg {
  width: 20px;
  height: 20px;
}

.category-title {
  font-size: 1rem;
}

.product-title {
  font-size: 0.85rem;
  height: 42px;
}

.product-footer .pack-info  {
  font-size: 0.7rem;
}

.price-row {
  gap: 4px;
}

.original-price {
  font-size: 0.8rem;
}

.discount-percentage {
  font-size: 0.7rem;
}

.discounted-price {
  font-size: 18px;
}

.buy-now-button {
  padding: 4px 10px;
  font-size: 1rem;
  min-width: 35px;
  
}

}

/* Small Mobile Devices */
@media (max-width: 480px) {
.product-slider {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.category-title {
  font-size: 1rem;
}

.product-card {
  padding: 10px;
}

.product-title {
  height: 38px;
  font-size: 12px;
}

.product-footer .pack-info {
  font-size: 0.65rem;
}

.product-footer {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.price-container {
  flex: 0 1 auto;
}

.price-row {
  gap: 3px;
}

.original-price {
  font-size: 0.75rem;
}

.discount-percentage {
  font-size: 0.8rem;
}

.discounted-price {
  font-size: 18px;
}

.buy-now-button {
 padding: 4px 1px;
      font-size: 0.7rem;
      min-width: 30px;
}

.cart-button {
  padding: 2px;
}

.cart-icon {
  width: 16px;
  height: 16px;
}
}

/* Custom JavaScript for Grid Scrolling */
@media (max-width: 767px) {
.product-slider-container {
  overflow: hidden;
  position: relative;
}

.product-slider {
  display: grid;
  grid-template-columns: repeat(4, 50%);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  width: 100%;
  scroll-snap-type: x mandatory;
  
}

.product-card {
  scroll-snap-align: start;
}
}

@media (max-width: 767px) {
/* For Emergency/Wrong Parking category */
.category-section:first-of-type .product-slider {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  width: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
}

/* All cards should have the same size */
.category-section:first-of-type .product-slider .product-card {
  width: 100%;
  box-sizing: border-box;
}

/* Place all products side by side in rows of 2 */
.category-section:first-of-type .product-slider .product-card:nth-child(1),
.category-section:first-of-type .product-slider .product-card:nth-child(2),
.category-section:first-of-type .product-slider .product-card:nth-child(3),
.category-section:first-of-type .product-slider .product-card:nth-child(4),
.category-section:first-of-type .product-slider .product-card:nth-child(5),
.category-section:first-of-type .product-slider .product-card:nth-child(6) {
  grid-column: auto; /* Let the grid auto-place items */
}

/* For Premium Products category */
.premium-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Third product should take the full width but keep same size as others */
.premium-products-grid .product-card:nth-child(3) {
  grid-column: 1 / span 2;
  width: 50%; 
  margin: 0 auto; 
}

.product-card {
  width: 100%;
  box-sizing: border-box;
}
}
/* about section */
  .section-bgg {
    background: linear-gradient(#BE1F42, #67263b) !important;
}

/* certificate section */ 
.ido-frf {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.certificate-img-first{
width: 60px;

}
.certificate-img-second{
width: 75px;

}
.certificate-img-main{
width: 90px;

}
@media (max-width:767px){
.certificate-img-first{
  width: 50px !important;
  
}
.certificate-img-second{
  width: 62px !important;
  
}
.certificate-img-main{
  width: 75px !important;
 
} 
.ido-frf{
  gap: 10px !important;
}
}
/* banner-information section */
.banner-container {
background-color: #00144f;
color: white;
padding: 20px 40px;
display: flex;
align-items: center;
justify-content: center;
gap: 30px; /* Controls spacing between QR and text */
width: 100%;
position: relative;
}

.text-content {
text-align: center;
max-width: 600px; /* Prevents it from stretching too wide */
padding: 0 10px;
}

.qr-image {

border-radius: 10px;
padding: 10px;
width: 120px;
height: 120px;
display: flex;
justify-content: center;
align-items: center;
}

.qr-code {
width: 150px;
height: auto;
}

h1 {

margin-bottom: 10px;
}

.hindi-text {
font-size: 18px;
line-height: 1.5;
font-weight: 600;

}
@media (max-width: 768px) {
.banner-container {
    flex-direction: row; /* Keep it in a row on mobile too */
    flex-wrap: nowrap;     /* Allow wrap if needed */
    padding: 10px;
    gap: 10px;
}

.qr-image {
    margin: 0;
    padding: 5px;
    width: 80px;
    height: 80px;
}

.qr-code {
    width: 70px;
    height: auto;
}

h1 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hindi-text {
    font-size: 12px;
    /* line-height: 1.4; */
}

.text-content {
    max-width: 100%;
    padding: 0 5px;
}
}


/* Features Section  */
.features-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    background-color: transparent;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-header h3 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}

.underline {
    height: 3px;
    width: 100px;
    background-color: #bf023f;
    margin: 0 auto;
    position: absolute;
    bottom: -10px;
}

/* Info bar with language switch */
.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    gap: 15px;
}

.section-header.animate-in ~ .info-bar {
    opacity: 1;
    transform: translateY(0);
}

.info-text {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    flex: 1;
    min-width: 0;
}

/* Language Toggle Switch */
.language-controls {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.language-switch {
    padding: 8px 25px;
    border: none;
    border-bottom: 2px solid #bf023f;
    background-color: transparent;
    color: #bf023f;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 100px;
    white-space: nowrap;
}

.language-switch:hover {
    background-color: transparent;
    border-bottom-color: #8f0230;
    color: #8f0230;
}

.language-switch:active {
    transform: scale(0.98);
}

/* Desktop Message Box (Speech Bubble) */
.message-box {
    position: absolute;
    background-color: #fff;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    padding: 15px;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.message-box.show {
    opacity: 1;
    visibility: visible;
}

.message-box::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/* Pointer positions based on message box location */
.message-box.pointer-bottom::before {
    bottom: -10px;
    left: var(--pointer-left, 50%);
    transform: translateX(-50%);
    border-top: 10px solid #d0d0d0;
}

.message-box.pointer-bottom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: var(--pointer-left, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fff;
}

.message-box.pointer-top::before {
    top: -10px;
    left: var(--pointer-left, 50%);
    transform: translateX(-50%);
    border-bottom: 10px solid #d0d0d0;
}

.message-box.pointer-top::after {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--pointer-left, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
}

.message-box.pointer-left::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 10px solid #d0d0d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.message-box.pointer-left::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 9px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.message-box.pointer-right::before {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #d0d0d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.message-box.pointer-right::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.message-content {
    color: #333;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
}

/* ========================
   Mobile Bottom Sheet
======================== */
.feature-bottom-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.feature-bottom-sheet.active {
    display: block;
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 12px auto;
}

.bottom-sheet-header {
    padding: 4px 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.bottom-sheet-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-sheet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom-sheet-title {
    font-size: 14px;
    font-weight: 700;
    color: #bf023f;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
}

.bottom-sheet-lang-switch {
    padding: 4px 12px;
    border: none;
    border-bottom: 1px solid #bf023f;
    background: transparent;
    color: rgb(0, 0, 0);
    border-radius: 0;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.bottom-sheet-lang-switch:active {
    background: #e0e0e0;
}

.bottom-sheet-body {
    padding: 16px 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.bottom-sheet-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
}

.bottom-sheet-footer {
    padding: 16px 24px 24px;
}

.bottom-sheet-button {
    width: auto;
    margin: 0 auto !important;
    display: block;
    padding: 10px 40px;
    background: #fff;
    color: #bf023f;
    border: 2px solid #D7D7D7;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

/* Modal Overlay for Mobile */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.modal-overlay.active {
    display: block;
}

.features-container {
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 150px;
    aspect-ratio: 1;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item:hover .feature-icon-box,
.feature-item.active .feature-icon-box {
    border-color: #bf023f;
    box-shadow: 0 4px 12px rgba(191, 2, 63, 0.2);
}

.feature-icon-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.animate-in .feature-icon-box img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.feature-item:hover .feature-icon-box img {
    transform: scale(1.1) rotate(3deg);
}

.feature-name {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h3 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .feature-name {
        font-size: 0.7rem;
    }

    .language-switch {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 80px;
    }

    .info-bar {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .info-text {
        font-size: 0.80rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .feature-icon-box {
        padding: 12px;
    }

    /* Hide desktop message box on mobile */
    .message-box {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }

    .info-text {
        font-size: 0.65rem;
    }

    .language-switch {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 65px;
    }

    .feature-name {
        font-size: 0.6rem;
        margin-top: 8px;
    }

    .feature-icon-box {
        padding: 8px;
        width: 100%;
    }

    .features-section {
        padding: 30px 15px;
    }
}

/* Desktop only - show message box */
@media (min-width: 769px) {
    .feature-bottom-sheet {
        display: none !important;
    }
}
  /* mobile footer */

  section.mobil-btnnn {
    display: none;
}
  @media screen and (max-width: 767px) {
    section.mobil-btnnn {
        display: block !important;
    }
}
.new-footer-wrapper{
    background: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: auto;
}
.new-footer-btn-new {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 5px 5px;
    border-radius: 50px;
    border: 1px solid #f0f0f0;
  
}

.main-footer-mobile-new-custom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: -10px 0;
  padding: 0px;
}

.main-footer-mobile-new-custom a {
  color: #555 !important;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
}

.main-footer-mobile-new-custom > div {
  flex: 1;
  text-align: center;
}

img.new-scfdd {
  width: 22px;
  margin: 5px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  img.scan-main-center {
      width: 80%;
      position: relative;
      bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
span.mai-new-sacan-wer {
    position: relative;
    bottom: 24px;
}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq-main-title {
    font-size: 2.5rem;
    color: #bf023f;
    text-align: left;
    margin-bottom: 10px;
}

.faq-tabs {
    margin-bottom: 0;
    flex-direction: column;
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
}

.faq-tabs .nav-item {
    margin-bottom: 2px;
    position: relative;
}

.faq-tabs .nav-link {
    background-color: transparent;
    color: #333;
    font-weight: 500;
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-tabs .nav-link:hover {
    background-color: #f8f9fa;
    color: #333;
}
.faq-tabs .nav-link.active {
   background: linear-gradient(45deg, #bf023f 0%, #d63384 25%, rgba(214, 51, 132, 0.6) 50%, rgb(226 106 165 / 30%) 70%, rgb(214 51 132 / 6%) 85%, transparent 100%);
    color: white;
    font-weight: bold;
    border-radius: 30px 0px 0px 30px;
    padding: 15px 25px 15px 25px;
    position: relative;
    min-width: 100%;
    text-align: left;
    border: none !important;
}
@media (max-width: 768px) {
    .faq-tabs .nav-link.active {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 20px 0px 0px 20px;
    }
}
.custom-accordion {
    border-top: none;
}

.custom-accordion .accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Remove box and shadow for expanded items */
.custom-accordion .accordion-item.expanded {
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
}

.custom-accordion .accordion-header .accordion-button {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    border: none;
    padding: 18px 20px;
    box-shadow: none;
    border-radius: 6px;
}

.custom-accordion .accordion-header .accordion-button.collapsed {
    border-radius: 6px;
}

.custom-accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #bf023f;
    box-shadow: none;
    border-radius: 0;
}

.custom-accordion .accordion-header .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    font-weight: bold;
}

.custom-accordion .accordion-body {
    padding: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: #fff;
}

.custom-accordion .accordion-body strong {
    color: #bf023f;
    font-weight: 600;
}

.tab-content {
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
    }
    
    .faq-tabs {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .faq-tabs .nav-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .custom-accordion .accordion-header .accordion-button {
        font-size: 0.9rem;
        padding: 15px 16px;
    }
    
    .custom-accordion .accordion-body {
        padding: 16px;
        font-size: 0.9rem;
    }
}

/*----------------------------------------------
# helpline modal Section
--------------------------------------------------------------*/
.helpline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
    justify-items: center;
    align-items: center;
    margin-top: 10px;
  }
  
  
  .helpline-item {
    text-align: center;
  }
  
  .helpline-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    border: 1.5px solid black;
    border-radius: 10px;
    padding: 4px;
  }
  
  .helpline-link {
    text-decoration: none;
    color: inherit;
  }
  
  .helpline-link:hover {
    opacity: 0.8;
  }
  @media screen and (max-width: 767px) {
    .cart-icon-wrapper {
      display: flex;
      align-items: center;
      position: relative;
      gap: 4px;
    }
  
    .cart-icon-wrapper img.icon-img {
      width: 24px;
      height: 24px;
    }
  
    span.main-crt-value-new-phone {
      position: static;
      background: #082b51;
      padding: 1px 6px;
      color: #fff;
      border-radius: 50%;
      font-weight: bolder;
      font-size: 11px;
      line-height: 17px;
      min-width: 17px;
      text-align: center;
    }
  }
.slide .text h2{
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
@media (max-width: 480px) {
  .slide .text h2 {
      font-size: 1.6rem;
      white-space: normal;
      margin-bottom: 3px;
  }
}
@media (max-width: 768px) {
  .slide .text h2 {
      font-size: 1.8rem;
      white-space: normal;
      margin-bottom: 5px;
  }
}/* testimonial */
.testimonials .testimonial-slider {
  background-color: #ffffff;
  /* padding: 1rem; */
}

.testimonials .testimonial-title {
  color: #bf023f;
}

.testimonials .testimonial-title h2 {
  padding-left: 0.2em;
}

.testimonials .card {
  margin: 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  height: 100%;
}

/* More specific selector for carousel controls - Always visible */
.testimonials #carouselExampleControls .carousel-control-prev,
.testimonials #carouselExampleControls .carousel-control-next {
  background-color: #bf023f;
  color: #fff;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  top: 65%;
  transform: translateY(-50%);
  opacity: 1 !important;
  position: absolute;
  z-index: 5;
}

/* Force white icons with stronger override */
.testimonials #carouselExampleControls .carousel-control-prev-icon,
.testimonials #carouselExampleControls .carousel-control-next-icon {
  filter: none !important;
  background-size: 100%;
    width: 2rem;
    height: 2rem;

}

/* Remove Bootstrap's default hover/focus opacity changes */
.testimonials #carouselExampleControls .carousel-control-prev:hover,
.testimonials #carouselExampleControls .carousel-control-next:hover,
.testimonials #carouselExampleControls .carousel-control-prev:focus,
.testimonials #carouselExampleControls .carousel-control-next:focus {
  opacity: 1 !important;
}

/* Mobile specific styles for carousel controls */
@media (max-width: 767px) {
  .testimonials #carouselExampleControls .carousel-control-prev,
  .testimonials #carouselExampleControls .carousel-control-next {
      background-color: rgba(191, 2, 63, 0.7) !important;
      opacity: 0.8 !important;
  }
  
  .testimonials #carouselExampleControls .carousel-control-prev-icon,
  .testimonials #carouselExampleControls .carousel-control-next-icon {
      filter: none !important;
      opacity: 0.9;
  }
}

.testimonials .quote-img {
  width: 80px;
  height: auto;
}

/* Responsive styles with more specificity */
@media (min-width: 576px) {
  .testimonials .carousel-item {
      margin-right: 0;
      flex: 0 0 50%;
      display: block;
  }
  
  .testimonials .carousel-inner {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE and Edge */
  }
  
  /* Hide webkit scrollbar by default */
  .testimonials .carousel-inner::-webkit-scrollbar {
      display: none;
  }
  
  /* Custom scrollbar that only shows during scroll */
  /* .testimonials .carousel-inner.scrolling {
      scrollbar-width: thin;
      scrollbar-color: rgba(148, 146, 147, 0.8) transparent;
  }
  
  .testimonials .carousel-inner.scrolling::-webkit-scrollbar {
      display: block;
      height: 4px;
  } */
  
  /* .testimonials .carousel-inner.scrolling::-webkit-scrollbar-track {
      background: transparent;
  }
  
  .testimonials .carousel-inner.scrolling::-webkit-scrollbar-thumb {
      background-color: rgba(191, 2, 63, 0.8);
      border-radius: 2px;
  } */
  
  .testimonials .carousel-item {
      scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .testimonials .carousel-inner {
      padding: 1em;
  }
  
  .testimonials #carouselExampleControls .carousel-control-prev {
      left: 6rem;
      top: 90%;
  }
  
  .testimonials #carouselExampleControls .carousel-control-next {
      left: 10rem;
      top: 90%;
  }
}

/* Additional fixes for better appearance */
.testimonials .img-wrapper {
  width: 100%;
  aspect-ratio: 1; /* Creates a perfect square */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px; /* Optional: adds subtle rounded corners */
}

.testimonials .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-text{
  text-align: justify;
}

/* Responsive image sizing */
@media (max-width: 576px) {
  .testimonials .img-wrapper {
      aspect-ratio: 4/3; /* Slightly wider on mobile for better space usage */
  }
}

@media (min-width: 768px) {
  .testimonials .img-wrapper {
      aspect-ratio: 3/2; /* More rectangular on desktop */
  }
}

/* about section */
   .read-more-btn { 
            display: inline-block;
            width: fit-content;
            background: #bf023f;
            color: white !important;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-weight: 500;
            margin-top: 20px;
        }
        
        .read-more-btn:hover {
            background: #a00234;
            color: white;
            text-decoration: none;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 15px;
            height: 400px;
        }
        
        .image-item {
            overflow: hidden;
            position: relative;
            opacity: 0;
    transform: scale(0.8);
        }
        
        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .image-item:hover img {
            transform: scale(1.05);
        }
        
        .image-item:nth-child(1),
        .image-item:nth-child(4) {
            border-radius: 0;
        }
        
        .image-item:nth-child(2) {
            border-radius: 0 20px 0 0;
        }

        .image-item:nth-child(3) {
            border-radius: 0 0 0 20px;
        }
        
        .about-content {
            padding-left: 40px;
            opacity: 0;
            transform: translateX(-50px);
        }
        
        .about-content h2 {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
        }
        
        .about-content h2::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60px;
            background: #bf023f;
        }
        
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .about-header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .about-header {
                margin-bottom: 40px;
            }

            .about-header h1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .mobile-layout {
                display: flex;
                flex-direction: column;
            }
            
            .about-content {
                padding-left: 0;
                order: 1;
                margin-bottom: 30px;
            }

            .image-grid-mobile {
                order: 2;
                height: 350px;
                gap: 10px;
                margin-bottom: 20px;
            }
            
            .about-content h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
                 text-align: center;
            }
            
            .about-content h2::before {
                left: 45%;
                top: 0px;
                width: 45px;
                height: 4px;
            }

            .about-content h6 {
                font-size: 0.9rem;
            }
            
            .about-content p {
                font-size: 1rem;
                margin-bottom: 15px;
                text-align: center;
            }
            .about-description{
              text-align: justify !important;
            }
            .read-more-btn {
                padding: 10px 20px;
                font-size: 0.95rem;
                margin-top: 15px;
            }

            /* Hide desktop grid on mobile */
            .col-lg-5 .image-grid {
                display: none;
            }
        }

        /* Desktop Styles - keep original layout */
        @media (min-width: 769px) {
            .image-grid-mobile {
                display: none;
            }
            
            .mobile-layout {
                display: flex;
                flex-direction: row;
                align-items: center;
            }
        }
        @keyframes slideFromTopLeft {
    from {
        opacity: 0;
        transform: translate(-100px, -100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes slideFromTopRight {
    from {
        opacity: 0;
        transform: translate(100px, -100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes slideFromBottomLeft {
    from {
        opacity: 0;
        transform: translate(-100px, 100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes slideFromBottomRight {
    from {
        opacity: 0;
        transform: translate(100px, 100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Animation classes for DESKTOP */
.image-grid .image-item.animate-1 {
    animation: slideFromTopLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.image-grid .image-item.animate-2 {
    animation: slideFromTopRight 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.image-grid .image-item.animate-3 {
    animation: slideFromBottomLeft 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.image-grid .image-item.animate-4 {
    animation: slideFromBottomRight 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

/* Animation classes for MOBILE */
.image-grid-mobile .image-item.animate-1 {
    animation: slideFromTopLeft 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

.image-grid-mobile .image-item.animate-2 {
    animation: slideFromTopRight 0.6s ease-out forwards;
    animation-delay: 0.25s;
}

.image-grid-mobile .image-item.animate-3 {
    animation: slideFromBottomLeft 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

.image-grid-mobile .image-item.animate-4 {
    animation: slideFromBottomRight 0.6s ease-out forwards;
    animation-delay: 0.55s;
}

/* Content animation */
.about-content.animate {
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 0.1s;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        opacity: 0;
        transform: translateX(-30px);
    }
}
.image-item, .about-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.tracking-features-section {
            background: linear-gradient(135deg, #ffff 0%, #ffff 100%);
            font-family: var(--primary-font);
            overflow: hidden;
        }

        .tracking-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .tracking-floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(191, 2, 63, 0.1), rgba(220, 53, 69, 0.1));
            animation: float 6s ease-in-out infinite;
        }

        .tracking-floating-circle:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 80%;
            animation-delay: 0s;
        }

        .tracking-floating-circle:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 60%;
            left: 10%;
            animation-delay: 2s;
        }

        .tracking-floating-circle:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 80%;
            left: 90%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .tracking-section-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .tracking-section-animate.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        .tracking-main-title {
            font-size: 2.5rem;
        }
        .tracking-main-subtitle {
            font-size: 1.3rem;
            color: #666;
            text-align: center;
            font-weight: 500;
        }

        .tracking-feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(76, 74, 75, 0.1);
            position: relative;
            overflow: hidden;
        }

        .tracking-feature-card:hover {
            transform: translateY(-10px);
        }

        .tracking-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
            transition: left 0.5s ease;
        }

        .tracking-feature-card:hover::before {
            left: 0;
        }

        .tracking-card-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .tracking-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        .tracking-card-icon {
            width: 45px;
            height: 45px;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(191, 2, 63, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(191, 2, 63, 0); }
            100% { box-shadow: 0 0 0 0 rgba(191, 2, 63, 0); }
        }

        .tracking-card-description {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: justify;
        }

        .tracking-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .tracking-benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(168, 159, 162, 0.2);
            border-radius: 12px;
            border-left: 4px solid #000;
            transition: all 0.3s ease;
        }

        .tracking-benefit-item:hover {
            background: rgba(168, 159, 162, 0.5);
            transform: translateX(5px);
        }

        .tracking-benefit-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon-img {
            width: 100%;
            height: 100%;
        }

        .tracking-benefit-text {
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }

        .tracking-images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .tracking-image-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            aspect-ratio: 4/3.5;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            opacity: 0;
            transform: scale(0.8) rotate(-15deg);
        }

        .tracking-image-wrapper.animate-in {
            animation: imageSlideIn 0.8s ease-out forwards;
        }

        .tracking-image-wrapper:nth-child(1) {
            animation-delay: 0.1s;
        }

        .tracking-image-wrapper:nth-child(2) {
            animation-delay: 0.2s;
        }

        .tracking-image-wrapper:nth-child(3) {
            animation-delay: 0.3s;
        }

        .tracking-image-wrapper:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes imageSlideIn {
            0% {
                opacity: 0;
                transform: scale(0.8) rotate(-15deg) translateY(30px);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.05) rotate(5deg) translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg) translateY(0px);
            }
        }

        .tracking-image-wrapper:hover {
            transform: translateY(-8px) scale(1.03);
            z-index: 2;
        }

        .tracking-image-wrapper:hover:nth-child(odd) {
            transform: translateY(-8px) scale(1.03) rotate(2deg);
        }

        .tracking-image-wrapper:hover:nth-child(even) {
            transform: translateY(-8px) scale(1.03) rotate(-2deg);
        }

        .tracking-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .tracking-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tracking-image-wrapper:hover::before {
            opacity: 1;
        }

        .tracking-image-wrapper::after {
            content: '';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            color: var(--primary-red);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .tracking-image-wrapper:nth-child(1)::after { content: '1'; }
        .tracking-image-wrapper:nth-child(2)::after { content: '2'; }
        .tracking-image-wrapper:nth-child(3)::after { content: '3'; }
        .tracking-image-wrapper:nth-child(4)::after { content: '4'; }

        .tracking-image-wrapper:hover::after {
            opacity: 1;
            transform: scale(1.1);
        }

        .tracking-try-button {
            background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
            border: none;
            color: white !important;
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .tracking-try-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .tracking-try-button:hover {
            transform: translateY(-2px);
            color: white;
        }

        .tracking-try-button:hover::before {
            left: 100%;
        }

        /* Image Loading Animation Variants */
        @keyframes imageZoomIn {
            from {
                opacity: 0;
                transform: scale(0.5) rotate(180deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes imageFlipIn {
            from {
                opacity: 0;
                transform: perspective(400px) rotateY(90deg);
            }
            to {
                opacity: 1;
                transform: perspective(400px) rotateY(0deg);
            }
        }

        @keyframes imageBounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Alternative animation classes */
        .tracking-image-wrapper.zoom-in {
            animation: imageZoomIn 0.6s ease-out forwards;
        }

        .tracking-image-wrapper.flip-in {
            animation: imageFlipIn 0.8s ease-out forwards;
        }

        .tracking-image-wrapper.bounce-in {
            animation: imageBounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        /* Mobile Image Slideshow (hidden on desktop) */
        .mobile-image-slideshow {
            display: none;
        }

        .mobile-benefits-grid {
            display: none;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .tracking-main-title {
                font-size: 22px;
            }
           
            .tracking-card-title {
                font-size: 1.2rem;
                text-align: center;
                gap: 5px;
                flex-direction: row;
                justify-content: center;
            }
           
            /* Hide desktop images grid on mobile */
            .tracking-images-grid {
                display: none !important;
            }

            /* Show mobile image slideshow */
            .mobile-image-slideshow {
                display: block;
                position: relative;
                width: 100%;
                max-width: 400px;
                height: 240px;
                margin: 20px auto;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            }

            .mobile-slide-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 1s ease-in-out;
            }

            .mobile-slide-image.active {
                opacity: 1;
            }

            .mobile-slide-image img {
                width: 100%;
                height: 100%;
            }

            /* Hide desktop benefits grid on mobile */
            .tracking-benefits-grid {
                display: none !important;
            }

            /* Show mobile benefits grid */
            .mobile-benefits-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px 15px;
                margin-bottom: 30px;
            }

            .mobile-benefit-item {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .mobile-benefit-icon {
                width: 35px;
                height: 35px;
                flex-shrink: 0;
                background: rgba(168, 159, 162, 0.2);
                border-radius: 6px;
                padding: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-benefit-icon img {
                width: 100%;
                height: 100%;
            }

            .mobile-benefit-text {
                font-size: 0.9rem;
                color: #333;
                font-weight: 500;
                line-height: 1.3;
            }

            .tracking-card-description {
                margin-bottom: 25px;
            }

            /* Mobile layout order */
            .mobile-content-order {
                order: 1;
            }

            .mobile-images-order {
                order: 2;
            }

            .mobile-description-order {
                order: 3;
            }

            .mobile-benefits-order {
                order: 4;
            }

            .mobile-button-order {
                order: 5;
            }
            
        }

        @media (max-width: 576px) {
             .mobile-image-slideshow {
                width: 100%;
                max-width: 320px;
                height: 192px;
            }
        }
        .btn-close {
              filter: invert(1);
          }
 /* Feature Badges */
  .feature-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .feature-badge {
    background-color: #0d47a1;
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  @media (max-width: 767px) {
  
    .feature-badges {
      gap: 6px;
    }

    .feature-badge {
      font-size: 0.6rem;
      padding: 5px 6px;
    }
  }
   @media (max-width: 480px) {
    
    .feature-badges {
      gap: 4px;
    }

    .feature-badge {
      font-size: 0.45rem;
      padding: 3px 3px;
    }
  }
  /* Key Services Section */
.key-services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
}

.services-header {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-header h3 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-underline {
    height: 3px;
    width: 120px;
    background-color: #bf023f;
}

/* Services Info bar with language switch */
.services-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    gap: 15px;
}

.services-header.animate-in ~ .services-info-bar {
    opacity: 1;
    transform: translateY(0);
}

.services-info-text {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    flex: 1;
    min-width: 0;
}

/* Language Toggle Switch */
.services-language-controls {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.services-language-switch {
    padding: 8px 25px;
    border: none;
    border-bottom: 2px solid #bf023f;
    background-color: transparent;
    color: #bf023f;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 100px;
    white-space: nowrap;
}

.services-language-switch:hover {
    background-color: transparent;
    border-bottom-color: #8f0230;
    color: #8f0230;
}

.services-language-switch:active {
    transform: scale(0.98);
}

.first-word-red {
  color: #bf023f;
  font-weight: 600;
}

/* Desktop Service Message Box (Speech Bubble) */
.service-message-box {
    position: absolute;
    background-color: #fff;
    border: 2px solid #d0d0d0;
    border-radius: 10px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.service-message-box.show {
    opacity: 1;
    visibility: visible;
}

.service-message-box::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/* Pointer positions based on message box location */
.service-message-box.pointer-bottom::before {
    bottom: -10px;
    left: var(--service-pointer-left, 50%);
    transform: translateX(-50%);
    border-top: 10px solid #d0d0d0;
}

.service-message-box.pointer-bottom::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: var(--service-pointer-left, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fff;
}

.service-message-box.pointer-top::before {
    top: -10px;
    left: var(--service-pointer-left, 50%);
    transform: translateX(-50%);
    border-bottom: 10px solid #d0d0d0;
}

.service-message-box.pointer-top::after {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--service-pointer-left, 50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
}

.service-message-box.pointer-left::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 10px solid #d0d0d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.service-message-box.pointer-left::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 9px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.service-message-box.pointer-right::before {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #d0d0d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.service-message-box.pointer-right::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.service-message-content {
    color: #333;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
}

/* ========================
   Mobile Service Bottom Sheet
======================== */
.service-bottom-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.service-bottom-sheet.active {
    display: block;
    transform: translateY(0);
}

.service-sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 12px auto;
}

.service-sheet-header {
    padding: 4px 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.service-sheet-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-sheet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-sheet-title {
    font-size: 14px;
    font-weight: 700;
    color: #bf023f;
    margin: 0;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
}

.service-sheet-lang-switch {
    padding: 4px 12px;
    border: none;
    border-bottom: 1px solid #bf023f;
    background: transparent;
    color: rgb(0, 0, 0);
    border-radius: 0;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.service-sheet-lang-switch:active {
    background: #e0e0e0;
}

.service-sheet-body {
    padding: 16px 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.service-sheet-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: center;
}

.service-sheet-footer {
    padding: 16px 24px 24px;
}

.service-sheet-button {
    width: auto;
    margin: 0 auto !important;
    display: block;
    padding: 10px 40px;
    background: #fff;
    color: #bf023f;
    border: 2px solid #D7D7D7;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

/* Modal Overlay for Mobile */
.service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.service-modal-overlay.active {
    display: block;
}

.services-container {
    position: relative;
}

/* Services Grid - Card Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 0px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 7px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-card.active {
    border-color: #bf023f;
    box-shadow: 0 8px 20px rgba(191, 2, 63, 0.25);
    background-color: #fff9fa;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 8px;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animate-in .service-icon-img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.service-card:hover .service-icon-img {
    transform: scale(1.1) rotate(3deg);
}

.service-content {
    flex: 1;
    text-align: left;
}

.service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #020202;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .key-services-section {
        padding: 40px 20px;
    }

    .services-header h3 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-card {
        text-align: center;
        padding: 8px 8px;
    }

    .service-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .service-title {
        font-size: 0.8rem;
    }
    .services-language-switch {
        padding: 6px 15px;
        font-size: 0.85rem;
        min-width: 80px;
    }

    .services-info-bar {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .services-info-text {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hide desktop message box on mobile */
    .service-message-box {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .services-header h3 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1px 2px;
    }

    .service-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .service-title {
        font-size: 0.62rem;
    }

    .services-info-text {
        font-size: 0.80rem;
    }

    .services-language-switch {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 65px;
    }

    .key-services-section {
        padding: 5px 10px;
    }
}

/* Desktop only - show message box */
@media (min-width: 769px) {
    .service-bottom-sheet {
        display: none !important;
    }
}
#serviceSheetGoBtn:hover,
#serviceSheetGoBtn:active {
  background-color: #198754;
  color: #ffffff !important;
}

#serviceSheetCloseBtn:hover,
#serviceSheetCloseBtn:active {
  background-color: #bf023f;
  color: #ffffff !important;
}
