/**
* Updated: Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #283d50; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #007bff; /* 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: #024286;  /* The default color of the main navmenu links */
  --nav-hover-color: #007bff; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #007bff; /* 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: #ecf5ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1742a4;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0d358f;
  --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);
}

/* 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);
  }
}

/* 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;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# 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 a {
    padding-right: 0;
  }

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

/* 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;
  }
}

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

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

.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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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 30%);
  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 .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.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: 6px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# 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: 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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: 58px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .hero {
    padding: 60px 0;
  }
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--default-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;
  color: var(--default-color);
}

.why-us .card-item h4 a {
  color: var(--default-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 {
  padding: 0 0 30px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*==============================================================
# Trividhi Labs – UI/UX REDESIGN ADDITIONS
# Append this to the END of assets/css/main.css
# (Replaces all previous custom additions)
==============================================================*/

/*--------------------------------------------------------------
# 1. Global Animation Keyframes
--------------------------------------------------------------*/
@keyframes trividhi-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes trividhi-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}

@keyframes trividhi-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes trividhi-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes trividhi-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes trividhi-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes trividhi-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}

@keyframes trividhi-blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes trividhi-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 0 0 18px rgba(0, 123, 255, 0); }
}

/*--------------------------------------------------------------
# 2. Header / Logo / Navmenu polish
--------------------------------------------------------------*/
.header .logo h1.sitename {
  font-size: 32px;                  /* was 26px → increased */
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #007bff, #1742a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* .header .logo img {
  max-height: 70px;                
  margin-right: 10px;               
  transition: transform 0.4s ease;
}

.header .logo:hover img {
  transform: rotate(-8deg) scale(1.05);
} */

/* logo on right top corner and navmenu will be on the left */
/* .header .logo {  
  order: 2;
}

#navmenu {
  order: 1;
} */

