:root {
  --primary: #00e6b8;
  --primary-dark: #00b894;
  --secondary: #0984e3;
  --dark: #2d3436;
  --light: #f5f6fa;
  --accent: #6c5ce7;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --bg-dark: #0a192f;
  --bg-darker: #071120;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 9%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 25, 47, 0.98);
}

.logo img {
  height: 78px;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  position: relative;
  transition: all 0.5s ease;
  color: var(--bg-darker);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item a::after {
  transition: width 0.5s ease-in-out;
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  text-decoration: none !important;
}

.nav-item-active a{
  color: var(--primary-dark);
  text-decoration: none !important;
  font-weight: 500;
}

.login-button {
  background: var(--gradient);
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 230, 184, 0.5);
}

.login-button a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-darker);
  font-size: 1.5rem;
  cursor: pointer;
}

.about-section {
  position: relative;
  padding: 11rem 10% 3rem 10%;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.who-we-serve-main-h2 {
  line-height: 1.5;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,25,47,0.8), transparent);
  z-index: 1;
}

.about-image:hover img {
  transform: scale(1.05);
}

.stakeholders-section {
  padding: 3rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
}

.stakeholders-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.stakeholder-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  filter: blur(30px);
  opacity: 0.09;
  border-radius: 20px;
  
}

.stakeholder-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 224, 255, 0.15);
}

.icon-heading-row {
  display: flex;
  align-items: center; 
  gap: 10px; 
}

.card-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.icon-heading-row h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1rem 0 0 1rem;
}

.stakeholder-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  padding-bottom: 0.5rem;
}

.quote-section {
  text-align: center;
}

.quote-text {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  quotes: "“" "”" "‘" "’";
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-text::before {
  content: open-quote;
}

.quote-text::after {
  content: close-quote;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00aced; 
}

.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-partners img {
  zoom: 1.2;
  width: 150px;
  opacity: 0.7;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary);
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
  100% {
      transform: translateY(0px);
  }
}

.about-section {
  animation: fadeIn 0.8s ease-out forwards;
}

.about-grid {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.stakeholders-section {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.stakeholders-grid {
  perspective: 1000px;
}

.roi-section {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 2s forwards;
}

.stakeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(82, 190, 205, 0.3);
  border-left-color: var(--secondary);
}

.card-icon i {
  transition: all 0.3s ease;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.title-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient 3s linear infinite;
}

@keyframes gradient {
  0% {
      background-position: 0% center;
  }
  100% {
      background-position: 200% center;
  }
}

.nav-menu.active {
  transform: translateX(0);
}

.menu-toggle.active {
  transform: rotate(90deg);
}



.nav-item.dropdown {
    position: relative;
    --primary: #00e6b8;
    --primary-dark: #00c9a3;
    --light: #f5f6fa;
    --dark: #0a192f;
}

.dropdown-trigger {
  padding: 0%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 8px;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.nav-item.dropdown.no-hover:hover .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 230, 184, 0.1), 
                transparent);
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(0, 230, 184, 0.08);
    transform: translateX(4px);
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 184, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.navbar.scrolled .dropdown-menu {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item {
    color: var(--light);
}

.navbar.scrolled .dropdown-icon {
    background: rgba(0, 230, 184, 0.15);
}

.navbar.scrolled .dropdown-item:hover {
    background: rgba(0, 230, 184, 0.12);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-item.dropdown.who-we-are .dropdown-icon {
    background: rgba(100, 181, 246, 0.1);
}

.nav-item.dropdown.who-we-are .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.08);
}

.nav-item.dropdown.who-we-are .dropdown-item::before {
    background: linear-gradient(90deg, 
                transparent, 
                rgba(100, 181, 246, 0.1), 
                transparent);
}

.navbar.scrolled .nav-item.dropdown.who-we-are .dropdown-icon {
    background: rgba(100, 181, 246, 0.15);
}

.navbar.scrolled .nav-item.dropdown.who-we-are .dropdown-item:hover {
    background: rgba(100, 181, 246, 0.12);
}


