/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #2d465e;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d5d80;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0064a8;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ededed;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: rgb(172, 222, 255);
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0064a8;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #0064a8;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: rgb(172, 222, 255);
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #272727;
  --default-color: #ffffff;
  --heading-color: #858585;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 75px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0064a8;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    height: fit-content;
  }
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #010306;
  color: var(--contrast-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}



.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 80px 0 15px;
  /* min-height: 60vh; */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 10%, var(--accent-color) 45%, transparent 45%, transparent 100%);
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

.hero .hero-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
    padding: 1rem;
  }
}

.hero .hero-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h2 span {
  color: var(--accent-color);
  position: relative;
}

/* .hero .hero-content h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1px;
  opacity: 0.3;
} */

.hero-visual video {
    object-fit: contain;
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h2 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 15px;
  max-width: 500px;
}

@media (max-width: 991px) {
  .hero .hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
    padding: 1rem;
    text-align: center;
  }
}

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-color);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 55%);
  margin-bottom: 24px;
}

.hero .hero-content .hero-badge i {
  color: var(--accent-color);
  font-size: 14px;
}

.hero .hero-content .hero-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-primary,
.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 500;
  /* font-size: 12px; */
  /* text-transform: uppercase; */
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 2px solid transparent;
}


.hero .btn-primary:hover,
.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.btn-primary, .btn-primary:hover {
    box-shadow: none;
}



.hero .hero-content .hero-actions .btn-secondary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--heading-color);
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .btn-secondary, .btn-secondary {
    border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}


.hero .hero-content .hero-actions .btn-secondary:hover, .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}


.hero .hero-visual {
  position: relative;
}

.hero .hero-visual .visual-container {
  position: relative;
  padding: 20px;
}

.hero .hero-visual .visual-container .main-screen, .hero  .visual-container .ratio::before {
  width: 100%;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hero .hero-visual .visual-container .floating-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

@media (max-width: 992px) {
  .hero .hero-visual .visual-container .floating-card {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .hero .hero-visual .visual-container .floating-card {
    display: none;
  }
}

.hero .hero-visual .visual-container .floating-card .card-icon {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero .hero-visual .visual-container .floating-card .card-icon {
    width: 36px;
    height: 36px;
  }
}

.hero .hero-visual .visual-container .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

@media (max-width: 992px) {
  .hero .hero-visual .visual-container .floating-card .card-icon i {
    font-size: 18px;
  }
}

.hero .hero-visual .visual-container .floating-card .card-icon.success {
  background: color-mix(in srgb, #10b981, transparent 90%);
}

.hero .hero-visual .visual-container .floating-card .card-icon.success i {
  color: #10b981;
}

.hero .hero-visual .visual-container .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.hero .hero-visual .visual-container .floating-card .card-content .card-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 992px) {
  .hero .hero-visual .visual-container .floating-card .card-content .card-value {
    font-size: 18px;
  }
}

.hero .hero-visual .visual-container .floating-card .card-content .card-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero .hero-visual .visual-container .floating-card .card-content .card-label {
    font-size: 12px;
  }
}

.hero .hero-visual .visual-container .floating-card.card-1 {
  top: 15%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero .hero-visual .visual-container .floating-card.card-2 {
  bottom: 55%;
  right: -5%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero .hero-visual .visual-container .floating-card.card-3 {
  top: 80%;
  left: -8%;
  animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero .floating {
  max-width: 85%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%));
}

@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  display: flex;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-services .service-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
}

.featured-services .service-card:hover .card-media img {
  transform: scale(1.04);
}

.featured-services .service-card:hover .link-action {
  color: var(--accent-color);
}

.featured-services .service-card:hover .link-action i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .featured-services .service-card {
    flex-direction: column;
  }
}

.featured-services .card-media {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
}

.featured-services .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-services .card-media .badge-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--surface-color);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  border-radius: 12px;
}

.featured-services .card-media .badge-label i {
  font-size: 12px;
}

@media (max-width: 576px) {
  .featured-services .card-media {
    /* flex: 0 0 200px; */
    max-width: 100%;
    height: auto;
  }
}

.featured-services .card-body {
  flex: 1 1 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.featured-services .card-body ul {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 16px;
  flex-grow: 1;
  text-align: start;
}

.featured-services .card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.featured-services .card-head h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
  color: var(--heading-color);
}

