.feature-title_1 {
  margin-bottom: 10px;
  transition: all 0.4s;
  font-size: 22px;
  font-weight: 600;
  color: var(--vtc-text-title-1);
}




























.fixed-button {
    position: fixed;
    bottom: 500px;
    right: 20px;
    font-size: 10px;
    z-index: 1050;
    /* Ensure it's above other elements */
}

.hero-section {
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.2), rgba(51, 51, 51, 0.2)),
        url('../breadcrumb/product-bg-new-2.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    /*min-height: 80vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    width: 100%;
    /*max-width: 1200px;*/

}

.sharp-img {
  image-rendering: auto;             /* default: good for photos */
  image-rendering: crisp-edges;      /* improves sharpness for non-photo images */
  image-rendering: -webkit-optimize-contrast; /* improves contrast in some browsers */
  backface-visibility: hidden;
  transform: translateZ(0);          /* triggers GPU rendering, can help sharpness */
  will-change: transform;
  display: block;
  max-width: 100%;
  height: auto;
}
/*food*/
.food-hero-section {
  position: relative;
  background: url('../breadcrumb/food-3d-2.png') no-repeat center center;
  background-size: cover;
  color: white;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(20px); /* for Safari */
  background: rgba(0, 0, 0, 0.4); /* optional overlay */
  z-index: 1;
}
/*end*/
.hero-wrapper-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    width: 100%;
    max-width: 1200px;
}
/**/
.content {
    flex: 1;
}

.content h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #141414;
    z-index: 9999;
}

.content h2 {
    line-height: 20px;
    font-weight: 400;
    font-size: 19px;
    color: #000;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1d8cc6;
    color: white;
}

.btn-primary:hover {
    background-color: #f76815;
}

/*tabs*/
.site-header {
    background: #fff;
    padding: 13px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
     display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    max-width: 1200px;
    margin: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

h1 {
    color: var(--vtc-text-title-1);
    font-weight: 600;
    font-size: 25px;
    /*margin-bottom: 10px;*/
}

nav ul li {
    cursor: pointer;
    margin-right: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    /*padding: 5px 10px;*/
    border-radius: 8px;
    background-color: #212121;
}

/* Optional: remove right margin from the last item */
nav ul li:last-child {
    margin-right: 0;
}

nav ul .active {
    color:white ;
    /*border-bottom: 2px solid #1d8cc6;*/
    background: #1d8cc6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/**/
#description {
    padding: 60px 20px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.text-container {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    flex: 1 1 500px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}

.text-container h2 {
    transition: all 0.4s;
  font-size: 25px;
  font-weight: 600;
  color: var(--vtc-text-title-1);
}


.image-container {
    flex: 1 1 400px;
    /*text-align: center;*/
}

.image-container img {
    max-width: 100%;
    height: 450px;
    border-radius: 8px;
}

/**/
/* Feature Section */
#features {
    width: 100%;
    padding: 50px 0;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    /*min-height: 200px;*/
    border-radius: 10px;
}

.feature-box img {
    max-width: 40%;
    height: auto;
    margin-right: 20px;
}

.feature-box .text-content {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}

.feature-box h3 {
    font-size: 25px;
  font-weight: 600;
  color: var(--vtc-text-title-1);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 18px;
    color: #333;
}

/**/
.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.styled-table thead th {
    text-align: left;
    vertical-align: top;
    padding: 12px;
    background: none;
    border-bottom: none;
    border: none;
}

.styled-table td {
    background-color: #fdfdfd;
    padding: 12px 16px;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    color: #000;
font-family: var(--bs-body-font-family);
font-weight: 400;
font-size: 16px;
}

.styled-table tr td:first-child {
    font-weight: 600;
    color: var(--vtc-text-title-1);
    background-color: #f5f5f5;
    width: 35%;
}

.category-button {
    background: linear-gradient(to right, #141414, #000);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: default;
    transition: box-shadow 0.3s ease;
}

.category-button.shadow {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.category-header {
    background-color: transparent;
    padding-bottom: 0;
}

#specs {
    display: grid;
    grid-template-columns: 250px auto;
    gap: 30px;
    padding: 20px;
    align-items: flex-start;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 62%;
    margin: auto;
}

.specs-box {
    flex: 1 1 calc(50% - 20px);
    /* Two columns */
    min-width: 600px;
}

.h3-heading {
    background-color: #1d8cc6;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.spec-row span {
    flex: 1;
    font-size: 0.95rem;
}

.spec-row span:first-child {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .specs-box {
        flex: 1 1 100%;
        /* Full width on small screens */
    }

    .spec-row {
        flex-direction: column;
    }
}

/**/
/* General Section Styles */
/* Container for the Applications Section */
.applications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Title of the Applications Section */
.applications-title {
    text-align: center;
    color: #1d1d1d;
    /* Dark, neutral color */
    font-size: 40px;
    /* Larger title font size */
    font-weight: 700;
    /* Bold weight */
    margin-bottom: 30px;
    /* Larger margin for spacing */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Subtitle with additional information */
.applications-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    /* Lighter text for subtitle */
    font-size: 18px;
    /* Larger font size for readability */
    line-height: 1.7;
    /* Improved line height for better spacing */
}

/* Grid container with flexible layout */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    /* Larger gap between items */
}

/* Individual grid items */
.grid-item {
    background: #f7f7f7;
    /* Light background */
    padding: 35px;
    border: none;
    /* No border */
    border-radius: 5px;
    /* Soft rounded corners */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition */
    flex-basis: 48%;
    /* Each item takes up 48% of the container width */
    box-sizing: border-box;
}

/* Hover effect for grid items */
.grid-item:hover {
    transform: translateY(-6px);
    /* Lift effect on hover */
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
}

/* Title inside each grid item */
.grid-item h3 {
    font-size: 25px;
    color: var(--vtc-text-title-1);
    margin-bottom: 10px;
    font-weight: 600;
}

/* List styling inside each grid item */
.grid-item ul {
    padding-left: 20px;
    list-style-type: circle;
    /* Circle bullets instead of disc */
    color: #444;
    font-size: 16px;
    /* Larger font for list items */
    line-height: 1.6;
}

/* List item styling */
.grid-item li {
    margin-bottom: 5px;
    color: #000;
    font-family: var(--bs-body-font-family);
    font-weight: 400;
    font-size: 16px;
}
.h2-dp
{
 
  line-height: 0.2;
}
/**/
/* Container Grid: Always 2 per row on larger screens */
.feature-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Feature Item Styling */
.feature-item {
  background-color: #f7f7f7;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
   border-radius: 5px;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* Icon Style */
.feature-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      flex-shrink: 0;
    }

    .feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  /* Remove filter */
}
.feature-icon img {
  filter: none; /* restores original colors */
}
/* Text Content */
.feature-content {
  flex: 1;
}

