/* ========================
   Root Variables
======================== */
:root {
  --font-base: 'Poppins', sans-serif;
  --font-size-base: 14px;

  --color-bg-dark: #1C222E;
  --color-accent: #4EC9FA;
  --color-purple: #D17EFF;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.8);
  --shadow-blue: 0 8px 40px rgba(78, 201, 250, 0.15);
}

.turbo-progress-bar,
.spa-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 20000;
  background-color: var(--color-accent);
  transition: width 0.25s ease;
  pointer-events: none;
}

/* ========================
   Global Styles
======================== */
body {
  margin-top: 50px;
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  color: var(--color-white);
}

/* ========================
   Typography Utilities
======================== */
.heading-lg {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  align-items: center;
}
heading{
  font-size: 2rem;
  font-weight: 500;
  align-items: center;
  color: white;
}

.text-muted {
  color: var(--color-muted);
}

/* ========================
   Navbar
======================== */
    .navbar {
      background-color: var(--color-bg-dark);
      box-shadow: var(--shadow-blue);
    }

    .navbar-brand {
      font-weight: bold;
      color: var(--color-white);
    }

    .nav-link {
      color: var(--color-white);
      margin-right: 1rem;
      font-weight: 500;
      position: relative;
    }

    .nav-link:hover:not(.services),
    .nav-link.active:not(.services) {
      color: var(--color-accent);
    }

    .nav-link:not(.services)::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: var(--color-accent);
      transition: width 0.3s ease;
    }

    .nav-link:hover:not(.services)::after {
      width: 100%;
    }

.dropdown-menu.dropdown-mega {
  display: none !important;  /* Always hidden by default */
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  top: calc(100% - 1px);
  width: 1000px;
  padding: 2rem;
  border-radius: 6px;
  background-size: cover;
  box-shadow: var(--shadow-blue);
  flex-direction: row;
  background-color: black;
  z-index: 1050;
  margin-top: 0 !important;
  --bs-dropdown-spacer: 0;
  border: none;
}

.dropdown-menu.dropdown-mega::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}

.dropdown-menu.dropdown-mega.show {
  display: flex !important; /* Force show when active */
}

.submenu-item.is-active .has-submenu,
.submenu-item:hover .has-submenu {
  color: var(--color-accent);
}

.submenu-item.is-active {
  border-left: 2px solid var(--color-accent);
  padding-left: 0.5rem;
}

.header-wrapper {
  position: relative;
  z-index: 1030;
}

@media (min-width: 992px) {
  .header-wrapper .mega-dropdown:hover > .dropdown-menu.dropdown-mega,
  .header-wrapper .mega-dropdown:focus-within > .dropdown-menu.dropdown-mega {
    display: flex !important;
  }

  .header-wrapper .mega-dropdown:hover > .nav-link.services,
  .header-wrapper .mega-dropdown:focus-within > .nav-link.services {
    color: var(--color-accent);
  }
}


    .navbar .dropdown-menu {
      border: none;
    }

    .col-left {
      background-color: rgba(18,22,35,0.9);
      color: var(--color-muted);
      padding: 1.5rem;
      border-radius: 6px;
      width: 25%;
    }

    .submenu-container {
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      width: 35%;
    }