.featured-services .card-head .meta-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
  padding-top: 4px;
}

.featured-services .card-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.featured-services .link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-services .link-action i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.featured-services .link-action:focus {
  outline: none;
  color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
  border-radius: 4px;
}

.featured-services .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px color-mix(in srgb, #22c55e 20%, transparent);
}

@media (max-width: 768px) {
  .featured-services .card-media {
    flex: 0 0 35%;
    max-width: 100%;
  }

  .featured-services .card-body {
    padding: 20px;
  }

  .featured-services .card-head h3 {
    font-size: 16px;
  }
}

button {
  border: transparent;
}


.ventajas {
  background-color: var(--surface-color);
  border-radius: 4px;
  color: var(--heading-color);
  padding: 10px;
  margin-bottom: .5rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

/*================================================
TABLA
================================================*/

.capacidades-table {
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: var(--background-color);
}

/* Header */
.capacidades-table thead th {
  background: var(--default-color);
  color: var(--contrast-color);
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 22px 20px;
  border: none;
  white-space: nowrap;
}

/* Celdas */
.capacidades-table tbody td {
  padding: 22px 20px;
  font-size: 0.95rem;
  color: var(--default-color);
  border-top: 1px solid rgba(45, 70, 94, 0.08);
  vertical-align: middle;
}

/* Primera columna */
.capacidades-table tbody td:first-child {
  color: var(--accent-color);
  font-weight: 700;
}

/* Zebra */
.capacidades-table tbody tr:nth-child(even) {
  background: rgba(45, 70, 94, 0.04);
}

/* Hover */
.capacidades-table tbody tr {
  transition: all 0.25s ease;
}

.capacidades-table tbody tr:hover {
  background: rgba(0, 100, 168, 0.06);
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 991px) {


  .capacidad-table thead th,
  .capacidad-table tbody td {
    padding: 18px 16px;
  }

}

@media (max-width: 768px) {

  .sandblast-capacidades {
    padding-top: 70px;
    padding-bottom: 70px;
  }



}


/*================================================
VIDEO
================================================*/

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  /* min-height: 540px; */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.industrial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*================================================
CONTENIDO
================================================*/

.applications-content {
  padding-left: 10px;
}

/* Badge */
.section-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--accent-color);
}




/*================================================
LISTA
================================================*/

.applications-list {
  margin-bottom: 35px;
}

.applications-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
}

/* Ícono */
.applications-list li i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  margin-top: 4px;
}

/*================================================
TAGS INDUSTRIAS
================================================*/

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: var(--background-color);
  border: 1px solid rgba(45, 70, 94, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.industry-tags span:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 1199px) {

  .video-wrapper {
    min-height: 480px;
  }

}

@media (max-width: 991px) {

  .applications-content {
    padding-left: 0;
  }

  .video-wrapper {
    min-height: 420px;
  }


}

@media (max-width: 768px) {

  .sandblast-applications {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .video-wrapper {
    min-height: 320px;
  }



  .applications-list li {
    font-size: 0.92rem;
  }

  .industry-tags span {
    font-size: 0.68rem;
    padding: 10px 14px;
  }

}

/*================================================
VENTAJAS
================================================*/

.sandblast-benefits {
  background: var(--background-color);
  overflow: hidden;
}


/*================================================
GRID BENEFICIOS
================================================*/

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
}

/* Item */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Ícono */
.benefit-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.benefit-icon img {
 max-width: 40px;
}

.benefit-item:hover .benefit-icon {
  /* background: var(--accent-color);
  color: var(--contrast-color); */
  transform: translateY(-4px);
}

/* Texto */
.benefit-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 10px;
}

.benefit-text p {
  /* font-size: 0.95rem; */
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

/*================================================
IMAGEN
================================================*/

.benefits-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefits-image:hover img {
  transform: scale(1.04);
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 1199px) {

  .benefits-image {
    min-height: 560px;
  }

}

@media (max-width: 991px) {



  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-image {
    min-height: 450px;
  }

}

@media (max-width: 768px) {

  .sandblast-benefits {
    padding-top: 70px;
    padding-bottom: 70px;
  }


  .benefit-text h3 {
    font-size: 1rem;
  }

  .benefit-text p {
    font-size: 0.92rem;
  }

  .benefits-image {
    min-height: 320px;
  }

}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin: -0.5px;
  transition: border-color 0.3s;
}