.feature-button{
  text-align: center;
  padding: 3rem 0 0rem 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 230, 184, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 230, 184, 0.4);
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.cta-button {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  background-size: 200% auto;
  animation: gradientPulse 3s linear infinite;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:hover .arrow {
  animation: float 0.8s ease-in-out infinite;
}

.stakeholder-card li{
  margin: 1.7rem 0;
  font-weight: 600;
  font-size: 1.1rem;
} 

.stakeholder-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
}

.stakeholder-card li:not(:last-child)::after {
  content: "|";
  margin-left: 1.5rem;
}

.hide-point{
  padding: 0.5rem 0;
}
.hide-point i{
  padding-right: 1rem;
  font-size: 1.5rem !important;
}
.stakeholder-card i{
  color:#00e6b8;
  font-size: 1.8rem;
  margin: 1.5rem 0 0 0rem;
}

.quote-section {
  text-align: center;
  padding: 4rem 0rem 0 0;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.67rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  quotes: "“" "”" "‘" "’";
  background: #00c0a1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-text::before {
  content: open-quote;
}

.quote-text::after {
  content: close-quote;
}

.quote-text a {
  text-decoration: none;
  font-weight: 500;
   -webkit-text-fill-color: #00aaff;

}
.quote-text a:hover {
  text-decoration: none;
  font-size: 1.6rem;
  -webkit-text-fill-color: #1112a7;
  transition: all 0.3s ease;
}

.quote-container p{
  font-size: 1.2rem;
  color: rgb(255 255 255 / 70%);
  margin-top: 2rem;
  font-weight: 500;
}


@media (min-width: 1921px) {
  html {
    font-size: 18px; 
  }

  .logo img {
    height: 90px;
  }

  .nav-menu {
    gap: 2.5rem;
  }

  .nav-item a {
    font-size: 1rem;
  }

  .description ul {
    padding-left: 1.5rem;
  }

  .footer-content {
    max-width: 1600px;
    gap: 5rem;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-legal p {
    font-size: 1rem;
  }

  .legal-links a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    max-width: none;
    margin: 0 7%;
  }

  .dropdown-menu {
    min-width: 500px;
  }

  .dropdown-title {
    font-size: 1rem;
  }

  .about-section{
    padding: 11rem 16% 3rem 15%;
  }

  .about-grid{
    padding-top: 1rem;
  }

  .stakeholders-grid{
    max-width: fit-content;
  }
  
  .quote-container {
    max-width: max-content;
    margin: 0 10%;
  }
}

