/* Contenedor más ancho para razones de suspensión */
.suspension-reasons-container {
  max-width: 1200px;
}
/* Imagen hero suspendido personalizada */
.suspended-hero-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px !important;
  margin-bottom: 1.5rem;
  max-width: 120% !important;
  max-height: 420px !important;
  width: auto;
  height: auto;
  transition: max-width 0.3s, max-height 0.3s;
}
/* Animaciones suaves y feedback visual */
.navmenu .nav-cta-btn,
.btn,
.floating-contact-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.navmenu .nav-cta-btn:focus,
.btn:focus,
.floating-contact-btn:focus {
  outline: 2px solid var(--accent-color, #428bca);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--accent-color, #428bca);
}
.navmenu .nav-cta-btn:hover,
.btn:hover,
.floating-contact-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #fff 20%);
  color: var(--nav-hover-color, #428bca);
  transform: translateY(-2px) scale(1.03);
}
.navmenu .dropdown ul {
  transition: opacity 0.25s, top 0.25s;
}
/* Mejoras mobile: área táctil y submenú accesible */
@media (max-width: 1199px) {
  .navmenu .nav-cta-item.dropdown > a {
    min-height: 48px;
    min-width: 120px;
    padding: 16px 24px;
    font-size: 1.1rem;
  }
  .navmenu .nav-cta-item.dropdown > ul {
    left: 0;
    right: auto;
    min-width: 180px;
    font-size: 1.05rem;
  }
  .navmenu .nav-cta-item.dropdown > ul li a {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .btn, .navmenu a, .floating-contact-btn {
    min-height: 48px;
    font-size: 1.1rem;
  }
  .cta-actions .btn {
    min-width: 180px;
  }
}
/* Dropdown personalizado para botón Clientes */
.navmenu .nav-cta-item.dropdown {
  position: relative;
}
.navmenu .nav-cta-item.dropdown > ul {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 200px;
  background: var(--nav-dropdown-background-color, #fff);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 8px;
  z-index: 1000;
  padding: 8px 0;
}
.navmenu .nav-cta-item.dropdown:hover > ul,
.navmenu .nav-cta-item.dropdown:focus-within > ul {
  display: block;
}
.navmenu .nav-cta-item.dropdown > ul li a {
  color: var(--nav-dropdown-color, #212529);
  padding: 10px 24px;
  display: block;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.navmenu .nav-cta-item.dropdown > ul li a:hover {
  background: var(--nav-dropdown-hover-color, #f5f9fc);
  color: var(--nav-dropdown-hover-color, #428bca);
}
.navmenu .nav-cta-item.dropdown > a i {
  margin-left: 8px;
  font-size: 1em;
  transition: transform 0.2s;
}
.navmenu .nav-cta-item.dropdown:hover > a i,
.navmenu .nav-cta-item.dropdown:focus-within > a i {
  transform: rotate(-180deg);
}
/* Centraliza aquí todos los colores y fuentes para fácil mantenimiento */



/*--------------------------------------------------------------

# Font & Color Variables

# Help: https://bootstrapmade.com/color-system/

--------------------------------------------------------------*/

/* Fonts */

:root {

  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --heading-font: "Raleway", sans-serif;

  --nav-font: "Poppins", 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: #212529;

  /* Default color used for the majority of the text content across the entire website */

  --heading-color: #2e4455;

  /* Color for headings, subheadings and title throughout the website */

  --accent-color: #428bca;

  /* 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: #ffffff;

  /* 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: #212529;

  /* The default color of the main navmenu links */

  --nav-hover-color: #428bca;

  /* Applied to main navmenu links when they are hovered over or active */

  --nav-mobile-background-color: #ffffff;

  /* Used as the background color for mobile navigation menu */

  --nav-dropdown-background-color: #ffffff;

  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */

  --nav-dropdown-color: #212529;

  /* Used for navigation links of the dropdown items in the navigation menu. */

  --nav-dropdown-hover-color: #428bca;

  /* 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: #f5f9fc;

  --surface-color: #ffffff;

}



.dark-background {

  --background-color: #263746;

  --default-color: #ffffff;

  --heading-color: #ffffff;

  --surface-color: #385167;

  --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);

}



/* Pulsating Play Button

------------------------------*/

.pulsating-play-btn {

  width: 94px;

  height: 94px;

  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);

  border-radius: 50%;

  display: block;

  position: relative;

  overflow: hidden;

}



.pulsating-play-btn:before {

  content: "";

  position: absolute;

  width: 120px;

  height: 120px;

  animation-delay: 0s;

  animation: pulsate-play-btn 2s;

  animation-direction: forwards;

  animation-iteration-count: infinite;

  animation-timing-function: steps;

  opacity: 1;

  border-radius: 50%;

  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);

  top: -15%;

  left: -15%;

  background: rgba(198, 16, 0, 0);

}



.pulsating-play-btn:after {

  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translateX(-40%) translateY(-50%);

  width: 0;

  height: 0;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  border-left: 15px solid #fff;

  z-index: 100;

  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);

}



.pulsating-play-btn:hover:before {

  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translateX(-40%) translateY(-50%);

  width: 0;

  height: 0;

  border: none;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  border-left: 15px solid #fff;

  z-index: 200;

  animation: none;

  border-radius: 0;

}



.pulsating-play-btn:hover:after {

  border-left: 15px solid var(--accent-color);

  transform: scale(20);

}



@keyframes pulsate-play-btn {

  0% {

    transform: scale(0.6, 0.6);

    opacity: 1;

  }



  100% {

    transform: scale(1, 1);

    opacity: 0;

  }

}



/* PHP Email Form Messages

------------------------------*/

.php-email-form .error-message {

  display: none;

  background: #df1529;

  color: #ffffff;

  text-align: left;

  padding: 15px;

  margin-bottom: 24px;

  font-weight: 600;

}



.php-email-form .sent-message {

  display: none;

  color: #ffffff;

  background: #059652;

  text-align: center;

  padding: 15px;

  margin-bottom: 24px;

  font-weight: 600;

}



.php-email-form .loading {

  display: none;

  background: var(--surface-color);

  text-align: center;

  padding: 15px;

  margin-bottom: 24px;

}



.php-email-form .loading:before {

  content: "";

  display: inline-block;

  border-radius: 50%;

  width: 24px;

  height: 24px;

  margin: 0 10px -6px 0;

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

  border-top-color: var(--surface-color);

  animation: php-email-form-loading 1s linear infinite;

}



@keyframes php-email-form-loading {

  0% {

    transform: rotate(0deg);

  }



  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Hostintiva Redesign Components

--------------------------------------------------------------*/

.text-white-60 {

  color: rgba(255, 255, 255, 0.6) !important;

}



.text-white-70 {

  color: rgba(255, 255, 255, 0.72) !important;

}



.text-white-85 {

  color: rgba(255, 255, 255, 0.85) !important;

}



.text-accent {

  color: #6c63ff !important;

}



.section-gradient {

  background: radial-gradient(circle at top left, #6c63ff 0%, #4a51c9 38%, #1d2237 100%);

  position: relative;

  overflow: hidden;

}



.section-gradient::before {

  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 65%);

  opacity: 0.25;

}



.section-gradient > .container {

  position: relative;

  z-index: 1;

}



.section-soft {

  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);

}



.section-light {

  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);

}



.eyebrow {

  font-size: 0.78rem;

  letter-spacing: 0.18em;

  font-weight: 700;

  text-transform: uppercase;

  display: inline-block;

}



.section-heading {

  font-family: "Poppins", "Raleway", sans-serif;

  font-weight: 700;

  line-height: 1.25;

}



.partner-points p {

  font-size: 0.95rem;

}



.partner-icon {

  width: 48px;

  height: 48px;

  background: rgba(255, 255, 255, 0.14);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 1.35rem;

  color: var(--contrast-color);

  backdrop-filter: blur(4px);

}



.partner-showcase .ally-card {

  background: rgba(255, 255, 255, 0.08);

  border-radius: 1.4rem;

  padding: 1.75rem 1.25rem;

  min-height: 150px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.08);

}



.partner-showcase .ally-card:hover {

  transform: translateY(-6px) scale(1.02);

  background: rgba(255, 255, 255, 0.18);

  box-shadow: 0 18px 38px rgba(18, 26, 56, 0.25);

}



.partner-showcase .ally-logo {

  max-height: 52px;

  object-fit: contain;

  margin-bottom: 0.85rem;

}



.partner-showcase .ally-label {

  font-size: 0.85rem;

}



.swiper-nav-btn {

  width: 40px;

  height: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-width: 1px;

}



.partners-controls {

  gap: 1.2rem;

}



.partners-controls .partners-pagination {

  display: flex;

  align-items: center;

  gap: 0.45rem;

}



.partners-controls .partners-pagination .swiper-pagination-bullet {

  background: rgba(255, 255, 255, 0.7);

  opacity: 1;

}



.partners-controls .partners-pagination .swiper-pagination-bullet-active {

  background: #ffffff;

  width: 18px;

  border-radius: 999px;

}



.cta-hostintiva {

  position: relative;

  background: linear-gradient(110deg, #2f3d75 0%, #6c63ff 55%, #4d4ff1 100%);

  overflow: hidden;

}



.cta-hostintiva::before,

.cta-hostintiva::after {

  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);

  filter: blur(0px);

  z-index: 0;

  opacity: 0.35;

}



.cta-hostintiva::before {

  top: -140px;

  right: -60px;

}



.cta-hostintiva::after {

  bottom: -160px;

  left: -40px;

}



.cta-panel {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  padding: 3rem;

  border-radius: 1.8rem;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);

  position: relative;

  z-index: 1;

  border: 1px solid rgba(255, 255, 255, 0.16);

}



@media (min-width: 992px) {

  .cta-panel {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

  }

}



#creative-suite {

  position: relative;

  overflow: hidden;

}



#creative-suite::before,

#creative-suite::after {

  content: "";

  position: absolute;

  width: 360px;

  height: 360px;

  border-radius: 50%;

  background: color-mix(in srgb, var(--accent-color), transparent 70%);

  filter: blur(110px);

  opacity: 0.45;

  pointer-events: none;

  z-index: 0;

}