.header .logo img {
  max-height: 70px;                 /* was 38px → increased */
  margin-right: 10px;               /* slight extra gap */
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Navmenu underline animation on hover */
@media (min-width: 1200px) {
  .navmenu > ul > li > a {
    position: relative;
  }
  .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 8px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
  }
  .navmenu > ul > li > a:hover::after,
  .navmenu > ul > li > a.active::after {
    transform: scaleX(1);
  }
  .navmenu .dropdown > a::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# 3. Hero – Home Page
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero-bg-shapes .shape-1 {
  width: 320px;
  height: 320px;
  background: #4a90ff;
  top: -80px;
  right: -60px;
  animation: trividhi-drift-1 14s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
  width: 260px;
  height: 260px;
  background: #00d4ff;
  bottom: -60px;
  left: 10%;
  animation: trividhi-drift-2 18s ease-in-out infinite;
}

.hero-bg-shapes .shape-3 {
  width: 180px;
  height: 180px;
  background: #7c4dff;
  top: 40%;
  left: 45%;
  opacity: 0.2;
  animation: trividhi-drift-1 22s ease-in-out infinite reverse;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  width: fit-content;
}

.hero-eyebrow i {
  font-size: 16px;
  color: #4dffb8;
}

.hero h1 {
  font-size: 44px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* option 1:.hero-highlight */
.hero-highlight {
  background: linear-gradient(135deg, #4dffb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
} 

/* option 2:.hero-highlight */
/*
.hero-highlight {
  background: linear-gradient(120deg, #f0ff4a 0%, #2ee6a6 50%, #f0ff4a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
}
*/

/* option 3:.hero-highlight */
/* background: linear-gradient(135deg, #4dffb8, #00d4ff); */ 
/* .hero-highlight {
  background: linear-gradient(120deg, #ffd54a 0%, #2ee6a6 50%, #ffd54a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
} */

/* option 3:.hero-highlight */
/* .hero-highlight {
  background: linear-gradient(120deg, #4aff6e 0%, #4affe7 25%, #4afffc 50%, #4ad8ff 75%, #4aabff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
  font-weight: 700;
} */


/* .hero-tagline {
  font-size: 14px !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: 0.3px;
} */

.hero-tagline {
  font-size: 14px !important;
  font-style: italic;
  color: #ffd54a !important;          /* bright amber/gold */
  font-weight: 600 !important;
  margin: 0 0 20px 0 !important;
  letter-spacing: 0.3px;
}

.hero-description {
  font-size: 20px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 32px !important;
  max-width: 600px;
  /* text-align: left !important; */
}

.hero-cta {
  gap: 16px;
}

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px !important;
  font-size: 15px !important;
  font-weight: 500;
  border-radius: 50px;
  background: #ffffff !important;
  color: #1742a4 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-left: 0 !important;
}

.hero .btn-get-started:hover {
  background: linear-gradient(135deg, #00d4ff, #4dffb8) !important;
  color: #0d358f !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.35) !important;
}

.hero .btn-get-started i {
  transition: transform 0.3s ease;
}

.hero .btn-get-started:hover i {
  transform: translateX(4px);
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-secondary-cta i {
  font-size: 16px;
}

.hero-img img {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 26px !important;
  }
  .hero-description {
    font-size: 18px !important;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .btn-secondary-cta {
    margin-left: 0 !important;
  }
}

/*--------------------------------------------------------------
# 4. Hero – Inner Pages (shorter, centered)
--------------------------------------------------------------*/
.hero.page-hero {
  min-height: auto;
  padding: 110px 0 90px 0;
}

.hero.page-hero .hero-eyebrow {
  margin: 0 auto 22px auto;
}

.hero.page-hero h1 {
  font-size: 44px !important;
  margin-bottom: 14px !important;
}

.hero.page-hero .hero-description {
  font-size: 18px !important;
  margin: 0 auto !important;
  max-width: 700px;
}

@media (max-width: 640px) {
  .hero.page-hero {
    padding: 80px 0 60px 0;
  }
  .hero.page-hero h1 {
    font-size: 28px !important;
  }
}

/*--------------------------------------------------------------
# 5. Section Title – Animated Underline
--------------------------------------------------------------*/
.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transform: translateX(-50%);
  animation: trividhi-shimmer 3s linear infinite;
  background-size: 200% auto;
}

.section-title p {
  margin-top: 22px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 640px) {
  .section-title h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 6. Capability Cards (Core Capabilities)
# FIXED: icon now top-left in a colored badge, balanced spacing
--------------------------------------------------------------*/
.capabilities .capability-card {
  --icon-color: #007bff;
  --icon-bg: rgba(0, 123, 255, 0.12);
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(40, 61, 80, 0.06);
  border: 1px solid rgba(40, 61, 80, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
}

.capabilities .capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--icon-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.capabilities .capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(40, 61, 80, 0.12);
  border-color: transparent;
}

.capabilities .capability-card:hover::before {
  transform: scaleX(1);
}

.capability-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-icon i {
  font-size: 28px;
  color: var(--icon-color);
  line-height: 1;
  transition: transform 0.4s ease;
}

.capability-card:hover .capability-icon {
  transform: rotate(-6deg) scale(1.08);
}

.capability-card:hover .capability-icon i {
  transform: scale(1.1);
}

.capabilities .capability-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.capabilities .capability-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.capability-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
}

.capability-arrow i {
  color: var(--icon-color);
  font-size: 14px;
  line-height: 1;
}

.capability-card:hover .capability-arrow {
  opacity: 1;
  transform: translateX(0);
}

/*--------------------------------------------------------------
# 7. Feature Cards (Additional Features)
# Two horizontal cards with icon-left layout
--------------------------------------------------------------*/
.additional-features .feature-card {
  --icon-color: #007bff;
  --icon-bg: rgba(0, 123, 255, 0.12);
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 4px 24px rgba(40, 61, 80, 0.05);
  border: 1px solid rgba(40, 61, 80, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(40, 61, 80, 0.1);
  border-color: var(--icon-color);
}

.feature-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon i {
  font-size: 32px;
  color: var(--icon-color);
  line-height: 1;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.05);
}

.feature-card:hover .feature-icon i {
  animation: trividhi-pulse 1.5s ease-in-out infinite;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

@media (max-width: 575px) {
  .additional-features .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# 8. Trusted Future Section – Centered Card with Gradient
--------------------------------------------------------------*/
.trusted-future {
  background-color: #ecf5ff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.trusted-future::before,
.trusted-future::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.trusted-future::before {
  width: 300px;
  height: 300px;
  background: #a8d4ff;
  top: -100px;
  left: -80px;
  animation: trividhi-drift-2 16s ease-in-out infinite;
}

.trusted-future::after {
  width: 260px;
  height: 260px;
  background: #c4baff;
  bottom: -80px;
  right: -60px;
  animation: trividhi-drift-1 20s ease-in-out infinite;
}

.trusted-future-card {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 60px 50px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 60px rgba(23, 66, 164, 0.08);
}

.trusted-future-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #1742a4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
  animation: trividhi-glow 2.5s ease-in-out infinite;
}

.trusted-future-icon i {
  font-size: 38px;
  color: #ffffff;
  line-height: 1;
}

.trusted-future h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.trusted-future p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
  /* text-align: left; */
}

/* option 1:.trusted-future .tf-highlight */
/* Highlight "Passion" and "Purpose" in the Trusted Future title */
/* .trusted-future .tf-highlight { */
  /* color: #bb3fc9; */
  /* color: #ff5a7a;     */
  /* color: #ff7a18;    */
  /* color: #ffd54a;    */
  /* color: #00c2a8;    */
/* } */

/* option 2:.trusted-future .tf-highlight */
/* Animated shimmer highlight for "Passion" and "Purpose" in the Trusted Future title */
.trusted-future .tf-highlight {
  background: linear-gradient(120deg, #4632a8 0%, #6232a8 25%, #7f32a8 50%, #9b32a8 75%, #9b32a8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
}

/* option 3:.trusted-future .tf-highlight */
/* Animated shimmer highlight for "Passion" and "Purpose" in the Trusted Future title */
/* .trusted-future .tf-highlight {
  background: linear-gradient(120deg, #ffd54a 0%, #2ee6a6 50%, #ffd54a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
} */

/* option 4:.trusted-future .tf-highlight */
/* .trusted-future .tf-highlight {
  background: linear-gradient(120deg, #4aff6e 0%, #4affe7 25%, #4afffc 50%, #4ad8ff 75%, #4aabff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
  font-weight: 700;
} */

@media (max-width: 640px) {
  .trusted-future-card {
    padding: 40px 25px;
  }
  .trusted-future h2 {
    font-size: 26px;
  }
  .trusted-future p {
    font-size: 15px;
    
  }
}

/*--------------------------------------------------------------
# 09. Challenge Cards (Need for Digitization)
--------------------------------------------------------------*/
.need-digitization .challenge-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 30px 28px;
  height: 100%;
  text-align: left;
  border: 1px solid rgba(40, 61, 80, 0.06);
  box-shadow: 0 4px 20px rgba(40, 61, 80, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.need-digitization .challenge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-color), #1742a4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.need-digitization .challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 123, 255, 0.22);
  border-color: transparent;
}

.need-digitization .challenge-card:hover::before {
  opacity: 1;
}

.need-digitization .challenge-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.challenge-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 2px;
  background: rgba(0, 123, 255, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.challenge-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 123, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-left: 8px;
  transition: all 0.4s ease;
}

.challenge-icon i {
  font-size: 24px;
  color: var(--accent-color);
  line-height: 1;
  transition: all 0.4s ease;
}

.need-digitization .challenge-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.need-digitization .challenge-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.need-digitization .challenge-card:hover .challenge-number {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.need-digitization .challenge-card:hover .challenge-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-8deg) scale(1.1);
}

.need-digitization .challenge-card:hover .challenge-icon i,
.need-digitization .challenge-card:hover h4,
.need-digitization .challenge-card:hover p {
  color: #ffffff;
}

/*--------------------------------------------------------------
# 10. What We Offer – Centered Statement
--------------------------------------------------------------*/
.what-we-offer {
  padding: 80px 0;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.offer-badge i {
  font-size: 15px;
}

.what-we-offer h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.what-we-offer p {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.offer-eyebrow {
  display: block;
  font-family: var(--nav-font);
  font-size: 22px;          /* ← SIZE of "What We Offer" in the FIRST sections. Bigger number = bigger text */
  font-weight: 600;          /* ← THICKNESS. 400=normal, 600=semi-bold, 700=bold */
  line-height: 1.3;
  letter-spacing: 0.5px;     /* ← spacing BETWEEN letters. Higher = more spread out */
  color: var(--accent-color);/* ← COLOR. Change this to recolor the text (see note below) */
  margin-bottom: 6px;        /* ← GAP between "What We Offer" and the heading below it */
}

.section-title .offer-eyebrow {
  font-size: 22px;           /* ← SIZE of "What We Offer" in the STAKEHOLDER ("Built for Every Stakeholder") section only */
  margin-bottom: 8px;        /* ← GAP for that stakeholder section only */
}

@media (max-width: 640px) {
  .offer-eyebrow,
  .section-title .offer-eyebrow {
    font-size: 15px;         /* ← SIZE on MOBILE phones (screens under 640px). Edit only if mobile looks off */
  }
}

@media (max-width: 640px) {
  .what-we-offer h2 {
    font-size: 26px;
  }
  .what-we-offer p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# 11. Stakeholder Cards (For Patients / Verifiers / Students etc)
--------------------------------------------------------------*/
.stakeholder-lists .stakeholder-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 34px;
  height: 100%;
  border: 1px solid rgba(40, 61, 80, 0.06);
  box-shadow: 0 4px 24px rgba(40, 61, 80, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stakeholder-lists .stakeholder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(40, 61, 80, 0.1);
  border-color: rgba(0, 123, 255, 0.2);
}

.stakeholder-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(40, 61, 80, 0.08);
}

.stakeholder-icon {
  --icon-color: #007bff;
  --icon-bg: rgba(0, 123, 255, 0.12);
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.stakeholder-card:hover .stakeholder-icon {
  transform: rotate(-6deg) scale(1.05);
}

.stakeholder-icon i {
  font-size: 26px;
  color: var(--icon-color);
  line-height: 1;
}

.stakeholder-eyebrow {
  display: block;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.stakeholder-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.2;
}

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

.stakeholder-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.55;
}

.stakeholder-list li i {
  flex-shrink: 0;
  font-size: 19px;
  color: var(--accent-color);
  margin-top: 2px;
  line-height: 1;
}

/*--------------------------------------------------------------
# 12. Benefit Cards – FIXED: equal height, consistent layout
--------------------------------------------------------------*/
.benefits .benefit-card {
  --icon-color: #007bff;
  --icon-bg: rgba(0, 123, 255, 0.12);
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px 36px 32px;
  height: 100%;
  border: 1px solid rgba(40, 61, 80, 0.06);
  box-shadow: 0 4px 24px rgba(40, 61, 80, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.benefits .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(40, 61, 80, 0.1);
  border-color: var(--icon-color);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon i {
  font-size: 30px;
  color: var(--icon-color);
  line-height: 1;
  transition: transform 0.4s ease;
}

.benefits .benefit-card:hover .benefit-icon {
  transform: rotate(-6deg) scale(1.08);
}

.benefits .benefit-card:hover .benefit-icon i {
  animation: trividhi-pulse 1.4s ease-in-out infinite;
}

.benefits .benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(40, 61, 80, 0.08);
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--icon-bg);
  color: var(--icon-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

.benefits .benefit-card:hover .benefit-list li i {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# 13. Contact Page
--------------------------------------------------------------*/
.contact .contact-form-wrap {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(40, 61, 80, 0.08);
  border: 1px solid rgba(40, 61, 80, 0.05);
  height: 100%;
  transition: box-shadow 0.4s ease;
}

.contact .contact-form-wrap:hover {
  box-shadow: 0 12px 36px rgba(40, 61, 80, 0.1);
}

.contact .contact-form-wrap h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-form-wrap > p {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .php-email-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.contact .php-email-form .form-control {
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  border: 1.5px solid rgba(40, 61, 80, 0.12);
  background: #f8fbff;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
}

.contact .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #007bff, #1742a4);
  color: #ffffff;
  border: 0;
  padding: 13px 38px;
  border-radius: 50px;
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  box-shadow: 0 8px 22px rgba(0, 123, 255, 0.3);
}

.contact .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 66, 164, 0.4);
}

.contact .btn-submit i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .btn-submit:hover i {
  transform: translateX(4px);
}

/* ============================================================
   Global .btn-submit — works outside .contact section too
   (used on careers.html talent-pool form)
   ============================================================ */
.btn-submit {
  color: #ffffff;
  background: var(--accent-color);
  border: 0;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

.btn-submit:hover {
  background: #0067d8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.35);
  color: #ffffff;
}

.btn-submit i {
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.btn-submit:hover i {
  transform: translateX(4px);
}

.btn-submit:disabled,
.btn-submit:disabled:hover {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.15);
}

.contact .support-card {
  background: linear-gradient(135deg, #007bff, #1742a4);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0, 123, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.contact .support-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -100px;
  animation: trividhi-drift-1 16s ease-in-out infinite;
}

.contact .support-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -80px;
  left: -60px;
  animation: trividhi-drift-2 20s ease-in-out infinite;
}

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

.contact .support-card > * {
  position: relative;
  z-index: 1;
}

.contact .support-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.contact .support-icon i {
  font-size: 34px;
  color: #ffffff;
  line-height: 1;
}

.contact .support-card h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact .support-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.contact .support-email {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: 12px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
}

.contact .support-email:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(4px);
}

.contact .support-email i {
  font-size: 22px;
  color: #ffffff;
  margin-right: 14px;
  line-height: 1;
}

.contact .support-email a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  word-break: break-all;
}

@media (max-width: 640px) {
  .contact .contact-form-wrap {
    padding: 30px 25px;
  }
  .contact .support-card {
    padding: 36px 28px;
  }
}

/*--------------------------------------------------------------
# 14. Footer Polish
--------------------------------------------------------------*/
.footer .footer-about .logo .sitename {
  background: linear-gradient(135deg, #ffffff, #a8d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-links ul a {
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer .footer-links ul a:hover {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# 15. Scroll-Top button polish
--------------------------------------------------------------*/
.scroll-top {
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.35);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Capability & Feature Card – PNG Image Icon Variant
# Overrides default colored badges when an <img> is used
--------------------------------------------------------------*/

/* Capability cards using PNG images */
.capability-icon-img {
  width: 80px;
  height: 80px;
  background: transparent !important;
  border-radius: 0;
  padding: 6px;
  margin-bottom: 18px;
  overflow: visible;
}

.capability-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(40, 61, 80, 0.12));
}

.capability-card:hover .capability-icon-img {
  transform: none;
}

.capability-card:hover .capability-icon-img img {
  transform: rotate(-6deg) scale(1.08);
  filter: drop-shadow(0 8px 18px rgba(0, 123, 255, 0.25));
}

/* Feature cards using PNG images */
.feature-icon-img {
  width: 88px !important;
  height: 88px !important;
  background: transparent !important;
  border-radius: 0;
  padding: 4px;
  overflow: visible;
}

.feature-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(40, 61, 80, 0.12));
}

.feature-card:hover .feature-icon-img {
  transform: none;
}

.feature-card:hover .feature-icon-img img {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(0, 123, 255, 0.3));
  animation: trivdhi-pulse 1.6s ease-in-out infinite;
}

/* Responsive sizing */
@media (max-width: 575px) {
  .capability-icon-img {
    width: 72px;
    height: 72px;
  }
  .feature-icon-img {
    width: 80px !important;
    height: 80px !important;
  }
}

/*==============================================================
# CORE CAPABILITIES + ADDITIONAL FEATURES — PREMIUM REDESIGN
# Append at end of main.css (after all previous additions)
==============================================================*/

/*--------------------------------------------------------------
# Section eyebrow (shared between both sections)
--------------------------------------------------------------*/
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-eyebrow i {
  font-size: 14px;
}

/*==============================================================
# CORE CAPABILITIES — PREMIUM REDESIGN
==============================================================*/
.capabilities {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px 0;
}

/* Subtle dot grid background pattern */
.capabilities-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 123, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.capabilities .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Capability Card — OVERRIDES previous version
--------------------------------------------------------------*/
.capabilities .capability-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 30px 32px 30px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(40, 61, 80, 0.06);
  box-shadow: 0 6px 28px rgba(40, 61, 80, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.capabilities .capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.capabilities .capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 123, 255, 0.15);
  border-color: transparent;
}

.capabilities .capability-card:hover::before {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Icon + halo (CENTERED, much larger)
--------------------------------------------------------------*/
.capability-icon-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 22px auto;
}

.capability-icon-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.16) 0%, rgba(0, 123, 255, 0) 70%);
  transition: transform 0.6s ease;
  animation: trivdhi-pulse 3.5s ease-in-out infinite;
}