a {
    text-decoration: none;
}

    .submenu-item {
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 0.4rem;
      margin-bottom: 0.4rem;
    }

    .has-submenu {
      cursor: pointer;
      font-weight: bold;
      color: var(--color-white);
      text-decoration: none;
      font-size: 13px;
    }


    .submenu-panel {
      width: 40%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-left: 1.5rem;
    }

    .submenu-box {
      background-color: rgba(18, 22, 35, 0.95);
      padding: 1rem;
      border-left: 2px solid var(--color-accent);
      box-shadow: var(--shadow-blue);
      border-radius: 6px;
      display: none;
    }

    .submenu-box.active {
      display: block;
    }

    .submenu-box a {
      display: block;
      color: var(--color-muted);
      font-size: 13px;
      margin-bottom: 0.4rem;
    }

    .submenu-box a:hover {
      color: var(--color-accent);
    }

    .submenu-img {
      display: block;
      width: 100%;
      height: 140px;
      max-height: 140px;
      object-fit: cover;
      object-position: center;
      margin-top: 1rem;
      border-radius: 6px;
      box-shadow: var(--shadow-blue);
    }

    @media (max-width: 991px) {
      .navbar-collapse .mega-dropdown {
        position: static;
      }

      .dropdown-menu.dropdown-mega {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 100%;
        flex-direction: column;
        border-radius: 0;
        background: var(--color-bg-dark);
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 0.25rem !important;
      }

      .dropdown-menu.dropdown-mega.show {
        display: flex !important;
      }
      .submenu-panel {
        width: 100%;
      }
      .submenu-box {
        position: static;
        border-left: none;
        margin-top: 0.5rem;
      }
      .submenu-box:not(.active) {
        display: none !important;
      }

      .submenu-img {
        height: 96px;
        max-height: 96px;
      }
    }

    @media (max-width: 767px) {
      .col-left {
        display: none !important;
      }

      .dropdown-menu.dropdown-mega {
        flex-direction: column;
        padding: 1rem;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
      }

      .submenu-container, .submenu-panel {
        width: 100% !important;
        padding: 0;
      }

      .submenu-box {
        border-left: none;
        margin-top: 1rem;
        padding-left: 10px;
      }

      .submenu-item {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
      }
    }
/* Initially hide the search box */
.search-box {
  display: none;
  width: 180px;
  transition: all 0.3s ease;
}

/* When checkbox is checked, show the search box */
#toggleSearch:checked + label + .search-box {
  display: block;
}

/* Style for the input */
.search-box input {
  border: 1px solid rgba(17, 175, 223, 0.509);
  height: 32px;
  font-size: 0.85rem;
}

/* Align everything properly in navbar */
.search-toggle-wrapper {
  display: flex;
  align-items: center;
}


 
.icon-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 18px;
  margin-left: 1rem;
}