#creative-suite::before {

  top: -220px;

  right: -120px;

}



#creative-suite::after {

  bottom: -240px;

  left: -140px;

}



#creative-suite .stacked-panel {

  position: relative;

  background: var(--surface-color);

  border-radius: 2rem;

  padding: 2.75rem;

  box-shadow: 0 28px 60px -40px rgba(38, 55, 70, 0.55);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);

  backdrop-filter: blur(6px);

  z-index: 1;

  overflow: hidden;

}



#creative-suite .stacked-panel::before {

  content: "";

  position: absolute;

  width: 260px;

  height: 260px;

  border-radius: 50%;

  filter: blur(60px);

  opacity: 0.5;

  pointer-events: none;

  z-index: -1;

}



#creative-suite .design-panel::before {

  top: -120px;

  right: -100px;

  background: color-mix(in srgb, var(--accent-color), transparent 35%);

}



#creative-suite .marketing-panel::before {

  bottom: -140px;

  left: -90px;

  background: color-mix(in srgb, var(--accent-color), transparent 25%);

}



#creative-suite .design-panel {

  background: linear-gradient(140deg, color-mix(in srgb, var(--accent-color), transparent 78%) 0%, rgba(255, 255, 255, 0.95) 55%);

}



#creative-suite .marketing-panel {

  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 10%, color-mix(in srgb, var(--accent-color), transparent 72%) 100%);

}