.capabilities .capability-card:hover .capability-icon-halo {
  transform: scale(1.18);
  background: radial-gradient(circle, rgba(0, 123, 255, 0.24) 0%, rgba(0, 123, 255, 0) 70%);
}

/* Override prior .capability-icon-img sizing inside capabilities section */
.capabilities .capability-icon-img {
  position: relative;
  width: 110px !important;
  height: 110px !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capabilities .capability-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(40, 61, 80, 0.15));
}

.capabilities .capability-card:hover .capability-icon-img img {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 12px 22px rgba(0, 123, 255, 0.3));
}

/*--------------------------------------------------------------
# Title, description, arrow
--------------------------------------------------------------*/
.capabilities .capability-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.capabilities .capability-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0 0 18px 0;
  flex-grow: 1;
}

/* Arrow — now centered at bottom, visible on hover */
.capabilities .capability-arrow {
  position: relative;
  bottom: auto;
  right: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capabilities .capability-arrow i {
  color: var(--accent-color);
  font-size: 15px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.capabilities .capability-card:hover .capability-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--accent-color);
}

.capabilities .capability-card:hover .capability-arrow i {
  color: #ffffff;
  transform: translateX(2px);
}

/* Center the orphan card in the last row of Core Capabilities */
/* .capabilities .row.gy-4 > .col-lg-4:last-child {
  margin-left: auto;
  margin-right: auto;
} */
@media (min-width: 992px) {
  .capabilities .row.gy-4 > .col-lg-4:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .capabilities {
    padding: 60px 0 70px 0;
  }
  .capability-icon-wrap {
    width: 110px;
    height: 110px;
  }
  .capabilities .capability-icon-img {
    width: 92px !important;
    height: 92px !important;
  }
}