.clients .logo-item img {
  max-width: 120px;
  opacity: 1;

  transition: opacity 0.3s, filter 0.3s;
}

.featured-services .clients .logo-item img {
  max-width: 200px;
}

/* .clients .logo-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
} */


@media (max-width: 576px) {
  .clients .logo-item {
    padding: 32px 20px;
  }

  .clients .logo-item img {
    max-width: 90px;
  }
}

/*================================================
ABRASIVOS
================================================*/

.sandblast-abrasivos {
  background: var(--background-color);
  overflow: hidden;
}

/*================================================
CONTENIDO IZQUIERDO
================================================*/

.section-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--accent-color);
}




/* CTA */
.abrasivos-cta {
  margin-top: 35px;
}

.btn-abrasivos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-abrasivos:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/*================================================
BOX DERECHO
================================================*/

.abrasivos-box {
  background: var(--surface-color);
  padding: 45px;
  height: 100%;
  border: 1px solid rgba(45, 70, 94, 0.08);
}

.abrasivos-box-title {
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--default-color);
  margin-bottom: 40px;
}

/*================================================
ITEMS
================================================*/

.abrasivo-item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.abrasivo-item:last-child {
  margin-bottom: 0;
}

/* Sample */
.abrasivo-sample {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 1px solid rgba(45, 70, 94, 0.1);
  background-size: cover;
  background-position: center;
}