#creative-suite .creative-card,

#creative-suite .marketing-card {

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);

  box-shadow: 0 22px 48px -38px rgba(38, 55, 70, 0.55);

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

}



#creative-suite .creative-card:hover,

#creative-suite .marketing-card:hover {

  transform: translateY(-8px);

  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);

  box-shadow: 0 32px 62px -40px rgba(38, 55, 70, 0.6);

}



#creative-suite .card-icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  border-radius: 1rem;

  background: color-mix(in srgb, var(--accent-color), transparent 80%);

  color: var(--accent-color);

  font-size: 1.5rem;

  margin-bottom: 1rem;

  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 62%);

}



#creative-suite .card-icon.is-alt {

  background: color-mix(in srgb, var(--accent-color), transparent 86%);

  color: color-mix(in srgb, var(--accent-color), #122133 28%);

}



#creative-suite .feature-list {

  margin: 0;

}



#creative-suite .feature-item {

  display: flex;

  gap: 0.85rem;

  align-items: flex-start;

  padding: 0.85rem 1rem;

  border-radius: 1.1rem;

  background: rgba(255, 255, 255, 0.85);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);

  box-shadow: 0 16px 32px -36px rgba(38, 55, 70, 0.65);

  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;

}



#creative-suite .feature-item:hover {

  transform: translateX(6px);

  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);

  background: rgba(255, 255, 255, 0.93);

}



#creative-suite .feature-dot {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background: color-mix(in srgb, var(--accent-color), transparent 82%);

  color: var(--accent-color);

  flex-shrink: 0;

  font-size: 1.1rem;

}



#creative-suite .marketing-panel .feature-item {

  background: rgba(255, 255, 255, 0.78);

}



#creative-suite .marketing-panel .feature-item:hover {

  background: rgba(255, 255, 255, 0.92);

}



.cta-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

  align-items: center;

}



.btn-ia {

  background: linear-gradient(135deg, #6c63ff 0%, #5a54e6 100%);

  border: none;

  font-weight: 600;

  color: #ffffff;

  transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.btn-ia:hover,

.btn-ia:focus {

  transform: translateY(-3px);

  box-shadow: 0 16px 32px rgba(92, 85, 230, 0.35);

}



.portfolio-card {

  background: #ffffff;

  border-radius: 1.6rem;

  overflow: hidden;

  box-shadow: 0 16px 40px rgba(16, 44, 82, 0.12);

  height: 100%;

  display: flex;

  flex-direction: column;

  border: 1px solid rgba(24, 40, 78, 0.08);

  transition: transform 0.25s ease, box-shadow 0.3s ease;

  will-change: transform;

}



.portfolio.section {

  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);

}



.faq.section {

  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);

}