/*==============================================================
# ADDITIONAL FEATURES — PREMIUM REDESIGN
==============================================================*/
.additional-features {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px 0;
}

.features-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.features-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.features-shape-1 {
  width: 360px;
  height: 360px;
  background: #a8d4ff;
  top: -120px;
  left: -80px;
  animation: trivdhi-drift-1 18s ease-in-out infinite;
}

.features-shape-2 {
  width: 320px;
  height: 320px;
  background: #ffd4a8;
  bottom: -120px;
  right: -80px;
  animation: trivdhi-drift-2 22s ease-in-out infinite;
}

.additional-features .container {
  position: relative;
  z-index: 2;
}

/* Override prior .feature-card from earlier additions */
.additional-features .feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px 44px 40px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 6px 30px rgba(40, 61, 80, 0.06);
  border: 1px solid rgba(40, 61, 80, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-blue .feature-card-accent {
  background: linear-gradient(90deg, #007bff, #00d4ff);
}

.feature-card-orange .feature-card-accent {
  background: linear-gradient(90deg, #fd7e14, #ffb366);
}

.additional-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 123, 255, 0.15);
  border-color: transparent;
}

.feature-card-orange:hover {
  box-shadow: 0 24px 50px rgba(253, 126, 20, 0.18);
}

.additional-features .feature-card:hover .feature-card-accent {
  transform: scaleX(1);
}

/* Icon halo (large, centered) */
.feature-icon-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.18) 0%, rgba(0, 123, 255, 0) 70%);
  transition: transform 0.6s ease;
  animation: trivdhi-pulse 3s ease-in-out infinite;
}

.feature-card-orange .feature-icon-halo {
  background: radial-gradient(circle, rgba(253, 126, 20, 0.18) 0%, rgba(253, 126, 20, 0) 70%);
}

.additional-features .feature-card:hover .feature-icon-halo {
  transform: scale(1.15);
}

.additional-features .feature-icon-img {
  position: relative;
  width: 150px !important;
  height: 150px !important;
  background: transparent !important;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-features .feature-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 18px rgba(40, 61, 80, 0.15));
}

.additional-features .feature-card:hover .feature-icon-img img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 12px 24px rgba(0, 123, 255, 0.3));
}

.feature-card-orange:hover .feature-icon-img img {
  filter: drop-shadow(0 12px 24px rgba(253, 126, 20, 0.3));
}

/* Content */
.additional-features .feature-content {
  text-align: center;
  width: 100%;
}

.additional-features .feature-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.additional-features .feature-content p {
  font-size: 15px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0 auto 24px auto;
  max-width: 380px;
}

/* Pills */
.feature-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #f5f9ff;
  border: 1px solid rgba(0, 123, 255, 0.15);
  border-radius: 50px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: trivdhi-fadeInUp 0.5s ease forwards;
}

.feature-pills li:nth-child(1) { animation-delay: 0.6s; }
.feature-pills li:nth-child(2) { animation-delay: 0.75s; }
.feature-pills li:nth-child(3) { animation-delay: 0.9s; }

.feature-pills li i {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 700;
}

.feature-card-orange .feature-pills li {
  background: #fff7ef;
  border-color: rgba(253, 126, 20, 0.18);
}

.feature-card-orange .feature-pills li i {
  color: #fd7e14;
}

.additional-features .feature-card:hover .feature-pills li {
  background: rgba(0, 123, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

.feature-card-orange:hover .feature-pills li {
  background: rgba(253, 126, 20, 0.08);
  border-color: rgba(253, 126, 20, 0.3);
}

@media (max-width: 640px) {
  .additional-features {
    padding: 60px 0 70px 0;
  }
  .additional-features .feature-card {
    padding: 38px 26px 32px 26px;
  }
  .feature-icon-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 18px;
  }
  .additional-features .feature-icon-img {
    width: 120px !important;
    height: 120px !important;
  }
  .additional-features .feature-content h3 {
    font-size: 20px;
  }
}

/*==============================================================
# APPLICATIONS SECTION — FINAL CLEAN VERSION
# This block REPLACES every previous .applications / .application-card rule
# Paste at the very end of main.css
==============================================================*/

.applications {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px 0;
}

.applications-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.apps-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.apps-shape-1 {
  width: 380px;
  height: 380px;
  background: #ffb3c1;
  top: -100px;
  right: -100px;
  animation: trivdhi-drift-2 20s ease-in-out infinite;
}

.apps-shape-2 {
  width: 340px;
  height: 340px;
  background: #c4baff;
  bottom: -120px;
  left: -100px;
  animation: trivdhi-drift-1 24s ease-in-out infinite;
}

.applications .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Application Card — horizontal split layout
# FULL OVERRIDES of any previous rules
--------------------------------------------------------------*/
.applications .application-card {
  position: relative !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  height: 100% !important;
  min-height: 340px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(40, 61, 80, 0.08) !important;
  border: 1px solid rgba(40, 61, 80, 0.05) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 0 !important;
  text-align: left !important;
}

.applications .application-card::before {
  display: none !important;
  content: none !important;
}

.applications .application-card::after {
  display: none !important;
  content: none !important;
}

.applications .application-card:hover {
  transform: translateY(-10px);
  border-color: transparent !important;
}

.application-healthcare:hover {
  box-shadow: 0 24px 50px rgba(111, 66, 193, 0.18) !important;
}

.application-education:hover {
  box-shadow: 0 24px 50px rgba(111, 66, 193, 0.18) !important;
}

/*--------------------------------------------------------------
# Image panel (LEFT side) — colored gradient background
--------------------------------------------------------------*/
.application-image-panel {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  background: transparent;
}

.application-healthcare .application-image-panel {
  background: linear-gradient(135deg, #ede5ff 0%, #d9c8ff 100%);
}

.application-education .application-image-panel {
  background: linear-gradient(135deg, #ede5ff 0%, #d9c8ff 100%);
}

.app-pattern-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
  z-index: 1;
}

.app-pattern-circle {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(2px);
  z-index: 1;
}

.application-image {
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(40, 61, 80, 0.2));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* .applications .application-card:hover .application-image {
  transform: scale(1.08) rotate(-4deg);
} */
.applications .application-card:hover .application-image {
  transform: scale(1.08);
}

.application-healthcare:hover .application-image {
  filter: drop-shadow(0 16px 32px rgba(111, 66, 193, 0.3));
}

.application-education:hover .application-image {
  filter: drop-shadow(0 16px 32px rgba(111, 66, 193, 0.3));
}

/*--------------------------------------------------------------
# Body (RIGHT side)
--------------------------------------------------------------*/
.application-body {
  flex: 1 1 auto;
  padding: 36px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  text-align: left;
}

/* Tag pill — full override */
.applications .application-tag {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  font-family: var(--nav-font);
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
  width: fit-content !important;
  position: static !important;
  background: transparent;
}

.application-healthcare .application-tag {
  background: rgba(111, 66, 193, 0.1) !important;
  color: #6f42c1 !important;
}

.application-education .application-tag {
  background: rgba(111, 66, 193, 0.1) !important;
  color: #6f42c1 !important;
}

.applications .application-tag i {
  font-size: 13px;
}

.applications .application-card h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--heading-color) !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.3px;
  line-height: 1.25 !important;
  text-align: left !important;
}