@media (max-width: 1440px) {
  .navbar {
    padding: 0.8rem 6%;
  }

  .logo img {
    height: 60px;
  }

  .nav-item a {
    font-size: 0.9rem;
  }

  .login-button {
    padding: 0.5rem 1.2rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .about-text p {
    font-size: 1.05rem;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .quote-container p {
    font-size: 1.17rem;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .who-we-serve-main-h2{
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}


@media (max-width: 1024px) {
  .navbar {
    padding: 0.5rem 5%;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-item a, .nav-item-active, .login-button {
    font-size: 0.7rem;
  }

  .logo img {
    height: 55px;
  }

  .footer-content,
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-logo img {
    height: 32px;
  }

  .footer-contact h4,
  .link-group h4 {
    font-size: 1rem;
  }

  .footer-contact p,
  .link-group a,
  .footer-legal p,
  .legal-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2, .benefits-section h2, .result-title {
    font-size: 2rem;
  }

  .intro-text, .benefits-section p {
    font-size: 1rem;
  }

  .about-section {
    padding: 8rem 10% 2rem 10%;
  }

  .who-we-serve-main-h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 0%;
  }

  .about-grid {
    display: block;
    align-items: center;
  }

  .about-image{
    transform: scale(0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .stakeholders-section {
    padding: 2rem 0 2rem 0;
  }

  .icon-heading-row h3 {
    font-size: 1.3rem;
  }

  .stakeholder-card li{
    font-size: 1rem;
  }

  .stakeholder-card p{
    font-size: 0.95rem;
  }

  .quote-section {
    padding: 1rem 0rem 0 0;
  }

  .feature-button {
    padding: 2rem 0 0rem 0;
  }
} 

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 5%;
    flex-wrap: wrap;
  }

  .logo img {
    height: 55px;
  }

  .nav-menu {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item a,
  .nav-item-active,
  .login-button {
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: block;
  }

  .healthcare-message {
    padding: 6rem 5% 2rem 5%;
  }

  .text-container-h2 {
    font-size: 2rem;
  }

  .text-container p,
  .interoperability-content p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .learn-more-btn {
    font-size: 0.95rem;
  }

  .section-header h2,
  .main-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .section-header p {
    font-size: 1rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 0 5%;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem 2rem;
  }

  .roi-section {
    padding: 3rem 5%;
  }

  .dropdown-menu {
    min-width: 280px;
    top: 100%;
    left: -4.5rem;
  }

  .dropdown-item {
    padding: 10px 14px;
  }

  .dropdown-title {
    font-size: 0.7rem;
  }

  .dropdown-icon{
    height: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    margin-bottom: 1rem;
  }

  .benefits-section h1 {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .quote-text {
    font-size: 1.3rem;
  }

  .footer-contact p, .link-group a, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .site-footer {
    padding: 0 0 1rem 0;
  }

  .who-we-serve-main-h2, .section-header h2, .main-section h1{
    font-size: 1.8rem;
  }

  .icon-heading-row h3, .stakeholder-card i{
    font-size: 1.2rem;
  }

  .hide-point i {
    font-size: 1rem !important;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .stakeholder-card li {
    margin: 1rem 0;
  }

  .cta-button{
    padding: 0.7rem 1rem;
  }

  .about-section {
    padding: 8rem 10% 1rem 10%;
  }
}

@media (max-width: 480px) {

  .section-header h2, .benefits-section h2, .result-title {
    font-size: 1.5rem;
  }

  .who-we-serve-main-h2 {
    margin-bottom: 2rem;
  }
  
  .about-image {
    transform: scale(1);
    margin-top: 1.5rem;
  }
  .about-text p {
    font-size: 0.94rem;
    margin-bottom: 0%;
  }

  .section-subtitle,.stakeholder-card p  {
    font-size: 0.9rem;
  }

  .hide-point i {
    font-size: 0.98rem !important;
  }

  .stakeholder-card ul {
    display: block;
  }
  
  .stakeholder-card li{
    font-size: 0.98rem;
  }

  .quote-text, .quote-container p {
    font-size: 1.1rem;
  }

  .stakeholders-section{
    padding: 3.5rem 0 2rem 0;
  }

  .footer-bottom {
    display: block;
  }

  .footer-legal{
    margin: 1.5rem 0 0 0;
  }
}

@media (max-width: 376px) {
  .stakeholder-card li {
    font-size: 0.9rem;
  }
  .solution{
    left: -5.5rem !important;
  }
}

@media (max-width: 320px) {
  .footer-contact p, .link-group a, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .solution {
    left: -5.5rem !important;
  }

  .dropdown-menu{
    left: -4.5rem;
  }

  .who-we-serve-main-h2, .section-header h2, .main-section h1 {
    font-size: 1.3rem;
  }

  .about-text p, .stakeholder-card li, .section-subtitle, .stakeholder-card p{
    font-size: 0.84rem;
  }

  .icon-heading-row h3, .stakeholder-card i {
    font-size: 0.9rem;
  }

  .hide-point i {
    font-size: 0.8rem !important;
  }

  .icon-heading-row h3 {
    margin: 0.5rem 0 0 0;
  }

  .quote-section {
    padding: 0rem 0rem 0 0;
  }

  .quote-text, .quote-container p{
    font-size: 0.9rem;
  }

  .cta-button{
    font-size: 0.8rem;
  }

  .footer-social a{
    font-size: 1.3rem;
  }
}