.portfolio-visual {

  position: relative;

  overflow: hidden;

  border-bottom: 1px solid rgba(18, 35, 64, 0.08);

}



.portfolio-img {

  width: 100%;

  height: 220px;

  object-fit: cover;

  transition: transform 0.35s ease;

}



.portfolio-visual:hover .portfolio-img {

  transform: scale(1.05);

}



.portfolio-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 26px 46px rgba(16, 44, 82, 0.18);

}



.portfolio-pill {

  position: absolute;

  top: 1.2rem;

  left: 1.2rem;

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  padding: 0.45rem 0.95rem;

  border-radius: 999px;

  font-size: 0.78rem;

  font-weight: 600;

  color: #1f2a44;

  background: rgba(255, 255, 255, 0.92);

  box-shadow: 0 18px 32px rgba(17, 41, 72, 0.18);

}



.portfolio-pill.web {

  color: #383d8f;

}



.portfolio-pill.ecommerce {

  color: #c17415;

}



.portfolio-pill.graphic {

  color: #c23a45;

}



.portfolio-pill.branding {

  color: #028374;

}



.portfolio-pill.institucional {

  color: #1f6ba5;

}



.portfolio-pill.general {

  color: #3f4f63;

}



.portfolio-body {

  padding: 1.8rem 1.6rem;

  display: flex;

  flex-direction: column;

  gap: 1rem;

}



.portfolio-body h5 {

  font-weight: 700;

  margin-bottom: 0;

}



.portfolio-body p {

  margin-bottom: 0;

  color: #5a6573;

}



.portfolio-meta {

  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

  align-items: center;

  justify-content: space-between;

}



.portfolio-meta .btn {

  font-weight: 600;

  border-radius: 999px;

  padding-inline: 1rem;

}



.tag-wrap {

  display: flex;

  flex-wrap: wrap;

  gap: 0.35rem;

}



.tag-chip {

  display: inline-flex;

  align-items: center;

  padding: 0.3rem 0.75rem;

  border-radius: 999px;

  background: #eef2ff;

  color: #414d8b;

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.01em;

  border: 1px solid rgba(97, 110, 149, 0.18);

}



.faq-insight {

  display: flex;

  gap: 1rem;

  padding: 1.2rem 1.4rem;

  border-radius: 1.2rem;

  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(108, 99, 255, 0));

  border: 1px solid rgba(108, 99, 255, 0.12);

  box-shadow: 0 18px 32px rgba(24, 46, 87, 0.12);

}



.faq-insight-icon {

  display: inline-flex;

  width: 48px;

  height: 48px;

  border-radius: 14px;

  align-items: center;

  justify-content: center;

  background: rgba(108, 99, 255, 0.18);

  color: #4d4ff1;

  font-size: 1.4rem;

}



.faq-grid {

  position: relative;

  z-index: 1;

}



.faq-accordion {

  border: none;

}



.faq-card {

  border: none;

  border-radius: 1.35rem;

  background: #ffffff;

  box-shadow: 0 18px 36px rgba(18, 36, 66, 0.12);

  overflow: hidden;

}



.faq-card + .faq-card {

  margin-top: 1.1rem;

}



.faq-card .accordion-button {

  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(108, 99, 255, 0));

  font-weight: 600;

  color: #223347;

  padding: 1.15rem 1.35rem;

  box-shadow: none;

  transition: background 0.25s ease, color 0.25s ease;

}



.faq-card .accordion-button::after {

  background-size: 1rem;

  filter: invert(28%) sepia(64%) saturate(720%) hue-rotate(211deg) brightness(95%) contrast(92%);

}



.faq-card .accordion-button:not(.collapsed) {

  background: linear-gradient(135deg, rgba(108, 99, 255, 0.22), rgba(108, 99, 255, 0));

  color: #182337;

}



.faq-card .accordion-button:not(.collapsed)::after {

  transform: rotate(180deg);

}



.faq-card .accordion-body {

  padding: 0 1.35rem 1.25rem 1.35rem;

  color: #536174;

  font-size: 0.95rem;

  line-height: 1.6;

}



.admin-access-icon {

  transition: transform 0.2s, color 0.2s;

  color: #0d6efd !important;

  font-size: 1.7rem !important;

  vertical-align: middle;

  display: inline-block !important;

}



.admin-access-icon:hover {

  color: #0056b3 !important;

  transform: scale(1.2) rotate(-6deg);

}



@media (max-width: 575px) {

  .portfolio-img {

    height: 200px;

  }



  .cta-panel {

    padding: 2.2rem;

  }

}



/*--------------------------------------------------------------

# Global Header

--------------------------------------------------------------*/

.header {

  color: var(--default-color);

  transition: all 0.5s;

  z-index: 997;

  background-color: var(--background-color);

}



.header.is-hidden {

  transform: translateY(-120%);

  opacity: 0;

  box-shadow: none;

  pointer-events: none;

}