.applications .application-card p {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: color-mix(in srgb, var(--default-color), transparent 15%) !important;
  margin: 0 0 18px 0 !important;
  max-width: none !important;
  text-align: left !important;
}

/*--------------------------------------------------------------
# Bullet list
--------------------------------------------------------------*/
.application-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.application-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
  padding: 0;
  border: 0;
}

.application-bullets li i {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}

.application-healthcare .application-bullets li i {
  color: #6f42c1;
}

.application-education .application-bullets li i {
  color: #6f42c1;
}

/*--------------------------------------------------------------
# Learn More button — FULL OVERRIDE of giant pill issue
--------------------------------------------------------------*/
.applications .btn-learn-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 11px 26px !important;
  color: #ffffff !important;
  font-family: var(--nav-font);
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
  border-radius: 50px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: fit-content !important;
  max-width: fit-content !important;
  border: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
  white-space: nowrap;
  position: static !important;
}

.application-healthcare .btn-learn-more {
  background: linear-gradient(135deg, #6f42c1, #9070e4) !important;
  box-shadow: 0 6px 18px rgba(111, 66, 193, 0.3) !important;
}

.application-education .btn-learn-more {
  background: linear-gradient(135deg, #6f42c1, #9070e4) !important;
  box-shadow: 0 6px 18px rgba(111, 66, 193, 0.3) !important;
}

.applications .btn-learn-more:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.application-healthcare .btn-learn-more:hover {
  box-shadow: 0 12px 28px rgba(111, 66, 193, 0.4) !important;
}

.application-education .btn-learn-more:hover {
  box-shadow: 0 12px 28px rgba(111, 66, 193, 0.4) !important;
}

.applications .btn-learn-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.applications .btn-learn-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Hide any old leftover .application-icon if it still appears
--------------------------------------------------------------*/
.applications .application-icon {
  display: none !important;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .applications .application-card {
    flex-direction: column !important;
    min-height: auto !important;
  }

  .application-image-panel {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 36px 22px 30px 22px;
    min-height: 240px;
  }

  .application-image {
    max-width: 200px !important;
  }

  .application-body {
    padding: 28px 30px 32px 30px;
  }
}

@media (max-width: 575px) {
  .applications {
    padding: 60px 0 70px 0;
  }

  .application-image-panel {
    padding: 30px 22px 24px 22px;
    min-height: 200px;
  }

  .application-image {
    max-width: 170px !important;
  }

  .application-body {
    padding: 24px 24px 28px 24px;
  }

  .applications .application-card h3 {
    font-size: 21px !important;
  }
}

/*==============================================================
  HEALTHCARE PAGE — NEXT LEVEL UPGRADES (append to main.css)
  All styles use existing CSS variables so they auto-adapt to theme.
  ==============================================================*/

/*--------------------------------------------------------------
# 0. Section kicker (small label above section H2)
--------------------------------------------------------------*/
.section-kicker {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.dark-background .section-kicker {
  color: #7eb8ff;
  background: rgba(126, 184, 255, 0.15);
}

/*--------------------------------------------------------------
# 1. HERO — animated mesh, accent word, tagline pills, stats, scroll cue
--------------------------------------------------------------*/
.hero-enhanced {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Animated gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 123, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(32, 201, 151, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(13, 202, 240, 0.20) 0%, transparent 70%);
  animation: heroMeshMove 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroMeshMove {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.05); }
  100% { transform: translate(2%, -2%) scale(1); }
}

/* Floating decorative shapes */
.hero-enhanced .hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.hero-enhanced .hero-bg-shapes .shape-1 {
  width: 280px; height: 280px;
  top: 10%; left: -5%;
  background: rgba(0, 123, 255, 0.4);
  animation-delay: 0s;
}

.hero-enhanced .hero-bg-shapes .shape-2 {
  width: 220px; height: 220px;
  bottom: 15%; right: -3%;
  background: rgba(32, 201, 151, 0.35);
  animation-delay: 2s;
}

.hero-enhanced .hero-bg-shapes .shape-3 {
  width: 180px; height: 180px;
  top: 40%; right: 25%;
  background: rgba(13, 202, 240, 0.3);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-30px); }
}

/* Accent word in H1 */
/* .hero-accent {
  background: linear-gradient(120deg, #7eb8ff 0%, #20c997 50%, #7eb8ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
} */
/* Accent word in H1 */
.hero-accent {
  background: linear-gradient(120deg, #f0ff4a 0%, #2ee6a6 50%, #f0ff4a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  font-weight: 700;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Tagline pills */
.page-hero .hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  margin: 1.25rem 0 1.5rem;
}

.tag-word {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.tag-word:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .page-hero .hero-tagline { font-size: 1.15rem; }
}

/* Hero stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat { display: flex; flex-direction: column; align-items: center; min-width: 110px; }

.hero-stat-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--nav-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 575.98px) {
  .hero-stat-divider { display: none; }
  .hero-stat-num { font-size: 1.6rem; }
}

/* Scroll cue (animated mouse-wheel indicator) */
.hero-scroll-cue {
  margin-top: 2.5rem;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%   { transform: translate(-50%, 0);   opacity: 1; }
  50%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0);   opacity: 0; }
}

/*--------------------------------------------------------------
# 2. NEED FOR DIGITIZATION — feature rows with decorated images
--------------------------------------------------------------*/
.section-bridge { padding-top: 6rem; padding-bottom: 4rem; }

.feature-row {
  padding: 4rem 0;
  position: relative;
}

.feature-row + .feature-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--accent-color), transparent 70%), transparent);
}

/* Decorated image frame */
.feature-image-decorated {
  position: relative;
  border-radius: 20px;
  background: var(--surface-color);
  box-shadow: 0 20px 50px rgba(20, 40, 100, 0.10);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image-decorated img {
  width: 100%; height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.feature-image-decorated:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(20, 40, 100, 0.15);
}

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

/* Decorative shape BEHIND image */
.feature-image-decorated::before {
  content: "";
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  transition: all 0.6s ease;
  animation: floatShape 7s ease-in-out infinite;
}

.feature-image-decorated[data-shape="circle"]::before {
  width: 70%; height: 70%;
  border-radius: 50%;
  top: -10%; right: -10%;
}

.feature-image-decorated[data-shape="blob"]::before {
  width: 75%; height: 75%;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  bottom: -15%; left: -10%;
  animation: blobMorph 10s ease-in-out infinite;
}

.feature-image-decorated[data-shape="hex"]::before {
  width: 65%; height: 65%;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  top: -8%; right: -8%;
}

/* Tints */
.feature-image-decorated[data-tint="red"]::before    { background: rgba(223, 21, 41, 0.10); }
.feature-image-decorated[data-tint="amber"]::before  { background: rgba(255, 193, 7, 0.12); }
.feature-image-decorated[data-tint="purple"]::before { background: rgba(111, 66, 193, 0.10); }
.feature-image-decorated[data-tint="teal"]::before   { background: rgba(32, 201, 151, 0.12); }
.feature-image-decorated[data-tint="blue"]::before   { background: rgba(0, 123, 255, 0.12); }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-15px) rotate(8deg); }
}