/* ========================
   Hero Section
======================== */
.hero-section {
    background-image: url("/uploads/2026/04/1776677742-1-blue-blank-notepad-with-copy-space.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ========================
   Buttons
======================== */
.btn-explore {
  background-color: var(--color-bg-dark);
  color: white;
  font-weight: 500;
  padding: 10px 22px;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn:hover{
    background-color: #dc35bc;

}

.btn-explore::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--color-purple);
  left: 0;
  bottom: -5px;
}
.pillars-section {
  background: linear-gradient(to right, #f4fbff, #eaf7ff);
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pillar-item {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  position: relative;
}

.pillar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: #ccc;
}.about-section {
  padding: 80px 0;
}

.about-image {
border-radius: 1px 30px 30px 1px;
    min-height: 60vh;
    object-fit: cover;
    width: 100%;
}

.about-text {
  max-width: 540px;
  font-weight: 400;
  line-height: 1.6;
}
.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 2px;
  background:#e614df;
  opacity: 0.6;
}

.stats-card {
  background-image:url(/images/index/StatsGrid.png);
  border-radius: 25px;
  padding: 24px 16px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  background-color: #10172a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.highlight {
  color: var(--color-accent);
}

.service-item {
  text-align: center;
  color: #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.icon-wrapper {
    background: linear-gradient(135deg, #fcd4ff, #c6f2ff);
    border-radius: 12px;
    padding: 20px;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-icon {
width: 50px;
    height: 50px;
    z-index: 1;
}
.services-section {
  padding: 80px 0;
  background-image:url(/images/index/Grid.png);
  background-size: contain;
  background-repeat: repeat;
}

.card-hover {
  transition: transform 0.3s ease;
}

.card-hover:hover {
  transform: scale(1.03);
}

.service-stats-section {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.service-cta-banner {
  background-size: cover;
  background-position: center;
}

.service-category-card {
  height: 260px;
  background-size: cover;
  background-position: center;
}

.service-category-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.service-category-card:hover .service-category-card__overlay {
  background: rgba(0, 0, 0, 0.62);
}

.service-process-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.service-process-card {
  min-width: 280px;
  scroll-snap-align: start;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1rem;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}


.image-card {
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  padding: 20px;
  display: block;

}

.image-card h5 {
  margin-top: auto;
  font-size: 1rem;
}

.featured-card {
box-shadow: 0 10px 20px #920aca6e;
    min-height: 352px;
    background-size: cover;
    background-position: center;
    display: block;
      padding: 20px;

}

.masonry-label {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.918);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  display: grid;
  margin-bottom: 10px;
}

.masonry-label span {
  color: #666;
  font-weight: normal;
  margin-left: 4px;
}

.blog-single-hero {
  min-height: 52vh;
  font-family: var(--font-base);
}

.blog-single-title {
  color: var(--color-accent);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-excerpt {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.blog-single-featured img {
  max-height: 480px;
  object-fit: cover;
}

.blog-author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.8;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #111827;
}

.blog-post-content p,
.blog-post-content li {
  color: #374151;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1rem 0;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-accent);
  background: #f8fafc;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.about-section_2 {
    background: linear-gradient(#d0e7f1, #fae2f98a, #d1e7f1);
    overflow: hidden;
}
.review{
      background: linear-gradient(#d0e7f1, #feffff );

}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, #4ec9fa, #4ec9fa 6px, transparent 6px, transparent 12px);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-container {
  max-width: 1000px;
  position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #e8f8ff;
    border: 2px solid #4ec9fa;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.icon-img {
  width: 40px; 
}

.dot {
  width: 14px;
  height: 14px;
  background-color: #4ec9fa;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.horizontal-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background-image: repeating-linear-gradient(to right, #4ec9fa, #4ec9fa 6px, transparent 6px, transparent 12px);
}
.left-line {
  left: -100px;
}
.right-line {
  right: -100px;
}
@media (max-width: 767px) {
  .timeline-row {
    flex-direction: column-reverse !important;
    align-items: center;
    text-align: center;
  }

  .timeline-row .col-md-5,
  .timeline-row .col-md-2 {
    width: 100%;
  }

  .timeline-row .dot {
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
  }

  .timeline-line {
    /* left: 50%;
    transform: translateX(-50%);
    height: 100%;
    top: 0; */
    display: none;
  }

  .timeline-row .horizontal-line {
    display: none;
  }

  .icon-circle {
    margin-bottom: 1rem;
  }
  .timeline-image {
display: none;
}
}
.tech-stack-section {
  position: relative;
  background-image: url('assets/index/tech-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
  z-index: 2;
}

.tech-stack-section .container {
  position: relative;
  z-index: 3; /* Push content above overlay */
}

.tech-stack-section img {
  filter: brightness(0) invert(1); /* optional if logos are black by default */
  opacity: 0.9;
  transition: 0.3s ease-in-out;
}
.cta-over-footer {
  background: linear-gradient(to bottom, #f8fcff 50%, #10172a 50%);
  padding-bottom: 5rem;
  margin-top: -60px;
}

.cta-box {
  max-width: 960px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  border-bottom: 6px solid #4ec9fa;
}

.cta-contact {
  background-color: #111;
  color: #fff;
  border: none;
  position: relative;
}

.cta-contact::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 3px;
  width: 100%;
  background: #a259ff;
}

/* ========================
   service 
======================== */
.card-top-line {
  height: 8px;
  background-color: #22B8F5;
}


/* ========================
  industries 
======================== */


.industry-card-final {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 8px;
}

.industry-card-final img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.industry-caption-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90%; /* 👈 this makes the box 90% of image width */
  background-color: white;
  padding: 15px 40px 15px 20px; /* T R B L */
  font-weight: 600;
  font-size: 1rem;
  color: black;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  line-height: 1.4;
}


.card-label {
  width: 220px;
  height: 70px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-btn-sm {
  width: 150px;
  height: 40px;
  font-size: 16px;
  background-color: #ffffff;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 1rem;
  border: none;
}
.about-section2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
  pointer-events: none;
}
.timeline-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

/* ========================
   Products Page
======================== */
.products-page {
  background-color: #0b111f;
}

.products-page .products-hero {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(600px 260px at 12% 20%, rgba(78, 201, 250, 0.2), transparent 60%),
    radial-gradient(500px 220px at 88% 0%, rgba(78, 201, 250, 0.12), transparent 60%),
    linear-gradient(135deg, #0b111f 0%, #111a2c 55%, #0b111f 100%);
  overflow: hidden;
}

.products-page .products-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 201, 250, 0.18), transparent 70%);
  filter: blur(2px);
  opacity: 0.9;
}

.products-page .products-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(78, 201, 250, 0.12);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-lead {
  color: var(--color-muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(78, 201, 250, 0.3);
  background: rgba(15, 23, 42, 0.6);
  color: var(--color-white);
  font-size: 0.8rem;
}

.products-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

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

.products-section .section-header h2 {
  color: #0f172a;
}

.products-section .section-header p {
  color: #5c6b7a;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-top: 3px solid rgba(78, 201, 250, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  color: #0f172a;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 201, 250, 0.6);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.product-card__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.product-card__header > div:last-child {
  min-width: 0;
}

.product-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0b111f;
  background: linear-gradient(135deg, #4ec9fa, #9de7ff);
}

.product-icon--mint {
  background: linear-gradient(135deg, #35d39b, #9cf2d3);
}

.product-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.product-subtitle {
  margin: 0;
  color: #5c6b7a;
  line-height: 1.5;
}

.product-summary {
  margin: 12px 0 0;
  color: #5c6b7a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a5a6a;
}

.product-features i {
  color: var(--color-accent);
  margin-top: 3px;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(78, 201, 250, 0.12);
  color: #0f172a;
  font-size: 0.75rem;
  border: 1px solid rgba(78, 201, 250, 0.2);
}

.btn-primary-custom {
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: #0b111f;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(78, 201, 250, 0.25);
}

.btn-primary-custom:hover {
  background: #6dd7ff;
  border-color: #6dd7ff;
  color: #0b111f;
}

.btn-ghost {
  border: 1px solid rgba(15, 23, 42, 0.2);
  color: #0f172a;
  padding: 10px 20px;
  border-radius: 999px;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.products-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.products-page .product-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.products-page .product-card .btn-primary-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0b111f;
  box-shadow: 0 12px 24px rgba(78, 201, 250, 0.25);
}

.products-page .product-card .btn-primary-custom:hover {
  background: #6dd7ff;
  border-color: #6dd7ff;
  color: #0b111f;
}

.products-page .product-card .btn-outline-secondary {
  border-color: rgba(28, 34, 46, 0.35);
  color: #1c222e;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.products-page .product-card .btn-outline-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #f5fcff;
}

.value-section {
  padding: 80px 0;
  background: #ffffff;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(78, 201, 250, 0.25), rgba(157, 231, 255, 0.7));
  color: #0b111f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.use-cases-section {
  padding: 80px 0;
  background: #f8fbff;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.use-case-card {
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.use-case-card h6 {
  margin-bottom: 8px;
  color: #0f172a;
}

.use-case-card p {
  margin: 0;
  color: #5c6b7a;
}

.process-section {
  padding: 80px 0;
  background: #ffffff;
}

.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(78, 201, 250, 0.15);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.coming-soon-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f2fbff 0%, #ffffff 100%);
  color: #0f172a;
}

.coming-soon-section .section-header h2 {
  color: #0f172a;
}

.coming-soon-section .text-muted {
  color: #5c6b7a;
}

.coming-soon-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f6ff, #f6eaff);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-page .products-hero .hero-content,
.products-page .products-section .product-card,
.products-page .coming-soon-card {
  animation: fadeUp 0.8s ease both;
}

.products-page .products-section .col-lg-6:nth-child(1) .product-card {
  animation-delay: 0.1s;
}

.products-page .products-section .col-lg-6:nth-child(2) .product-card {
  animation-delay: 0.2s;
}

@media (max-width: 991px) {
  .products-page .products-hero {
    padding: 120px 0 70px;
  }

  .products-section {
    padding: 64px 0;
  }

  .value-section,
  .use-cases-section,
  .process-section {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .product-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .product-card__actions {
    width: 100%;
  }

  .hero-actions .btn,
  .product-card__actions .btn {
    width: 100%;
  }

  .hero-badges span {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-page .products-hero .hero-content,
  .products-page .products-section .product-card,
  .products-page .coming-soon-card {
    animation: none;
  }
}
/* End Products Page */
.products-page .section-header h2,
.products-page .section-header h5,
.products-page .section-header h6 {
  color: #0f172a;
}

.products-page .section-header .section-lead,
.products-page .section-header .text-muted {
  color: #5c6b7a;
}

.products-page .section-lead {
  color: #5c6b7a;
}

.products-hero .section-lead {
  color: var(--color-muted);
}