.header .topbar {

  height: 40px;

  padding: 0;

  font-size: 14px;

  transition: all 0.5s;

  border-bottom: 1px solid rgba(15, 30, 58, 0.06);

  background: rgba(255, 255, 255, 0.96);

}



.header .topbar .contact-info i {

  font-style: normal;

  color: var(--accent-color);

}



.header .topbar .contact-info i a,

.header .topbar .contact-info i span {

  padding-left: 5px;

  color: var(--default-color);

}



@media (max-width: 575px) {



  .header .topbar .contact-info i a,

  .header .topbar .contact-info i span {

    font-size: 13px;

  }

}



.header .topbar .contact-info i a {

  line-height: 0;

  transition: 0.3s;

  color: var(--default-color);

}



.header .topbar .contact-info i a:hover {

  text-decoration: underline;

}



.header .topbar .social-links a {

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  line-height: 0;

  transition: 0.3s;

  margin-left: 20px;

}



.header .topbar .social-links a:hover {

  color: var(--accent-color);

}



.header .branding {

  min-height: 60px;

  padding: 10px 0;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(15, 30, 58, 0.04);

}



.header .logo {

  line-height: 1;

}



.header .logo img {

  max-height: 69px;

  width: auto;

  transition: transform 0.3s ease;

}



.header .logo .logo-mark {

  filter: drop-shadow(0 8px 16px rgba(17, 37, 77, 0.22));

}



.header .logo .logo-text {

  margin-left: 4px;

  font-family: "Montserrat", "Poppins", sans-serif;

  font-weight: 700;

  letter-spacing: 0.05em;

  font-size: 2rem;

  text-transform: uppercase;

  background: linear-gradient(100deg, #428bca 0%, #6c63ff 45%, #5a54e6 75%, #4d4ff1 100%);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  display: inline-block;

  white-space: nowrap;

}



body.scrolled .header .logo img {

  max-height: 60px;

  transform: translateY(-1px);

}



body.scrolled .header {

  box-shadow: 0 16px 38px rgba(15, 30, 58, 0.12);

}



body.scrolled .header.is-hidden {

  box-shadow: none;

}



body.scrolled .header .branding {

  padding: 6px 0;

  background: rgba(255, 255, 255, 0.94);

}



/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Navmenu - Desktop */

@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 a,

  .navmenu a:focus {

    color: var(--nav-color);

    padding: 18px 15px;

    font-size: 16px;

    font-family: var(--nav-font);

    font-weight: 400;

    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;

    transition: 0.3s;

  }



  .navmenu li:last-child:not(.nav-cta-item) a {

    padding-right: 0;

  }



  .navmenu li:hover>a,

  .navmenu .active,

  .navmenu .active:focus {

    color: var(--nav-hover-color);

  }



  .navmenu .nav-cta-item {

    margin-left: 12px;

  }



  .navmenu .nav-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 20px;

    border-radius: 999px;

    font-weight: 600;

    font-size: 15px;

    color: #ffffff;

    background: linear-gradient(135deg, #6c63ff 0%, #4d4ff1 100%);

    box-shadow: 0 14px 32px rgba(77, 79, 241, 0.28);

    transition: transform 0.2s ease, box-shadow 0.2s ease;

  }



  .navmenu .nav-cta-btn:hover,

  .navmenu .nav-cta-btn:focus {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 18px 38px rgba(77, 79, 241, 0.35);

  }



  .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;

  }

}



/* Navmenu - Mobile */

@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);

    overflow-y: auto;

    transition: 0.3s;

    z-index: 9998;

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

  }



  .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);

    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

    box-shadow: none;

    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;

  }



  .navmenu .nav-cta-item {

    margin: 12px 20px 0 20px;

  }



  .navmenu .nav-cta-btn {

    width: 100%;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 12px 18px;

    border-radius: 999px;

    font-weight: 600;

    font-size: 16px;

    background: linear-gradient(135deg, #6c63ff 0%, #4d4ff1 100%);

    color: #ffffff;

    box-shadow: 0 12px 26px rgba(77, 79, 241, 0.28);

  }

}



/*--------------------------------------------------------------

# Global Footer

--------------------------------------------------------------*/

.footer {

  color: var(--default-color);

  background: radial-gradient(circle at top, rgba(108, 99, 255, 0.08), transparent 55%), linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);

  font-size: 14px;

  position: relative;

  overflow: hidden;

}



.footer::before,

.footer::after {

  content: "";

  position: absolute;

  border-radius: 50%;

  background: rgba(108, 99, 255, 0.08);

  width: 280px;

  height: 280px;

  filter: blur(0px);

  opacity: 0.6;

  pointer-events: none;

}



.footer::before {

  top: -160px;

  left: -60px;

}