@keyframes blobMorph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  50%      { border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%; }
}

/*--------------------------------------------------------------
# Need for Digitization — smaller, centered feature images
--------------------------------------------------------------*/
/* .need-digitization .feature-image-decorated {
  max-width: 300px;        
  margin-left: auto;       
  margin-right: auto;
  padding: 1.25rem;
} */

.need-digitization .feature-image-decorated {
  max-width: 500px;        /* outer box size */
  margin-left: auto;       /* center within the column */
  margin-right: auto;
  padding: 0;              /* gap now handled by image width, not padding */
}

/* Icon image takes the middle portion of the box, leaving an even gap all sides */
.need-digitization .feature-image-decorated img {
  width: 75%;              
  height: 75%;             /* keeps top & bottom gap matching */
  object-fit: contain;
}

/* Light-blue glow behind Need for Digitization images — always on */
.need-digitization .feature-image-decorated::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.30) 0%, rgba(0, 123, 255, 0) 70%);
  animation: trivdhi-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
  transition: background 0.4s ease, transform 0.4s ease;
}

/* On hover — brighter & stronger glow */
.need-digitization .feature-image-decorated:hover::after {
  background: radial-gradient(circle, rgba(0, 123, 255, 0.50) 0%, rgba(0, 123, 255, 0) 72%);
  transform: scale(1.15);
}

/* Chip label on image */
.feature-image-chip {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
}

.feature-image-chip span {
  margin-right: 4px;
  opacity: 0.85;
}

/* Larger version for Seamless Sharing hero image */
.feature-image-lg { aspect-ratio: 4 / 3; }

/* Feature text */
.feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--nav-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.feature-text h3 {
  font-weight: 700;
  font-size: 1.85rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* "The shift" callout under each feature */
.feature-impact {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  transition: transform 0.3s ease;
}

.feature-impact:hover { transform: translateX(4px); }

.feature-impact i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-impact span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--heading-color);
}

/* Feature checklist (used in Seamless Sharing) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(6px);
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/*--------------------------------------------------------------
# 3. STATS STRIP — dark band with animated counters
--------------------------------------------------------------*/
.stats-strip {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.stats-strip-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 50%, rgba(0, 123, 255, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(32, 201, 151, 0.25) 0%, transparent 70%);
  animation: heroMeshMove 22s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Stats strip section title */
.stats-strip-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .stats-strip-title {
    font-size: 24px;
  }
}

.stats-strip .container { position: relative; z-index: 1; }

.stat-block {
  padding: 1rem 0.5rem;
  transition: transform 0.3s ease;
}

.stat-block:hover { transform: translateY(-6px); }

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat-num {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# 4. HOW IT WORKS — Trust Triangle with animated flow
--------------------------------------------------------------*/
.how-it-works { padding: 5rem 0; }

.trust-triangle {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 800 / 480;
}

.trust-triangle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.trust-triangle-svg .flow-line {
  opacity: 0.4;
  animation: dashScroll 25s linear infinite;
}

@keyframes dashScroll {
  to { stroke-dashoffset: -200; }
}

/* Traveling dots — each on its own path via offset-path */
.trust-triangle-svg .flow-dot {
  offset-rotate: 0deg;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  filter: drop-shadow(0 0 6px currentColor);
}

.trust-triangle-svg .flow-dot-1 {
  offset-path: path("M 400 110 L 200 360");
  animation: flowDot 4s linear infinite;
}

.trust-triangle-svg .flow-dot-2 {
  offset-path: path("M 220 400 L 580 400");
  animation: flowDot 4s linear infinite;
  animation-delay: 1.3s;
}

.trust-triangle-svg .flow-dot-3 {
  offset-path: path("M 600 360 L 410 110");
  animation: flowDot 4s linear infinite;
  animation-delay: 2.6s;
}

@keyframes flowDot {
  0%   { offset-distance: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Trust nodes (positioned absolutely) */
.trust-node {
  position: absolute;
  width: 230px;
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(20, 40, 100, 0.12);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.35s ease;
  z-index: 2;
}

.trust-node:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 123, 255, 0.20);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.trust-node-issuer   { top: 0;            left: 50%;  transform: translateX(-50%); }
.trust-node-holder   { bottom: 8%;        left: 4%; }
.trust-node-verifier { bottom: 8%;        right: 4%; }

.trust-node-issuer:hover   { transform: translateX(-50%) translateY(-8px) scale(1.03); }

.trust-node-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  transition: transform 0.4s ease;
}

.trust-node:hover .trust-node-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--accent-color);
  color: #fff;
}

.trust-node-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-node-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Mobile: stack the trust triangle as cards */
@media (max-width: 767.98px) {
  .trust-triangle { aspect-ratio: auto; height: auto; }
  .trust-triangle-svg { display: none; }
  .trust-node {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
    transform: none !important;
  }
}

/*--------------------------------------------------------------
# 5. OFFER CARDS — enhanced with glow + arrow
--------------------------------------------------------------*/
.offer-card-enhanced {
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  isolation: isolate;
}

.offer-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 123, 255, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.offer-card-enhanced > *:not(.offer-card-glow) { position: relative; z-index: 1; }

.offer-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.offer-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

.offer-card-enhanced:hover::before { transform: translateX(100%); }
.offer-card-enhanced:hover .offer-card-glow { opacity: 1; }

.offer-card-enhanced .offer-icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.offer-card-enhanced:hover .offer-icon {
  background: var(--accent-color);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.offer-card-enhanced h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.offer-card-enhanced p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.offer-card-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.35s ease;
}

.offer-card-enhanced:hover .offer-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--accent-color);
  color: #fff;
}

/*--------------------------------------------------------------
# 6. STAKEHOLDER CARDS — enhanced
--------------------------------------------------------------*/
.stakeholder-card-enhanced {
  position: relative;
  background: var(--surface-color);
  border-radius: 22px;
  padding: 2.25rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: 0 10px 30px rgba(20, 40, 100, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.stakeholder-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #20c997 50%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stakeholder-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(20, 40, 100, 0.12);
}

.stakeholder-card-enhanced:hover::before { transform: scaleX(1); }

.stakeholder-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stakeholder-icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--icon-bg, rgba(0, 123, 255, 0.12));
  color: var(--icon-color, var(--accent-color));
  font-size: 1.7rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.stakeholder-card-enhanced:hover .stakeholder-icon {
  transform: rotate(-8deg) scale(1.05);
}

.stakeholder-eyebrow {
  display: block;
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.stakeholder-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.stakeholder-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

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

.stakeholder-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.5rem;
  margin-bottom: 0.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.55;
}

.stakeholder-list li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateX(4px);
}

.stakeholder-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.stakeholder-list li strong {
  color: var(--heading-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# 7. BENEFIT CARDS — enhanced
--------------------------------------------------------------*/
.benefit-card-enhanced {
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  isolation: isolate;
}

.benefit-card-bg {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--icon-color, var(--accent-color)), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}

.benefit-card-enhanced > *:not(.benefit-card-bg) { position: relative; z-index: 1; }

.benefit-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 40, 100, 0.12);
}

.benefit-card-enhanced:hover .benefit-card-bg {
  opacity: 0.06;
  transform: scale(1.2);
}

.benefit-card-enhanced .benefit-icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--icon-bg, rgba(0, 123, 255, 0.12));
  color: var(--icon-color, var(--accent-color));
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.benefit-card-enhanced:hover .benefit-icon {
  transform: rotate(-8deg) scale(1.1);
}