.feature-title {
    margin-bottom: 10px;
    transition: all 0.4s;
  font-size: 25px;
  font-weight: 600;
  color: var(--vtc-text-title-1);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  line-height: 25px;
color: #000;
font-family: var(--bs-body-font-family);
font-weight: 400;
font-size: 16px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 16px;
}

.feature-text {
color: #000;
font-family: var(--bs-body-font-family);
font-weight: 400;
font-size: 16px;
  
}

.feature-highlight {
  font-size: 14.5px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0 5px;
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
  .feature-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

/**/
/* Responsive Breakpoints for smaller screens */
@media (max-width: 1024px) {
    .applications-title {
        font-size: 32px;
        /* Adjust font size for mid-size screens */
    }

    .applications-subtitle {
        font-size: 16px;
        /* Smaller subtitle font for mid-size screens */
    }

    .grid-container {
        gap: 30px;
    }

    .grid-item {
        flex-basis: 100%;
        /* Full width on smaller screens */
    }
}

@media (max-width: 768px) {
    .applications-title {
        font-size: 28px;
        /* Further reduce the title size */
    }

    .applications-subtitle {
        font-size: 14px;
        /* Subtitle size for smaller screens */
        max-width: 100%;
        /* Ensure subtitle fits on mobile */
    }

    .grid-container {
        gap: 25px;
    }

    .grid-item {
        padding: 25px;
        /* Adjust padding for mobile */
    }
}

@media (max-width: 480px) {
    .applications-title {
        font-size: 24px;
        /* Adjust title size for very small screens */
    }

    .applications-subtitle {
        font-size: 13px;
        /* Further reduce subtitle size */
    }

    .grid-container {
        gap: 20px;
    }
    .pera1 {
  color: #000;
  font-family: var(--bs-body-font-family);
}
.ui-text
{
    color: #000;
font-family: var(--bs-body-font-family);
font-weight: 400;
font-size: 16px;
}


@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    align-items: center;
  }
   .content h1 {
    font-size: 32px;
    margin-top: 80px;
  }
    .did {
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.2), rgba(20, 20, 20, 0.2), rgba(51, 51, 51, 0.2)), url('assets/breadcrumb/product-bg-new-2.jpeg') no-repeat center center;
    background-size: auto, auto;
    background-size: cover;
    color: white;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
   .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
.text-container {
  background: #f7f7f7;
  padding: 35px;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 500px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  nav ul li {
  cursor: pointer;
      margin-right: 1px;
      color: #fff;
      font-weight: 600;
      font-size: 10px;
}
  nav ul {
    display: flex;
    flex-direction: row;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .specs-container {
        width: 95%; /* Wider container for smaller screens */
    }

    .specs-box {
        flex: 1 1 100%; /* Full width per box */
        min-width: auto;
    }

    .spec-row {
        display: table; /* Makes rows appear more like table rows */
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }

    .spec-row span {
        display: table-cell;
        font-size: 0.95rem;
        padding: 6px 0;
        vertical-align: top;
    }

    .spec-row span:first-child {
        font-weight: bold;
        color: #333;
        width: 40%; /* Label width */
    }

    .spec-row span:last-child {
        width: 60%; /* Value width */
    }
}
/**/
.feature-box {
  background: white;
  padding: 20px;
  display: flex;
  flex-direction: row; /* default: image left, content right */
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  min-height: 200px;
  border-radius: 10px;
  gap: 20px; /* optional spacing */
}

.feature-box img {
  max-width: 40%;
  height: auto;
}

.feature-box .content {
  flex: 1;
}

/* MOBILE VIEW: Stack image on top, content below */
@media (max-width: 768px) {
  .feature-box {
    flex-direction: column;
    text-align: center;
  }

  .feature-box img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .feature-box .content {
    text-align: left;
  }
}