.footer::after {

  bottom: -180px;

  right: -40px;

}



.footer .footer-top {

  padding-top: 60px;

  padding-bottom: 40px;

}



.footer .footer-about .logo {

  line-height: 1;

  margin-bottom: 25px;

}



.footer .footer-about .logo img {

  max-height: 40px;

  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: 8px 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 10%);

  display: inline-block;

  line-height: 1;

  transition: color 0.2s ease;

}



.footer .footer-links ul a:hover {

  color: var(--accent-color);

}



.footer .footer-contact p {

  margin-bottom: 5px;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

}



.footer .copyright {

  padding: 22px 0;

  border-top: 1px solid rgba(24, 40, 78, 0.08);

  background: rgba(255, 255, 255, 0.75);

}



.footer .copyright p {

  margin-bottom: 0;

}



.footer .credits {

  margin-top: 8px;

  font-size: 13px;

}



/*--------------------------------------------------------------

# Preloader

--------------------------------------------------------------*/

#preloader {

  position: fixed;

  inset: 0;

  z-index: 9999;

  overflow: hidden;

  background-color: var(--background-color);

  transition: all 0.6s ease-out;

}



#preloader:before {

  content: "";

  position: fixed;

  top: calc(50% - 30px);

  left: calc(50% - 30px);

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

  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);

  border-radius: 50%;

  width: 60px;

  height: 60px;

  animation: animate-preloader 1s linear infinite;

}



@keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }



  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Scroll Top Button

--------------------------------------------------------------*/

.scroll-top {

  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 18px;

  bottom: -15px;

  z-index: 99999;

  background: linear-gradient(135deg, #25d366, #128c7e);

  width: 44px;

  height: 44px;

  border-radius: 50px;

  transition: all 0.4s;

  box-shadow: 0 14px 28px rgba(18, 140, 126, 0.28);

}



.scroll-top i {

  font-size: 24px;

  color: var(--contrast-color);

  line-height: 0;

}



.scroll-top:hover {

  background: linear-gradient(135deg, #2fe074, #0f7d6d);

  color: var(--contrast-color);

  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.38);

}



.scroll-top.active {

  visibility: visible;

  opacity: 1;

  bottom: 15px;

}



/*--------------------------------------------------------------

# Floating WhatsApp Button

--------------------------------------------------------------*/

.floating-contact-btn {

  position: fixed;

  right: 72px;

  bottom: 15px;

  z-index: 99998;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 22px;

  border-radius: 999px;

  background: linear-gradient(135deg, #25d366, #128c7e);

  color: #ffffff;

  font-weight: 600;

  letter-spacing: 0.03em;

  box-shadow: 0 18px 32px rgba(18, 140, 126, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;

}



.floating-contact-btn i {

  font-size: 1.25rem;

  line-height: 1;

}



.floating-contact-btn.is-hidden {

  opacity: 0;

  transform: translateY(18px);

  pointer-events: none;

  box-shadow: none;

}



.floating-contact-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 22px 38px rgba(18, 140, 126, 0.45);

  color: #ffffff;

}



@media (max-width: 575px) {

  .floating-contact-btn {

    right: 64px;

    bottom: 15px;

    padding: 12px 18px;

    font-size: 0.9rem;

    gap: 8px;

  }



  .floating-contact-btn i {

    font-size: 1.1rem;

  }

}



/*--------------------------------------------------------------

# 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);

  position: relative;

}



.page-title .heading {

  padding: 80px 0;

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}



.page-title .heading h1 {

  font-size: 38px;

  font-weight: 700;

}



.page-title nav {

  background-color: color-mix(in srgb, var(--default-color), transparent 95%);

  padding: 20px 0;

}



.page-title nav ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  margin: 0;

  font-size: 16px;

  font-weight: 600;

}



.page-title nav ol li+li {

  padding-left: 10px;

}



.page-title nav 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: 120px;

  overflow: clip;

}



@media (max-width: 1199px) {



  section,

  .section {

    scroll-margin-top: 100px;

  }

}



/*--------------------------------------------------------------

# Global Section Titles

--------------------------------------------------------------*/

.section-title {

  text-align: center;

  padding-bottom: 60px;

  position: relative;

}



.section-title h2 {

  font-size: 32px;

  font-weight: 400;

  margin-bottom: 15px;

}



.section-title p {

  margin-bottom: 0;

}



/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

.hero {

  padding: 0;

}



.hero .carousel {

  width: 100%;

  min-height: 70vh;

  padding: 0;

  margin: 0;

  background-color: var(--background-color);

  position: relative;

}



.hero img {

  position: absolute;

  inset: 0;

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: 1;

}



.hero .carousel-item {

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;

}



.hero .carousel-item:before {

  content: "";

  background: color-mix(in srgb, var(--background-color), transparent 30%);

  position: absolute;

  inset: 0;

  z-index: 2;

}



.hero .carousel-item::before {

  content: "";

  background-color: color-mix(in srgb, var(--background-color), transparent 30%);

  position: absolute;

  inset: 0;

}



.hero .carousel-container {

  position: absolute;

  inset: 204px 64px 64px 64px;

  display: flex;

  justify-content: flex-start;

  align-items: flex-start;

  flex-direction: column;

  text-align: left;

  z-index: 3;

}



.hero h2 {

  margin-bottom: 30px;

  font-size: 48px;

  font-weight: 700;

  animation: fadeInDown 1s both;

}



@media (max-width: 768px) {

  .hero h2 {

    font-size: 30px;

  }

}



.hero p {

  animation: fadeInDown 1s both 0.2s;

}



@media (min-width: 1024px) {



  .hero h2,

  .hero p {

    max-width: 60%;

  }

}



.hero .btn-get-started {

  color: var(--contrast-color);

  background: var(--accent-color);

  font-family: var(--heading-font);

  font-weight: 500;

  font-size: 15px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 8px 32px;

  border-radius: 50px;

  transition: 0.5s;

  margin: 10px;

  animation: fadeInUp 1s both 0.4s;

}



.hero .btn-get-started:hover {

  background: color-mix(in srgb, var(--accent-color), transparent 20%);

}



.hero .carousel-control-prev,

.hero .carousel-control-next {

  width: 10%;

  transition: 0.3s;

  opacity: 0.5;

}



.hero .carousel-control-prev:focus,

.hero .carousel-control-next:focus {

  opacity: 0.5;

}



.hero .carousel-control-prev:hover,

.hero .carousel-control-next:hover {

  opacity: 0.9;

}



@media (min-width: 1024px) {



  .hero .carousel-control-prev,

  .hero .carousel-control-next {

    width: 5%;

  }

}



.hero .carousel-control-next-icon,

.hero .carousel-control-prev-icon {

  background: none;

  font-size: 32px;

  line-height: 1;

}



.hero .carousel-indicators {

  list-style: none;

}



.hero .carousel-indicators li {

  cursor: pointer;

}



@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translate3d(0, 100%, 0);

  }



  to {

    opacity: 1;

    transform: translate3d(0, 0, 0);

  }

}