.benefit-card-enhanced h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.benefit-card-enhanced > p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

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

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.benefit-list li i {
  color: var(--icon-color, var(--accent-color));
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/*--------------------------------------------------------------
# 8. CTA BANNER — full-width dark, with mesh
--------------------------------------------------------------*/
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 123, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(32, 201, 151, 0.30) 0%, transparent 60%);
  animation: heroMeshMove 25s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0;
}

/* CTA buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary {
  background: #ffffff;
  color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.btn-cta-primary:hover {
  background: #f0f8ff;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.35);
}

.btn-cta-primary i { transition: transform 0.35s ease; }
.btn-cta-primary:hover i { transform: translateX(4px); }

.btn-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .cta-banner h2 { font-size: 1.6rem; }
  .btn-cta { margin-left: 0; margin-right: 0.5rem; }
}

/*--------------------------------------------------------------
# 9. RESPONSIVE TWEAKS
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .hero-enhanced { min-height: auto; padding: 5rem 0 3rem; }
  .feature-row { padding: 2.5rem 0; }
  .feature-text h3 { font-size: 1.5rem; }
  .feature-image-decorated { aspect-ratio: 16 / 10; }
}

@media (max-width: 575.98px) {
  .feature-text h3 { font-size: 1.35rem; }
  .stat-num { font-size: 2rem; }
  .stakeholder-card-enhanced,
  .offer-card-enhanced,
  .benefit-card-enhanced { padding: 1.5rem 1.25rem; }
  .stakeholder-header { gap: 0.75rem; }
  .stakeholder-icon { width: 52px; height: 52px; font-size: 1.4rem; }
  .stakeholder-header h3 { font-size: 1.15rem; }
}

/*--------------------------------------------------------------
# 10. ACCESSIBILITY — respect reduced motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .stats-strip-mesh,
  .cta-banner-mesh,
  .hero-enhanced .hero-bg-shapes .shape,
  .hero-accent,
  .feature-image-decorated::before,
  .trust-triangle-svg .flow-line,
  .trust-triangle-svg .flow-dot,
  .hero-scroll-cue span {
    animation: none !important;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   EDUCATION PAGE — 3-up stakeholder grid refinements
   Appended after the healthcare-page CSS block in main.css.
   Why: Education has 3 stakeholders (Issuer + Holder + Verifier)
   vs Healthcare's 2 (Patient + Verifier). Each card is narrower
   so we tighten paddings and typography just for the 3-up case.
   ============================================================ */
@media (min-width: 992px) {
  #stakeholder-lists .col-lg-4 .stakeholder-card-enhanced {
    padding: 28px 24px;
  }
  #stakeholder-lists .col-lg-4 .stakeholder-card-enhanced .stakeholder-intro {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  #stakeholder-lists .col-lg-4 .stakeholder-card-enhanced .stakeholder-list li {
    font-size: 0.92rem;
    line-height: 1.55;
  }
  #stakeholder-lists .col-lg-4 .stakeholder-card-enhanced .stakeholder-header h3 {
    font-size: 1.15rem;
  }
}

/* ============================================================
   CONTACT + CAREERS PAGES — UI/UX additions
   Appended to assets/css/main.css after the Education block.
   Builds on existing classes (.contact-form-wrap, .support-card,
   .btn-submit, .benefit-card-enhanced, .cta-banner, etc.) and
   only adds what's new. Stays consistent with the design system.
   ============================================================ */

/* ====== FORM REFINEMENTS (shared by both forms) ====== */

.trividhi-form .form-label {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.trividhi-form .form-label .req {
  color: #df1529;
  font-weight: 600;
  margin-left: 2px;
}

.trividhi-form .form-control,
.trividhi-form .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.trividhi-form .form-control:focus,
.trividhi-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
  outline: none;
}

.trividhi-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.trividhi-form .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23283d50' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.trividhi-form .form-helper {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.trividhi-form .char-counter {
  font-size: 0.8rem;
  color: rgba(40, 61, 80, 0.6);
}

.trividhi-form .form-helper-text {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(40, 61, 80, 0.65);
}

.trividhi-form .consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(40, 61, 80, 0.85);
  cursor: pointer;
}

.trividhi-form .consent-label .form-check-input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.trividhi-form .consent-label .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.trividhi-form .form-status {
  margin-bottom: 16px;
}

.trividhi-form .form-status-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  border: 1px solid transparent;
}

.trividhi-form .form-status-msg.d-block {
  display: block;
}

.trividhi-form .form-status-msg.loading {
  background: rgba(0, 123, 255, 0.08);
  color: var(--accent-color);
  border-color: rgba(0, 123, 255, 0.18);
}

.trividhi-form .form-status-msg.loading i {
  animation: spin-slow 1.2s linear infinite;
  display: inline-block;
  margin-right: 6px;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.trividhi-form .form-status-msg.error {
  background: rgba(223, 21, 41, 0.08);
  color: #c41020;
  border-color: rgba(223, 21, 41, 0.18);
}

.trividhi-form .form-status-msg.success {
  background: rgba(32, 201, 151, 0.1);
  color: #14794d;
  border-color: rgba(32, 201, 151, 0.22);
}

.trividhi-form .form-status-msg i {
  margin-right: 6px;
}

.trividhi-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.form-eyebrow i {
  font-size: 0.95rem;
}

/* ====== CONTACT CHANNELS ====== */

.contact-channels .channel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--default-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-channels .channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 123, 255, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-channels .channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.08);
}

.contact-channels .channel-card:hover::before {
  opacity: 1;
}

.contact-channels .channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  font-size: 1.6rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.contact-channels .channel-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.contact-channels .channel-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(40, 61, 80, 0.75);
  flex-grow: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.contact-channels .channel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.contact-channels .channel-cta i {
  transition: transform 0.2s ease;
}

.contact-channels .channel-card:hover .channel-cta i {
  transform: translateX(4px);
}

/* ====== CONTACT SIDE STACK ====== */

.contact-side-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.response-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px;
}

.response-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.response-card h4 i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.response-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.response-steps li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(40, 61, 80, 0.85);
  counter-increment: step;
}

.response-steps li:last-child {
  margin-bottom: 0;
}

.response-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
}

.trust-strip {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(40, 61, 80, 0.8);
}

.trust-strip-item i {
  color: var(--accent-color);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ====== FAQ ACCORDION ====== */

.trividhi-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.trividhi-accordion .accordion-button {
  font-weight: 500;
  font-size: 1rem;
  color: var(--heading-color);
  padding: 18px 22px;
  background: #ffffff;
  border: none;
  box-shadow: none;
}

.trividhi-accordion .accordion-button:not(.collapsed) {
  background: rgba(0, 123, 255, 0.04);
  color: var(--accent-color);
  box-shadow: none;
}

.trividhi-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.trividhi-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23007bff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.trividhi-accordion .accordion-body {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(40, 61, 80, 0.85);
}

.trividhi-accordion .accordion-body a {
  color: var(--accent-color);
  font-weight: 500;
}

/* ====== CAREERS — Hero actions ====== */

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ====== CAREERS — Value cards ====== */

.how-we-work .value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work .value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.06);
}

.how-we-work .value-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  color: rgba(0, 123, 255, 0.08);
  line-height: 1;
}

.how-we-work .value-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.how-we-work .value-card h4 i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.how-we-work .value-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(40, 61, 80, 0.78);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ====== CAREERS — No openings empty state ====== */