/* Texturas simuladas */
.sample-1 {
  background:
    radial-gradient(#a9a9a9 18%, transparent 19%),
    radial-gradient(#bdbdbd 18%, transparent 19%);
  background-size: 10px 10px;
  background-color: #cfcfcf;
}

.sample-2 {
  background:
    radial-gradient(#666 18%, transparent 19%),
    radial-gradient(#7a7a7a 18%, transparent 19%);
  background-size: 9px 9px;
  background-color: #7c7c7c;
}

.sample-3 {
  background:
    radial-gradient(#ececec 18%, transparent 19%),
    radial-gradient(#dcdcdc 18%, transparent 19%);
  background-size: 11px 11px;
  background-color: #f4f4f4;
}

.sample-4 {
  background:
    radial-gradient(#8d8d8d 18%, transparent 19%),
    radial-gradient(#a3a3a3 18%, transparent 19%);
  background-size: 8px 8px;
  background-color: #c5c5c5;
}

.sample-5 {
  background:
    radial-gradient(#7c7c7c 18%, transparent 19%),
    radial-gradient(#8b8b8b 18%, transparent 19%);
  background-size: 10px 10px;
  background-color: #a0a0a0;
}

/* Text */
.abrasivo-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 8px;
}

.abrasivo-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 991px) {

  .abrasivos-box {
    padding: 35px;
  }

}

@media (max-width: 768px) {

  .sandblast-abrasivos {
    padding-top: 70px;
    padding-bottom: 70px;
  }


  .abrasivos-box {
    padding: 28px;
  }

  .abrasivos-box-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .abrasivo-item {
    gap: 18px;
    margin-bottom: 24px;
  }


}



/*================================================
CARDS
================================================*/

.result-card {
  background: var(--background-color);
  border: 1px solid rgba(45, 70, 94, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  overflow: hidden;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

/*================================================
IMAGEN
================================================*/

.result-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.result-card:hover .result-image img {
  transform: scale(1.04);
}

/* Badge */
.result-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*================================================
CONTENT
================================================*/

.result-content {
  padding: 22px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 991px) {

  .result-image {
    height: 300px;
  }

}

@media (max-width: 768px) {

  .sandblast-results {
    padding-top: 70px;
    padding-bottom: 70px;
  }



  .result-image {
    height: 240px;
  }

  .result-content {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

}



/*================================================
INDUSTRIAS
================================================*/

.industry-card {
  background: var(--background-color);
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(45, 70, 94, 0.08);
  transition: all 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.industry-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 0;
}

/*================================================
MODELOS
================================================*/

.model-card {
  background: var(--background-color);
  border: 1px solid rgba(45, 70, 94, 0.08);
  height: 100%;
  transition: all 0.35s ease;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

.model-image {
  height: 250px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover img {
  transform: scale(1.05);
}

.model-content {
  padding: 28px;
}

.model-capacity {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.model-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.model-specs li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.94rem;
  color: var(--default-color);
}

.model-specs li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  position: absolute;
  left: 0;
  top: 9px;
}

.model-btn {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 22px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.model-btn:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

/*================================================
ACCESORIOS
================================================*/

.accessory-card {
  background: var(--background-color);
  padding: 38px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(45, 70, 94, 0.08);
  transition: all 0.35s ease;
}

.accessory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.accessory-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.accessory-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 0;
}

.accessory-list {
  text-align: start;
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 768px) {

  .sandblast-industries,
  .sandblast-models,
  .sandblast-accessories {
    padding-top: 70px;
    padding-bottom: 70px;
  }



  .industry-card,
  .accessory-card {
    padding: 28px 16px;
  }

  .model-image {
    height: 220px;
  }

  .model-content {
    padding: 24px;
  }

}



.info-box {
  background: var(--surface-color);
  border-radius: 4px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.info-box strong {
  color: var(--accent-color);
}

.pressure-card {
  border: 1px solid #d9d9d9;
  padding: 18px 22px;
  margin-bottom: 18px;
  background: var(--background-color);
}

.pressure-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 20px;
}

.pressure-value {
  font-weight: 800;
  color: #111;
  font-size: 1rem;
  white-space: nowrap;
}

.pressure-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #888;
  text-align: right;
  line-height: 1.4;
}

.progress {
  height: 5px;
  border-radius: 50px;
  background: #dfe3e8;
  overflow: hidden;
}

.progress-bar.orange {
  background: #c78a3d;
}

.progress-bar.blue {
  background: var(--accent-color);
}

.progress-bar.dark-blue {
  background: #3d46b2;
}

@media (max-width: 991px) {


  .pressure-wrapper {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .equipo-sandblast {
  position: relative;
  padding: 30px 0;
}

.features-2 .equipo-sandblast img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .equipo-sandblast {
    margin: 3rem 0;
  }
}


/*================================================
CARD
================================================*/

.accessory-card {
  background: var(--background-color);
  height: 100%;
  border: 1px solid rgba(45, 70, 94, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.accessory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
}

/*================================================
IMAGEN
================================================*/

.accessory-image {
  /* height: 240px; */
  overflow: hidden;
  background: #fff;
}

.accessory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/*================================================
CONTENIDO
================================================*/

.accessory-content {
  padding: 28px;
}

/* Category */
.accessory-category {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
}

/* Title */
.accessory-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 14px;
}

/* Text */
.accessory-content p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 24px;
}

/* Button */
.accessory-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.accessory-btn:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

/*================================================
RESPONSIVE
================================================*/

@media (max-width: 991px) {

  .accessory-image {
    height: 220px;
  }

}

@media (max-width: 768px) {

  .sandblast-accessories {
    padding-top: 70px;
    padding-bottom: 70px;
  }


  .section-description {
    font-size: 0.95rem;
  }

  .accessory-content {
    padding: 24px;
  }

  .accessory-content h3 {
    font-size: 1.08rem;
  }

  .accessory-content p {
    font-size: 0.92rem;
  }

}

.iso-badge{
    display: inline-flex;
    align-items: center;
    gap: .35rem;

    padding: 10px 20px;

    background: rgba(0,100,168,.08);

    border: 1px solid rgba(0,100,168,.15);

    border-radius: 999px;

    color: var(--heading-color);

    font-size: 1.3rem;
    font-weight: 500;

    line-height: 1.4;
    justify-content: center;

    font-style: italic;
}

.iso-badge strong{
    color: var(--accent-color);
    font-weight: 700;
}

.machine-card{
    height:100%;
    background:#fff;
    border:1px solid rgba(45,70,94,.10);
    border-radius:16px;
    overflow:hidden;

    box-shadow:
    0 4px 20px rgba(0,0,0,.04);

    transition:.3s;
}

.machine-card:hover{
    transform:translateY(-4px);

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);
}

.machine-image{
    background:#f8f9fa;
    padding:25px;
    text-align:center;
}

.machine-image img{
    max-height:260px;
    object-fit:contain;
}

.machine-body{
    padding:24px;
}

.machine-title{
    color:var(--heading-color);
    font-size:1.35rem;
    font-weight:700;
    line-height:1.3;
    margin-bottom:16px;
    text-align: center;
}

.machine-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
    justify-content: center;
}

.machine-highlights span{
    display:inline-flex;
    align-items:center;

    padding:6px 12px;

    font-size:.8rem;
    font-weight:600;

    color:var(--accent-color);

    background:
    rgba(0,100,168,.08);

    border:
    1px solid rgba(0,100,168,.15);

    border-radius:999px;
}

.machine-accordion .accordion-item{
    border:none;
    border-top:1px solid rgba(45,70,94,.08);
}

.machine-accordion .accordion-button{
    padding:1rem 0;

    background:none;

    color:var(--heading-color);

    font-weight:600;

    box-shadow:none;
}

.machine-accordion .accordion-button:not(.collapsed){
    background:none;
    color:var(--accent-color);
}

.machine-accordion .accordion-body{
    padding:0 0 1rem;
}

.machine-accordion ul{
    margin:0;
    padding-left:1.25rem;
}

.machine-accordion li{
    margin-bottom:.65rem;
    line-height:1.6;
    color:var(--default-color);
}

@media (max-width:991px){

    .machine-image img{
        max-height:220px;
    }

    .machine-title{
        font-size:1.2rem;
    }
}



.explora-mas .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.explora-mas .card-body {
  flex: 1;
}

.explora-mas .row.equal-height .col-lg-4 {
  display: flex;
}

.explora-mas .row.equal-height .card {
  flex: 1;
}

.company-section h1{
    color:var(--heading-color);
    font-weight:700;
    margin-bottom:1rem;
}

.section-badge{
    display:inline-block;
    padding:.5rem 1rem;
    border-radius:50px;
    background:rgba(0,100,168,.08);
    color:var(--accent-color);
    font-weight:600;
    margin-bottom:1rem;
}

.company-section p{
    line-height:1.8;
}

.value-card{
    height:100%;
    padding:1.5rem;
    border:1px solid rgba(45,70,94,.08);
    border-radius:16px;
    background:#fff;
    display:flex;
    gap:1rem;
    align-items:flex-start;
    transition:.3s;
    text-align: center;
}

.value-card:hover{
    transform:translateY(-4px);
}

.value-card i{
    font-size:1.5rem;
    color:var(--accent-color);
}

.difference-box{
    background:var(--surface-color);
    border-radius:20px;
    padding:2rem;
}

.solution-list{
    list-style:none;
    padding:0;
    margin:0;
}

.solution-list li{
    padding-left:2rem;
    position:relative;
    margin-bottom:1rem;
}

.solution-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent-color);
    font-weight:700;
}

/*======================================
FAQ CTA
======================================*/

.faq-cta-wrapper{
    display:flex;
    justify-content:center;
    margin:1rem 0;
}

.faq-cta{

    display:flex;
    align-items:center;
    gap:1rem;

    max-width:520px;
    width:100%;

    padding:1rem 1.25rem;

    text-decoration:none;

    background:var(--surface-color);

    border:1px solid var(--accent-color);

    border-radius:16px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

           


}

.faq-cta:hover{


 transform:translateY(-3px);

}

.faq-cta-icon{

    width:56px;
    height:56px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:rgba(0,100,168,.10);

    color:var(--accent-color);

    font-size:1.4rem;
}

.faq-cta-text{

    flex-grow:1;

    display:flex;
    flex-direction:column;
}

.faq-cta-text small{

    color:var(--default-color);

    font-size:.85rem;

    margin-bottom:.15rem;
}

.faq-cta-text strong{

    color:var(--heading-color);

    font-size:1rem;

    font-weight:700;

    line-height:1.4;
}

.faq-cta-arrow{

    color:var(--accent-color);

    font-size:1.2rem;

    transition:transform .25s ease;
}

.faq-cta:hover .faq-cta-arrow{

    transform:translateX(6px);
}

@media (max-width:576px){

    .faq-cta{

        padding:.9rem;

        gap:.75rem;
    }

    .faq-cta-icon{

        width:48px;
        height:48px;

        font-size:1.1rem;
    }

    .faq-cta-text strong{

        font-size:.95rem;
    }
}