@keyframes fadeInDown {

  from {

    opacity: 0;

    transform: translate3d(0, -100%, 0);

  }



  to {

    opacity: 1;

    transform: translate3d(0, 0, 0);

  }

}



/*--------------------------------------------------------------

# About Section

--------------------------------------------------------------*/

.about h3 {

  font-weight: 700;

  font-size: 28px;

  margin-bottom: 20px;

}



.about .fst-italic {

  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);

}



.about .content ul {

  list-style: none;

  padding: 0;

}



.about .content ul li {

  padding: 0 0 10px 30px;

  position: relative;

}



.about .content ul i {

  position: absolute;

  font-size: 20px;

  left: 0;

  top: -3px;

  color: var(--accent-color);

}



.about .content p:last-child {

  margin-bottom: 0;

}



.about .pulsating-play-btn {

  position: absolute;

  left: calc(50% - 47px);

  top: calc(50% - 47px);

}



/*--------------------------------------------------------------

# Why Us Section

--------------------------------------------------------------*/

.why-us .card-item {

  background: color-mix(in srgb, var(--default-color), transparent 97%);

  padding: 50px 30px;

  transition: all ease-in-out 0.3s;

  height: 100%;

  position: relative;

}



.why-us .card-item span {

  color: var(--accent-color);

  display: block;

  font-size: 28px;

  font-weight: 700;

}



.why-us .card-item h4 {

  font-size: 24px;

  font-weight: 600;

  padding: 0;

  margin: 20px 0;

}



.why-us .card-item h4 a {

  color: var(--heading-color);

}



.why-us .card-item p {

  font-size: 15px;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  margin: 0;

  padding: 0;

}



.why-us .card-item:hover {

  background: var(--accent-color);

  padding: 30px 30px 70px 30px;

}



.why-us .card-item:hover span,

.why-us .card-item:hover h4 a,

.why-us .card-item:hover p {

  color: var(--contrast-color);

}



/*--------------------------------------------------------------

# Stats Section

--------------------------------------------------------------*/

.stats i {

  background-color: var(--surface-color);

  color: var(--accent-color);

  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);

  width: 54px;

  height: 54px;

  font-size: 24px;

  border-radius: 50px;

  border: 2px solid var(--background-color);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  position: relative;

  z-index: 1;

}



.stats .stats-item {

  background-color: var(--surface-color);

  margin-top: -27px;

  padding: 30px 30px 25px 30px;

  width: 100%;

  position: relative;

  text-align: center;

  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);

  border-radius: 4px;

  z-index: 0;

}