.no-openings {
  background: #ffffff;
  border: 2px dashed rgba(0, 123, 255, 0.2);
  border-radius: 20px;
  padding: 56px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.no-openings-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.08);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.no-openings h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 14px;
}

.no-openings p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(40, 61, 80, 0.78);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ====== CAREERS — Opening cards (for when hiring) ====== */

.opening-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.opening-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.08);
}

.opening-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.opening-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
}

.opening-tag.tag-eng { background: rgba(0, 123, 255, 0.1); color: var(--accent-color); }
.opening-tag.tag-product { background: rgba(111, 66, 193, 0.1); color: #6f42c1; }
.opening-tag.tag-research { background: rgba(32, 201, 151, 0.12); color: #14794d; }
.opening-tag.tag-business { background: rgba(255, 193, 7, 0.15); color: #b58400; }

.opening-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(40, 61, 80, 0.65);
}

.opening-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.opening-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(40, 61, 80, 0.78);
  margin: 0;
}

.opening-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.opening-type {
  font-size: 0.85rem;
  color: rgba(40, 61, 80, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.opening-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.opening-apply:hover {
  gap: 10px;
  color: var(--accent-color);
}

/* ====== CAREERS — Hiring timeline ====== */

.hiring-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}

.hiring-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color) 0%, rgba(0, 123, 255, 0.2) 100%);
  border-radius: 2px;
}

.hiring-step {
  position: relative;
  padding: 0 0 32px 32px;
}

.hiring-step:last-child { padding-bottom: 0; }

.hiring-step-num {
  position: absolute;
  left: -32px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
}

.hiring-step-body h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.step-duration {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent-color);
}

.hiring-step-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(40, 61, 80, 0.78);
  margin: 0;
}

/* ====== TALENT POOL form section breathing ====== */
.talent-pool .contact-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px;
}

/* ====== RESPONSIVE adjustments ====== */
@media (max-width: 768px) {
  .talent-pool .contact-form-wrap { padding: 28px 22px; }
  .no-openings { padding: 40px 22px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-cta { width: 100%; justify-content: center; }
  .how-we-work .value-number { font-size: 2rem; top: 16px; right: 18px; }
  .hiring-timeline { padding-left: 24px; }
  .hiring-step-num { left: -28px; width: 34px; height: 34px; font-size: 0.82rem; }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  .trividhi-form .form-status-msg.loading i { animation: none; }
  .contact-channels .channel-card,
  .how-we-work .value-card,
  .opening-card { transition: none; }
}

/*--------------------------------------------------------------
# Other Applications strip
--------------------------------------------------------------*/
.other-apps-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 18px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(23, 66, 164, 0.08));
  border: 1px solid rgba(0, 123, 255, 0.2);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-apps-strip:hover {
  background: linear-gradient(135deg, #007bff, #1742a4);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.25);
}

.other-apps-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  transition: color 0.35s ease;
}

.other-apps-text i {
  font-size: 20px;
  color: #007bff;
  transition: color 0.35s ease;
}

.other-apps-arrow {
  font-size: 20px;
  color: #007bff;
  transition: transform 0.35s ease, color 0.35s ease;
}

.other-apps-strip:hover .other-apps-text,
.other-apps-strip:hover .other-apps-text i,
.other-apps-strip:hover .other-apps-arrow {
  color: #ffffff;
}

.other-apps-strip:hover .other-apps-arrow {
  transform: translateX(5px);
}

@media (max-width: 575.98px) {
  .other-apps-strip {
    flex-direction: row;
    padding: 16px 20px;
  }
  .other-apps-text {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Trusted Future — enhanced content (lead paragraph + highlights)
--------------------------------------------------------------*/
.trusted-future-card > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.trusted-future-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 66, 164, 0.10);
}

.trusted-future p + p {
  margin-top: 0;
  margin-bottom: 0;
}

.tf-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(23, 66, 164, 0.12);
}

.tf-stat {
  flex: 1 1 0;
  min-width: 160px;
  padding: 6px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.tf-stat + .tf-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(23, 66, 164, 0.12);
}

.tf-stat-num {
  font-family: var(--heading-font, inherit);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #007bff, #1742a4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1742a4;
}

.tf-stat-plus {
  font-size: 26px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}

.tf-stat-label {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--default-color);
  max-width: 180px;
}

@media (max-width: 640px) {
  .trusted-future-lead {
    font-size: 16px;
  }
  .tf-stats {
    margin-top: 28px;
    padding-top: 26px;
    gap: 24px 0;
  }
  .tf-stat {
    flex: 1 1 100%;
    padding: 0 16px;
  }
  .tf-stat + .tf-stat::before {
    display: none;
  }
  .tf-stat-num {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Need for Digitization — card grid (smaller image on top, text below, 2 per row)
--------------------------------------------------------------*/
.need-digitization .challenge-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 32px rgba(20, 40, 100, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.need-digitization .challenge-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20, 40, 100, 0.13);
}

/* Smaller, centered image at the top of each card */
.need-digitization .challenge-item .feature-image-decorated {
  max-width: 330px;
  width: 100%;
  margin: 0 auto 1.5rem;
  box-shadow: none;            /* card already provides elevation */
}

/* Image lift is handled by the whole card now, not the image */
.need-digitization .challenge-item .feature-image-decorated:hover {
  transform: none;
}

/* Text sits below the image; flex lets us pin the "shift" line to the bottom */
.need-digitization .challenge-item .feature-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.need-digitization .challenge-item .feature-text h3 {
  font-size: 1.45rem;
}

.need-digitization .challenge-item .feature-impact {
  margin-top: auto;            /* aligns the callout across cards in a row */
}

@media (prefers-reduced-motion: reduce) {
  .need-digitization .challenge-item,
  .need-digitization .challenge-item:hover {
    transition: none;
    transform: none;
  }
}


/*--------------------------------------------------------------
# Seamless Sharing — refined single-card layout
  (REPLACES the earlier .seamless-sharing block)
--------------------------------------------------------------*/
.seamless-sharing .challenge-item {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 24px;
  padding: 3rem 2.75rem;
  box-shadow: 0 18px 44px rgba(20, 40, 100, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.seamless-sharing .challenge-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(20, 40, 100, 0.14);
}

/* Small, centered image frame — no card-in-card box, no bleeding shape */
.seamless-sharing .challenge-item .feature-image-decorated {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  margin: 0 auto 2rem;
  padding: 1rem;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.seamless-sharing .challenge-item .feature-image-decorated img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Remove the off-center drifting decorative shape in this section */
.seamless-sharing .challenge-item .feature-image-decorated::before {
  display: none;
}

/* Keep ONE soft, perfectly centered glow behind the icon */
.seamless-sharing .challenge-item .feature-image-decorated::after {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.22) 0%, rgba(0, 123, 255, 0) 68%);
  animation: trivdhi-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Constrain the intro line length for readability */
.seamless-sharing .challenge-item .feature-text {
  max-width: 620px;
}

/* Center the checklist as a block, but keep each item left-aligned */
.seamless-sharing .challenge-item .feature-list {
  display: inline-block;
  text-align: left;
  margin: 1.5rem auto 0;
}

@media (prefers-reduced-motion: reduce) {
  .seamless-sharing .challenge-item,
  .seamless-sharing .challenge-item:hover {
    transition: none;
    transform: none;
  }
  .seamless-sharing .challenge-item .feature-image-decorated::after {
    animation: none;
  }
}