#home {
  border-bottom: 10px solid;
  border-image: var(--gradient-color) 1;
}
.industries-section {
  background: #fff;
  padding: 75px 0;
  text-align: center;
}
.industries-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 16px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 15%;
  cursor: default;
}
.industry-icon {
  width: 70%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffaf4;
  transition: var(--transition);
  overflow: hidden;
  padding: 10px;
}
.industry-icon > span {
  display: block;
  padding-bottom: 100%;
}
.industry-item:nth-child(odd) .industry-icon {
  background-color: #fae5ca;
  border: 2px solid #fae5ca;
}
.industry-item:nth-child(even) .industry-icon {
  background-color: #f6d1c7;
  border: 2px solid #f6d1c7;
}
.industry-icon svg {
  width: 80%;
  object-fit: contain;
}
.industry-item:hover .industry-icon {
  border-color: var(--accent-color);
  background: #fff8ec;
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.22);
  border: 2px solid #f6d1c7;
}
.industry-item span {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.35;
}
.philosophy-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-img {
  width: 90%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.phil-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.phil-slide {
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: fadeSlide 0.4s ease;
}
.phil-slide.active {
  display: flex;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.phil-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.phil-img {
  width: 31%;
  border-radius: 0 6px 0 6px;
  flex-shrink: 0;
  object-fit: cover;
}
.phil-feature h4 {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 6px;
}
.phil-feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}
.phil-dots {
  display: flex;
  gap: 8px;
  margin: 20px 0 24px;
}
.phil-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.phil-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}
.products-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
  background: var(--gradient-color);
  border-radius: 0 50px 0 50px;
}
.product-card {
  padding: 60px 50px;
  position: relative;
}
.product-card.featured {
  border-right: 1px solid #d94646;
  border-radius: 0px 0 0 50px;
}
.product-card.muted {
  border-radius: 0 50px 0px 0;
}
.product-card:hover,
.product-card:hover::before {
}
.product-card:hover a {
  background: #000;
  color: #fff;
  animation: blink 1.5s ease infinite;
}
.product-card h3 {
  font-family: var(--secondary-font);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.2;
}
.product-video {
  position: relative;
  margin-bottom: 22px;
}
.product-video video {
  width: 100%;
  max-height: 500px;
}
.product-img {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  margin-bottom: 22px;
}
.product-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 26px;
}
.product-card .btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.process-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0 auto;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 22%;
}
.process-icon-wrap:before {
  content: "";
  position: absolute;
  width: 25%;
  height: 25%;
  left: 94%;
  clip-path: polygon(
    0% 20%,
    60% 20%,
    60% 0%,
    100% 50%,
    60% 100%,
    60% 80%,
    0% 80%
  );
  top: 28%;
}
.process-step:nth-child(1) .process-icon-wrap:before {
  background-color: #f89f1b;
}
.process-step:nth-child(3) .process-icon-wrap:before {
  background-color: #f04e23;
}
.process-step:nth-child(5) .process-icon-wrap:before {
  background-color: #ed2224;
}
.process-icon-wrap {
  width: 80%;
  position: relative;
  transition: var(--transition);
}
.process-icon-wrap:hover {
  transform: translateY(-6px);
}
.process-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.step-label {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dark);
}
.process-arrow {
  color: var(--primary-color);
  margin-bottom: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 2%;
}
.process-arrow svg {
  width: 30px;
  height: 30px;
}
.why-section {
  background: var(--bg-dark);
  padding: 80px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.why-img-wrap {
  display: flex;
  justify-content: center;
}
.why-img-frame {
  position: relative;
  display: inline-block;
}
.why-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 10px;
}
.why-tagline {
  font-size: 28px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.5;
}
.why-tagline strong {
  font-weight: 700;
}
.stat-bars {
  margin-top: 10px;
}
.stat-bar-item {
  margin-bottom: 20px;
}
.stat-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 7px;
  font-weight: 500;
}
.stat-bar-track {
  height: 11px;
  background: #818286;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--gradient-color);
  width: 0;
  transition: width 1.3s ease;
}
@media (max-width: 900px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .products-section {
    grid-template-columns: 1fr;
  }
  .philosophy-img,
  .why-img {
    max-width: 380px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .product-card {
    padding: 40px 24px;
  }
  .product-card h3 {
    font-size: 1.6rem;
  }
  .process-steps {
    gap: 20px;
  }
  .process-arrow {
    display: none;
  }
  .process-step {
    width: 110px;
  }
  .process-icon-wrap {
    width: 86px;
    height: 86px;
  }
  .industries-grid {
    gap: 28px;
  }
  .industry-item {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .industries-grid {
    gap: 18px;
  }
  .industry-item {
    width: 85px;
  }
  .industry-icon {
    width: 64px;
  }
  .btn {
      padding: 6px 15px;
      font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .philosophy-inner {
    gap: 50px;
  }
  .why-inner {
    gap: 40px;
  }
  .products-section {
    border-radius: 0 40px 0 40px;
  }
  .product-card {
    padding: 50px 40px;
  }
  .product-card h3 {
    font-size: 2rem;
  }
  .industry-item {
    width: 16%;
  }
  .industries-grid {
    gap: 30px;
  }
  .industry-item:nth-child(odd) .industry-icon{
    box-shadow: none;
    transform: translateY(0px);
        background-color: #fae5ca;
    border: 2px solid #fae5ca;
  }
   .industry-item:nth-child(even) .industry-icon{
    box-shadow: none;
    transform: translateY(0px);
    background-color: #f6d1c7;
    border: 2px solid #f6d1c7;
  }
}
@media (max-width: 768px) {
  .industries-section {
    padding: 55px 0;
  }
  .industries-grid {
    gap: 24px;
  }
  .industry-item {
    width: calc(19% - 18px);
  }
  .philosophy-section {
    padding: 55px 0;
  }
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .philosophy-left {
    justify-content: center;
  }
  .philosophy-img {
    width: 80%;
    max-width: 380px;
    margin: 0 auto;
  }
  .products-section {
    grid-template-columns: 1fr;
    border-radius: 0;
    margin-top: 55px;
  }
  .product-card.featured {
    border-right: none;
    border-bottom: 20px solid #fff;
    border-radius: 0 32px 0 0;
  }
  .product-card.muted {
    border-radius: 0 0 0 32px;
  }
  .product-card {
    padding: 44px 32px;
  }
  .product-card h3 {
    font-size: 1.8rem;
  }
  .process-icon-wrap {
    width: 100%;
  }
  .process-section {
    padding: 55px 0;
  }
  .process-step {
    width: 18%;
  }
  .process-steps {
    flex-wrap: wrap;
    gap: 28px 16px;
    justify-content: center;
  }
  .step-label {
    font-size: 15px;
  }
  .why-section {
    padding: 55px 0 0px 0;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-img-wrap {
    justify-content: center;
  }
  .why-img {
    max-width: 380px;
    width: 80%;
    margin: auto;
  }
  .why-tagline {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .industry-item {
    width: calc(33.333% - 16px);
  }
  .industries-grid {
    gap: 18px;
  }
  .phil-feature {
    flex-direction: column;
    gap: 12px;
  }
  .phil-img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 6px;
  }
  .product-card {
    padding: 36px 20px;
  }
  .product-card h3 {
    font-size: 1.5rem;
  }
  .product-card p {
    font-size: 14px;
  }
  .why-tagline {
    font-size: 19px;
  }
  .stat-bar-label {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .industry-item {
    width: calc(33.333% - 12px);
  }
  .industry-icon {
    width: 80%;
  }
  .products-section {
    border-radius: 0;
  }
  .product-card.featured {
    border-radius: 0;
    border-bottom:20px solid #fff;
  }
  .product-card.muted {
    border-radius: 0;
  }
  .product-card {
    padding: 28px 16px;
  }
  .product-card h3 {
    font-size: 1.35rem;
  }
  .process-steps {
    gap: 15px 10px;
  }
  .process-steps {
    margin-top: 0;
  }
  .process-icon-wrap:before {
    left: 89%;
  }
  .process-step {
    width: 22%;
    gap: 0;
  }
  .step-label {
    font-size: 11px;
  }
  .phil-slide{
    display: flex !important;
    gap: 31px;
    margin-bottom: 35px;
  }
  .phil-slide:last-child .phil-feature:last-child,.phil-dots{
    display: none;
  }
}
@media (max-width: 360px) {
  .process-step {
    width: 21%;
  }
  .process-icon-wrap:before {
    width: 21%;
  }
}