.stats .stats-item span {

  font-size: 36px;

  display: block;

  font-weight: 700;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

}



.stats .stats-item p {

  padding: 0;

  margin: 0;

  font-family: var(--heading-font);

  font-size: 16px;

}



/*--------------------------------------------------------------

# Services Section

--------------------------------------------------------------*/

.services .service-item {

  position: relative;

  padding: 40px 30px;

  height: 100%;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  border-radius: 12px;

  transition: all 0.3s ease-in-out;

  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);

}



.services .service-item .icon {

  margin-bottom: 20px;

  width: 64px;

  height: 64px;

  background: color-mix(in srgb, var(--accent-color), transparent 90%);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease-in-out;

}



.services .service-item .icon i {

  color: var(--accent-color);

  font-size: 28px;

  transition: ease-in-out 0.3s;

}



.services .service-item h3 {

  font-weight: 700;

  margin-bottom: 15px;

  font-size: 22px;

}



.services .service-item h3 a {

  color: var(--heading-color);

  transition: 0.3s;

}



.services .service-item p {

  line-height: 24px;

  font-size: 15px;

  margin-bottom: 0;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

}



.services .service-item:hover {

  transform: translateY(-8px);

  border-color: var(--accent-color);

  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);

}



.services .service-item:hover .icon {

  background: var(--accent-color);

}



.services .service-item:hover .icon i {

  color: var(--contrast-color);

}



.software-suite {

  background: linear-gradient(150deg, #f9fbff 0%, #eef3ff 48%, #ffffff 100%);

  position: relative;

  overflow: hidden;

}



.software-suite::before {

  content: "";

  position: absolute;

  inset: auto -80px -180px;

  height: 340px;

  background: radial-gradient(circle at center, rgba(108, 99, 255, 0.18) 0%, rgba(108, 99, 255, 0) 70%);

  pointer-events: none;

}



.software-suite .software-feature {

  display: grid;

  grid-template-columns: auto 1fr;

  gap: 1rem;

  padding: 1.15rem 1.25rem;

  border-radius: 16px;

  background: rgba(108, 99, 255, 0.08);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.software-suite .software-feature:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(43, 61, 118, 0.12);

}



.software-suite .feature-icon {

  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: var(--accent-color);

  color: var(--contrast-color);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.25rem;

  box-shadow: 0 10px 24px rgba(108, 99, 255, 0.25);

}



.software-suite .software-visual {

  position: relative;

  min-height: 420px;

  background: #1f2743;

  display: flex;

  align-items: flex-end;

  isolation: isolate;

}



.software-suite .software-visual-media {

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  transform: scale(1.05);

  transition: transform 0.6s ease;

}



.software-suite .software-visual:hover .software-visual-media {

  transform: scale(1.12);

}



.software-suite .software-visual-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(23, 33, 56, 0.1) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(15, 23, 42, 0.92) 100%);

  mix-blend-mode: multiply;

}



.software-suite .software-visual-content {

  position: relative;

  z-index: 1;

  padding: 3rem;

  color: rgba(255, 255, 255, 0.9);

}



.software-suite .software-visual-content h3 {

  color: rgba(255, 255, 255, 0.94);

}



.software-suite .software-points li {

  display: flex;

  align-items: flex-start;

  gap: 0.55rem;

  margin-bottom: 0.75rem;

  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.85);

}



.software-suite .software-points li i {

  margin-top: 2px;

  color: #88f0ff;

}



.software-suite .software-stats {

  position: absolute;

  bottom: 24px;

  right: 24px;

  display: flex;

  gap: 1rem;

  z-index: 1;

}



.software-suite .stat-card {

  backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.18);

  border-radius: 16px;

  padding: 0.85rem 1.2rem;

  color: #fff;

  min-width: 130px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



.software-suite .stat-value {

  display: block;

  font-size: 1.75rem;

  font-weight: 700;

  margin-bottom: 0.25rem;

}



.software-suite .stat-label {

  font-size: 0.8rem;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.82);

}



.software-suite .software-cta .btn {

  padding-inline: 1.75rem;

}



@media (max-width: 991.98px) {

  .software-suite .software-visual {

    margin-top: 2.5rem;

    min-height: 360px;

  }



  .software-suite .software-visual-content {

    padding: 2.25rem;

  }



  .software-suite .software-stats {

    position: static;

    margin: 1.5rem 2.25rem 2.25rem;

    justify-content: center;

  }

}



@media (max-width: 575.98px) {

  .software-suite .software-feature {

    grid-template-columns: 1fr;

    text-align: left;

  }



  .software-suite .feature-icon {

    justify-self: flex-start;

  }



  .software-suite .software-visual-content {

    padding: 2rem;

  }



  .software-suite .software-stats {

    flex-direction: column;

    align-items: stretch;

    gap: 0.75rem;

    margin-inline: 2rem;

  }

}

