/* ============================
  Template Name: Applayer
  Author: uideck
  Description: Medical App landing HTML5 Template.
  Version: 1.0
=============================== */
/*===========================
    01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&family=Heebo:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #60698D;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: #FF3B3F;
}

a {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  margin: 0px;
  color: #D32F2F;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 45px;
}

/* Ensure the parent container is a flex container */
.col-xl-6.col-lg-7 {
  display: flex; /* Enable flexbox */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  /* height: 100vh; /* Match the full viewport height */
}

/* Style for the quote container */
.quote-container {
  margin-top: 20px;
  background-color: #ededed;
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  max-width: 90%; /* Ensure it doesn't stretch too wide */
  text-align: left; /* Ensure text is left-aligned */
}

/* Style for blockquote and its text */
blockquote {
  margin: 0;
  padding: 0;
}

blockquote p {
  margin: 0;
  padding: 0;
  font-size: x-large;
  text-shadow: #60698D ;
}

blockquote p::before {
  content: '\201C'; /* Opening quotation mark */
}

blockquote p::after {
  content: '\201D'; /* Closing quotation mark */
}

blockquote + p {
  text-align: right;
  margin-top: 10px; /* Space between quote and attribution */
}



.citation {
  font-size: x-small;
  padding: 15px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

.section-title span {
  font-size: 25px;
  font-weight: 600;
  color: #D32F2F;
  margin-bottom: 25px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: orangered;
}

.success {
  color: #fff;
}

/*===== All Button Style =====*/
.main-btn {
  margin-top: 15px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 17px 37px;
  font-size: 18px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all .4s ease-in-out;
  border: none;
  background: #D32F2F;
  overflow: hidden;
}


.img-doc {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center;    /* Center children horizontally */
  text-align: center;     /* Ensure text inside children is centered */
}

.img-doc btn {
  margin-top: 20px;
}


.main-btn:hover {
  color: #fff;
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: #D32F2F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
  color: #fff;
  background: rgba(211, 47, 47, 0.8);
}

@keyframes animation1 {
  0% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #FF5733 #FF5733 #ddd;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #ddd;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #ddd;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(130deg);
  }
}

@keyframes right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(-130deg);
  }
}

/*===========================
    02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 17px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0;
  }
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #222;
}

.sticky .navbar .navbar-nav .nav-item a::before {
  background: #D32F2F;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #D32F2F;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 180px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    margin-left: 20px;
  }
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 10px;
    color: #D94F49;
  }
}

.navbar-nav .nav-item a::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    background: #D32F2F;
  }
}

.navbar-nav .nav-item a:hover::before, .navbar-nav .nav-item a.active::before {
  opacity: 1;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }

  .quote-container {
    margin-top: 70px;}
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #D32F2F;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.hero-section {
  position: relative;
  z-index: 1;
  background-image: url("../img/hero/hero-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  padding: 150px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content {
    margin-bottom: 120px;
  }
  
  /* Mobile overlay styling */
  .hero-section {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background-image: url("../img/hero/mojo_feature_responsive.png"), url("../img/hero/hero-bg.svg") !important;
    background-size: cover, cover !important;
    background-position: center, bottom left !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay !important;
  }
  
  /* Dark overlay for better text readability */
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  /* Ensure content is above overlay */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-section .hero-content {
    margin-bottom: 0 !important;
  }
  
  .hero-section .hero-content h1 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 20px !important;
  }
  
  .hero-section .hero-content p {
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
  }
  
  /* Mobile button styling */
  .hero-section .hero-content .main-btn {
    font-size: 14px !important;
    padding: 12px 24px !important;
    display: block !important;
    width: auto !important;
    max-width: 150px !important;
    margin: 0 auto !important;
    text-align: center !important;
    float: none !important;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.4) !important;
    border: 2px solid #fff !important;
  }
  
  /* Hide desktop image on mobile */
  .hero-img {
    display: none !important;
  }
}

.hero-section .hero-content h1 {
  font-family: Helvetica;
  font-size: 60px;
  margin-bottom: 35px;
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content h1 {
    font-size: 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 298px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 30px !important;
  }
}

.hero-section .hero-content p {
  margin-bottom: 40px;
  color: #fff;
}

.hero-section .hero-content .main-btn {
  background: #fff;
  color: #D32F2F;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 52px;
}

.hero-section .hero-img {
  position: relative;
  text-align: right;
  z-index: 4;
}

.hero-section .hero-img .img-1 {
  border-radius: 25px;
  position: relative;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.hero-section .hero-img .img-3,
.hero-section .hero-img .img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero-section .hero-img .img-2 {
  z-index: 1;
}

.hero-section .hero-img .img-3 {
  z-index: -1;
}

.client-logo-section .client-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .client-logo-section .client-logo-wrapper {
    justify-content: center;
  }
}

.client-logo-section .client-logo-wrapper .single-logo {
  width: 180px;
  margin: 10px;
  opacity: .4;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-logo-section .client-logo-wrapper .single-logo {
    width: 160px;
  }
}

.client-logo-section .client-logo-wrapper .single-logo:hover {
  opacity: 1;
}

.client-logo-section .client-logo-wrapper .single-logo img {
  max-width: 100%;
}

.feature-section .single-feature {
  text-align: center;
  padding: 30px;
}

.feature-section .single-feature:hover .icon::after {
  top: 8px;
  right: 8px;
}

.feature-section .single-feature .icon {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  background: #D32F2F;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  z-index: 1;
  margin: 0 auto 30px;
}

.feature-section .single-feature .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  top: -8px;
  right: -8px;
  opacity: .2;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
}

.feature-section .single-feature .icon.color-2 {
  background: #FFB260;
}

.feature-section .single-feature .icon.color-3 {
  background: #FF92A5;
}

.feature-section .single-feature .content h3 {
  font-weight: 600;
  margin-bottom: 25px;
}

/* Feature section paragraph styling */
.feature-section .single-feature .content p {
  font-size: 14px;
  line-height: 1.6;
  color: #60698D;
}

/* Feature section intro paragraph styling */
.feature-section .section-title p {
  font-size: 15px;
  line-height: 1.6;
  color: #60698D;
}

/* Mobile responsive for feature section text */
@media (max-width: 767px) {
  .feature-section .single-feature .content p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .feature-section .section-title p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*===========================
    09.AI SHOWCASE css 
===========================*/
.ai-showcase-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
}

.ai-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero/hero-bg.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.ai-showcase-section .container {
  position: relative;
  z-index: 2;
}

.ai-showcase-content {
  padding-right: 30px;
}

.showcase-features {
  padding: 20px 15px;
}

.single-showcase-feature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single-showcase-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2C5282 0%, #805AD5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
}

.single-showcase-feature .feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.single-showcase-feature .feature-content h4 {
  color: #2C5282;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-showcase-feature .feature-content p {
  color: #60698D;
  line-height: 1.6;
  margin: 0;
}

.showcase-cta {
  margin-top: 40px;
}

.trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background: #38A169;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-showcase-image {
  position: relative;
}

.ai-quote-section {
  background: #f8fbff;
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 4px solid #2C5282;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ai-quote-section blockquote {
  margin: 0;
  font-style: italic;
  color: #2C5282;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
}

.ai-quote-section cite {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #60698D;
  font-weight: 500;
  font-style: normal;
}

.quote-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  border-left: 4px solid #2C5282;
}

.quote-overlay blockquote {
  margin: 0;
  font-style: italic;
  color: #2C5282;
  font-size: 14px;
  line-height: 1.5;
}

.quote-overlay cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #60698D;
  font-weight: 500;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .ai-showcase-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .ai-quote-section {
    padding: 30px 20px;
  }
  
  .ai-quote-section blockquote {
    font-size: 16px;
  }
  
  .single-showcase-feature .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .single-showcase-feature .feature-icon i {
    font-size: 20px;
  }
  
  .single-showcase-feature .feature-content h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .ai-quote-section {
    padding: 25px 15px;
    margin-top: 40px;
  }
  
  .ai-quote-section blockquote {
    font-size: 15px;
  }
  
  .ai-quote-section cite {
    font-size: 13px;
  }
  
  .single-showcase-feature {
    text-align: left;
    margin-bottom: 35px;
    align-items: center;
    gap: 25px;
  }
  
  .single-showcase-feature .feature-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
  }
  
  .single-showcase-feature .feature-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*===========================
    10.TIER 2 FEATURES css - Modern 2025 Health Startup Design
===========================*/

/* Section Title Styling */
.section-title-center {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-center h2 {
  font-size: 56px;
  font-weight: 800;
  color: #1A1D29;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 50%, #E55722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-center p {
  font-size: 20px;
  color: #6B7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.tier2-features-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F6 100%);
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.tier2-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.tier2-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 0;
  height: auto;
  min-height: 480px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

/* Compact Card Layout */
.compact-card-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-header {
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  padding: 32px;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.family-card .feature-header {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.feature-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  z-index: 2;
  position: relative;
}

.tier2-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.tier2-feature-card .feature-icon i {
  font-size: 24px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  align-self: flex-start;
}

/* Realistic Phone Preview */
.realistic-preview {
  z-index: 2;
  position: relative;
}

.phone-realistic {
  width: 200px;
  height: 360px;
  background: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-realistic::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-content {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f1f1f1;
}

.indicators {
  display: flex;
  gap: 4px;
}

.indicators i {
  font-size: 10px;
  color: #1a1a1a;
}

.app-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.app-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.streak {
  font-size: 12px;
  color: #FF6B35;
  font-weight: 600;
}

.med-cards {
  padding: 0 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.med-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.med-card.completed {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.med-card.current {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.med-card.upcoming {
  background: rgba(107, 114, 128, 0.05);
  border: 1px solid rgba(107, 114, 128, 0.1);
}

.med-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.med-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.med-dose {
  font-size: 11px;
  color: #6b7280;
}

.status-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.take-button {
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.time-left {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

/* Realistic Family Dashboard */
.family-dashboard-realistic {
  width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.family-count {
  font-size: 11px;
  color: #6b7280;
  background: rgba(107, 114, 128, 0.1);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
}

.family-members-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.member-compact {
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.member-compact.active {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

.member-compact .avatar {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.member-compact .name {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.member-compact .health-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto;
}

.health-status.excellent {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.health-status.good {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

.health-status.attention {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
}

.active-member-detail {
  background: rgba(248, 250, 252, 0.6);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.member-name-detail {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.quick-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.quick-stat {
  text-align: center;
  flex: 1;
}

.quick-stat-value {
  font-size: 12px;
  font-weight: 700;
  color: #1976D2;
  display: block;
}

.quick-stat-label {
  font-size: 9px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Compact Content Section */
.feature-content {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
}

.feature-description {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

.compact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.benefit-row i {
  width: 16px;
  height: 16px;
  color: #FF6B35;
  font-size: 14px;
  flex-shrink: 0;
}

.family-card .benefit-row i {
  color: #1976D2;
}

.benefit-row span {
  color: #475569;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.feature-stats-compact {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.stat-compact {
  text-align: center;
  flex: 1;
}

.stat-compact .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.family-card .stat-compact .stat-number {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-compact .stat-label {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.tier2-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8A65 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tier2-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 64px rgba(255, 107, 53, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tier2-feature-card:hover::before {
  opacity: 1;
}

.medication-card {
  background: rgba(255, 255, 255, 0.95);
}

.medication-card::before {
  background: linear-gradient(90deg, #FF6B35 0%, #FF8A65 100%);
}

.family-card {
  background: rgba(255, 255, 255, 0.95);
}

.family-card::before {
  background: linear-gradient(90deg, #1976D2 0%, #42A5F5 100%);
}

.card-header {
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  padding: 40px 32px 32px 32px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.family-card .card-header {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tier2-feature-card .feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tier2-feature-card .feature-icon i {
  font-size: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.value-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Modern Card Illustration */
.card-illustration {
  padding: 48px 32px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(25, 118, 210, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Medication Management Phone Mockup - 2025 Style */
.phone-mockup {
  width: 240px;
  height: 480px;
  background: linear-gradient(135deg, #1A1D29 0%, #2D3748 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 20px 64px rgba(0, 0, 0, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  animation: float 8s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  border-radius: 28px;
  padding: 24px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.medication-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notification-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1A1D29;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: pulse-notification 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.notification-pill i {
  color: #FF6B35;
  font-size: 16px;
}

.medication-list {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.med-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.med-item:last-child {
  border-bottom: none;
}

.med-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.med-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.med-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.med-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
}

.med-status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.med-status.taken {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.med-status.pending {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
  color: white;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.med-status.upcoming {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.adherence-chart {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chart-bars {
  display: flex;
  gap: 6px;
  height: 40px;
  align-items: flex-end;
}

.bar {
  width: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bar.active {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transform: scale(1.1);
}

/* Family Dashboard - 2025 Style */
.family-dashboard {
  width: 360px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 20px 64px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: float 8s ease-in-out infinite reverse;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.family-member {
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.family-member.active {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 
    0 12px 32px rgba(25, 118, 210, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.family-member:hover:not(.active) {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.avatar {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.name {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.health-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.health-status::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.health-status.excellent {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.health-status.good {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.health-status.attention {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  animation: pulse-attention 2s ease-in-out infinite;
}

.profile-details {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar-large {
  font-size: 40px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.member-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #1A1D29;
  letter-spacing: -0.3px;
}

.age {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
}

.health-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.metric-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-size: 14px;
  font-weight: 700;
  color: #1A1D29;
}

.metric-value.normal {
  color: #10B981;
}

/* Floating Elements and Animations */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.pulse-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  border-radius: 50%;
  animation: pulse-float 4s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.pulse-1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.pulse-2 {
  top: 60%;
  right: 25%;
  animation-delay: 1.5s;
}

.pulse-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 3s;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connections {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.card-content {
  padding: 40px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
}

.feature-description {
  color: #6B7280;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex: 1;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.medication-card .benefit-icon {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
}

.family-card .benefit-icon {
  background: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.2);
}

.benefit-icon i {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.benefit-text {
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.family-card .stat-number {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

/* Modern Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes pulse-notification {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.95; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulse-attention {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulse-float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    opacity: 0.6; 
  }
  50% { 
    transform: translateY(-20px) scale(1.3); 
    opacity: 1; 
  }
}

/* Enhanced Responsive Design */
@media only screen and (max-width: 1199px) {
  .tier2-features-section {
    padding: 100px 0;
  }
  
  .section-title-center h2 {
    font-size: 48px;
  }
  
  .feature-title {
    font-size: 24px;
  }
  
  .card-illustration {
    min-height: 280px;
    padding: 40px 24px;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  .family-dashboard {
    width: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .tier2-features-section {
    padding: 80px 0;
  }
  
  .section-title-center h2 {
    font-size: 40px;
  }
  
  .tier2-feature-card {
    margin-bottom: 60px;
  }
  
  .card-header {
    padding: 32px 28px 24px 28px;
  }
  
  .card-content {
    padding: 32px 28px;
  }
  
  .feature-title {
    font-size: 22px;
  }
  
  .feature-description {
    font-size: 16px;
  }
  
  .card-illustration {
    min-height: 240px;
  }
}

@media only screen and (max-width: 767px) {
  .tier2-features-section {
    padding: 60px 0;
  }
  
  .section-title-center {
    margin-bottom: 60px;
  }
  
  .section-title-center h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  
  .section-title-center p {
    font-size: 18px;
  }
  
  .card-header {
    padding: 28px 24px 20px 24px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .value-badge {
    align-self: flex-start;
  }
  
  .card-content {
    padding: 28px 24px;
  }
  
  .feature-title {
    font-size: 20px;
    margin-top: 16px;
  }
  
  .feature-description {
    font-size: 16px;
  }
  
  .benefit-list li {
    padding: 12px 0;
  }
  
  .benefit-text {
    font-size: 15px;
  }
  
  .feature-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    padding: 20px 16px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .card-illustration {
    min-height: 220px;
    padding: 32px 16px;
  }
  
  .phone-mockup {
    width: 180px;
    height: 320px;
  }
  
  .family-dashboard {
    width: 260px;
    padding: 24px;
  }
  
  .family-grid {
    gap: 16px;
  }
  
  .family-member {
    padding: 16px;
  }
  
  .avatar {
    font-size: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .section-title-center h2 {
    font-size: 28px;
  }
  
  .section-title-center p {
    font-size: 16px;
  }
  
  .card-header {
    padding: 24px 20px 16px 20px;
  }
  
  .card-content {
    padding: 24px 20px;
  }
  
  .tier2-feature-card .feature-icon {
    width: 64px;
    height: 64px;
  }
  
  .tier2-feature-card .feature-icon i {
    font-size: 28px;
  }
  
  .feature-title {
    font-size: 18px;
  }
  
  .card-illustration {
    min-height: 200px;
    padding: 24px 12px;
  }
  
  .phone-mockup {
    width: 160px;
    height: 280px;
  }
  
  .family-dashboard {
    width: 220px;
    padding: 20px;
  }
}

.tier2-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tier2-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 32px 32px 24px 32px;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}

.medication-card .card-header {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.family-card .card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.tier2-feature-card .feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tier2-feature-card .feature-icon i {
  font-size: 28px;
  color: #ffffff;
}

.value-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.feature-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 0 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Apple-inspired Illustrations */
.card-illustration {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Medication Management Phone Mockup */
.phone-mockup {
  width: 200px;
  height: 360px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 22px;
  padding: 20px 15px;
  overflow: hidden;
  position: relative;
}

.medication-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notification-pill {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: pulse-notification 2s ease-in-out infinite;
}

.notification-pill i {
  color: #11998e;
}

.medication-list {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  flex: 1;
}

.med-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.med-item:last-child {
  border-bottom: none;
}

.med-icon {
  font-size: 18px;
  width: 30px;
  text-align: center;
}

.med-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.med-name {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.med-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.med-status {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.med-status.taken {
  background: #10b981;
  color: white;
}

.med-status.pending {
  background: #f59e0b;
  color: white;
  animation: blink 1.5s ease-in-out infinite;
}

.med-status.upcoming {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

.adherence-chart {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
}

.chart-title {
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.chart-bars {
  display: flex;
  gap: 4px;
  height: 30px;
  align-items: flex-end;
}

.bar {
  width: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.bar.active {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Family Dashboard */
.family-dashboard {
  width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite reverse;
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.family-member {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.family-member.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.family-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.avatar {
  font-size: 24px;
  margin-bottom: 5px;
  display: block;
}

.name {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.health-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto;
}

.health-status.excellent {
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.health-status.good {
  background: #3b82f6;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

.health-status.attention {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.profile-details {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.avatar-large {
  font-size: 30px;
}

.member-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.age {
  font-size: 11px;
  color: #64748b;
}

.health-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

.metric-value {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
}

.metric-value.normal {
  color: #10b981;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #11998e;
  border-radius: 50%;
  animation: pulse-float 3s ease-in-out infinite;
}

.pulse-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.pulse-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.pulse-3 {
  bottom: 25%;
  left: 25%;
  animation-delay: 2s;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connections {
  width: 100%;
  height: 100%;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-notification {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulse-float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    opacity: 0.6; 
  }
  50% { 
    transform: translateY(-15px) scale(1.2); 
    opacity: 1; 
  }
}

.card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.benefit-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon i {
  color: #ffffff;
  font-size: 12px;
}

.benefit-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.medication-card .stat-number {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Enhanced Responsive Design */
@media only screen and (max-width: 1199px) {
  .tier2-features-section {
    padding: 80px 0;
  }
  
  .feature-title {
    font-size: 22px;
  }
  
  .card-illustration {
    min-height: 240px;
    padding: 30px 15px;
  }
  
  .phone-mockup {
    width: 160px;
    height: 280px;
  }
  
  .family-dashboard {
    width: 240px;
  }
}

@media only screen and (max-width: 991px) {
  .tier2-features-section {
    padding: 60px 0;
  }
  
  .tier2-feature-card {
    margin-bottom: 40px;
  }
  
  .card-header {
    padding: 28px 24px 20px 24px;
  }
  
  .card-content {
    padding: 28px 24px;
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-description {
    font-size: 15px;
  }
  
  .card-illustration {
    min-height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .tier2-features-section {
    padding: 40px 0;
  }
  
  .card-header {
    padding: 24px 20px 16px 20px;
  }
  
  .header-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .value-badge {
    align-self: flex-start;
  }
  
  .card-content {
    padding: 24px 20px;
  }
  
  .feature-title {
    font-size: 18px;
    margin-top: 12px;
  }
  
  .feature-description {
    font-size: 14px;
  }
  
  .benefit-list li {
    padding: 8px 0;
  }
  
  .benefit-text {
    font-size: 14px;
  }
  
  .feature-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-item {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .card-illustration {
    min-height: 200px;
    padding: 20px 10px;
  }
  
  .phone-mockup {
    width: 140px;
    height: 240px;
  }
  
  .family-dashboard {
    width: 200px;
    padding: 15px;
  }
  
  .family-grid {
    gap: 10px;
  }
  
  .family-member {
    padding: 10px;
  }
  
  .avatar {
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .card-header {
    padding: 20px 16px 12px 16px;
  }
  
  .card-content {
    padding: 20px 16px;
  }
  
  .tier2-feature-card .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .tier2-feature-card .feature-icon i {
    font-size: 24px;
  }
  
  .feature-title {
    font-size: 16px;
  }
  
  .card-illustration {
    min-height: 180px;
  }
  
  .phone-mockup {
    width: 120px;
    height: 200px;
  }
  
  .family-dashboard {
    width: 180px;
  }
}

.single-department {
  margin-bottom: 40px;
  text-align: justify;
  
}

.single-department span {
  width: 12px;
  height: 12px;
  background: #D32F2F;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(211, 47, 47, 0.8);
  margin-bottom: 15px;
}

.single-department h3 {
  margin-bottom: 10px;
}

.steps-content {
  margin-left: 70px;
}

.steps-content .single-department {
  margin-bottom: 45px;
}

.faq-section .faq-wrapper {
  margin-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section .faq-wrapper {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .faq-section .faq-wrapper {
    margin-right: 0;
  }
}

.faq-section .single-faq {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0px 3px 6px rgba(142, 142, 142, 0.16);
}

.faq-section .single-faq button {
  background: #fff;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
  text-align: left;
  padding: 18px 25px;
  padding-right: 45px;
  position: relative;
  color: #D32F2F;
}

.faq-section .single-faq button.collapsed {
  opacity: .8;
}

.faq-section .single-faq button.collapsed::after {
  transform: rotate(0deg);
}

.faq-section .single-faq button::after {
  content: '';
  position: absolute;
  top: 27px;
  right: 25px;
  border-top: 9px solid #D94F49;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transition: all 0.3s ease-out 0s;
  transform: rotate(180deg);
}

.faq-section .single-faq .faq-content {
  padding: 7px 25px 18px;
}

.faq-section .faq-image img {
  width: 100%;
}

.about-section .about-img img {
  width: 100%;
}

.about-section .about-content {
  padding-left: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-section .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

.about-section .about-content .section-title h1 {
  margin-bottom: 35px;
}

.about-section .about-content .section-title p {
  margin-bottom: 35px;
}

.about-section .about-content .rating-meta {
  margin-bottom: 35px;
}

.about-section .about-content .rating-meta h5 {
  font-size: 20px;
  font-weight: 700;
  margin-right: 20px;
}

.about-section .about-content .rating-meta .rating {
  color: #E96A20;
}

.about-section .about-content .counter-up {
  background: #D32F2F;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.about-section .about-content .counter-up .single-counter {
  padding: 20px 0;
  margin: 0 15px;
}

.about-section .about-content .counter-up .single-counter::before, .about-section .about-content .counter-up .single-counter::after {
  content: '';
  position: absolute;
  width: 2px;
  height: calc(100% - 40px);
  background: #fff;
  top: 20px;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-content .counter-up .single-counter::before, .about-section .about-content .counter-up .single-counter::after {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .about-section .about-content .counter-up .single-counter::before, .about-section .about-content .counter-up .single-counter::after {
    opacity: 0;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .about-section .about-content .counter-up .single-counter::before, .about-section .about-content .counter-up .single-counter::after {
    opacity: 1;
  }
}

.about-section .about-content .counter-up .single-counter::before {
  left: -50%;
}

.about-section .about-content .counter-up .single-counter::after {
  right: -50%;
}

.about-section .about-content .counter-up .single-counter h3 {
  color: #fff;
  margin-bottom: 5px;
}

.about-section .about-content .counter-up .single-counter h5 {
  font-weight: 500;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .delivery-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .delivery-img {
    margin-bottom: 50px;
  }
}

.delivery-img img {
  width: 100%;
}

.doctor-section {
  padding: 100px 0;
}

.container-center {
  display: flex;
  justify-content: center; /* Horizontally centers the row */
  align-items: center; /* Vertically centers the row */
}

.doctor-section .single-doctor {
  text-align: left;
  margin-top: 15px;
}

.single-doctor h3 {
  margin-bottom: 20px;
}

.doctor-section .single-doctor:hover .icon::after {
  top: 8px;
  right: 8px;
}

.doctor-section .single-doctor .icon {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  background: #D32F2F;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  z-index: 1;
  margin: 0 auto 30px;
}

.doctor-section .single-doctor .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  top: -8px;
  right: -8px;
  opacity: .2;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
}

.doctor-section .single-doctor .icon.color-2 {
  background: #FFB260;
}

.doctor-section .single-doctor .icon.color-3 {
  background: #FF92A5;
}


.testimonial-section {
  background-image: url("../img/testimonial/back.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.testimonial-section .testimonial-active-wrapper {
  position: relative;
}

.testimonial-section .testimonial-active-wrapper .tns-controls {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 60px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-section .testimonial-active-wrapper .tns-controls button {
  border: none;
  background: none;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  top: 0;
  z-index: 22;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button i:hover {
  background: #fff;
  color: #c14a4a;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button .next {
  right: 0;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button .prev {
  left: 0;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper {
  padding: 30px;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial {
  background: #fff;
  position: relative;
  z-index: 9;
  border-radius: 10px;
  padding: 30px;
  border-left: 5px solid #D32F2F;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial::before, .testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial::after {
  display: none;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .quote {
  display: none;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .content {
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .content::before {
  content: '"';
  font-size: 3rem;
  color: #D32F2F;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .content p {
  font-style: italic;
  color: #60698D;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .info {
  margin-bottom: 20px;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .info .image {
  max-width: 65px;
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  overflow: hidden;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .info .image img {
  width: 100%;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .info h4 {
  margin-bottom: 5px;
  color: #1a1d29;
  font-weight: 600;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .info p {
  margin-bottom: 0;
  font-size: 14px;
  color: #D32F2F;
  font-weight: 500;
}

@media (max-width: 767px) {
  .testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial {
    padding: 30px;
  }

  .testimonial-section .testimonial-active-wrapper .testimonial-active .testimonial-wrapper .single-testimonial .content p {
    font-size: 14px;
  }
}

.footer {
  padding-top: 350px;
  background-image: url("../img/footer/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer {
    padding-top: 220px;
    margin-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 160px;
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 120px;
    margin-top: 100px;
  }
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

.footer .widget-wrapper .footer-widget h3 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 17px;
}

.footer .widget-wrapper .footer-widget .links li {
  margin-bottom: 6px;
}

.footer .widget-wrapper .footer-widget .links li a {
  color: #E8E8E8;
  font-size: 15px;
  line-height: 32px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer .widget-wrapper .footer-widget .links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D32F2F;
  transition: width 0.3s ease;
}

.footer .widget-wrapper .footer-widget .links li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer .widget-wrapper .footer-widget .links li a:hover::after {
  width: 100%;
}

.footer .widget-wrapper .footer-widget .download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer .widget-wrapper .footer-widget .download li:first-child {
  margin-right: 20px;
}

.footer .widget-wrapper .footer-widget .download li a {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  margin-bottom: 15px;
  align-items: center;
}

.footer .widget-wrapper .footer-widget .download li a .icon {
  font-size: 30px;
  color: #D32F2F;
  margin-right: 10px;
}

.footer .widget-wrapper .footer-widget .download li a .text {
  font-size: 10px;
  color: #D94F49;
}

.footer .widget-wrapper .footer-widget .download li a .text b {
  color: #D32F2F;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.footer .copy-right-wrapper {
  border-top: 2px solid rgba(255, 255, 255, 0.17);
  padding: 25px 0;
}

.footer .copy-right-wrapper .copy-right p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

@media (max-width: 767px) {
  .footer .copy-right-wrapper .copy-right p {
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer .copy-right-wrapper .copy-right p a {
  color: inherit;
}

.footer .copy-right-wrapper .copy-right p a:hover {
  color: #fff;
}

.footer .copy-right-wrapper .socials ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .footer .copy-right-wrapper .socials ul {
    justify-content: center;
  }
}

.footer .copy-right-wrapper .socials ul li a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  margin-left: 20px;
}

.footer .copy-right-wrapper .socials ul li a:hover {
  color: #fff;
}

/* ====================== 
    TERMS & CONDITIONS PAGE
========================= */
.terms-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.terms-content {
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
}

.terms-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  border-bottom: 3px solid #D32F2F;
  padding-bottom: 20px;
}

.terms-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 35px;
  margin-bottom: 15px;
}

.terms-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  margin-top: 25px;
  margin-bottom: 12px;
}

.terms-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-top: 20px;
  margin-bottom: 10px;
}

.terms-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  text-align: justify;
}

.terms-content ul {
  margin-bottom: 20px;
}

.terms-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
}

.terms-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 60px 0;
  }
  
  .terms-content {
    padding: 30px 20px;
  }
  
  .terms-content h2 {
    font-size: 24px;
  }
  
  .terms-content h3 {
    font-size: 18px;
    margin-top: 25px;
  }
  
  .terms-content p {
    font-size: 14px;
  }
}

/* ======================
    DEFAULT CSS
========================= */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
  color:#2e2929
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 0px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

/* ========================================
   2026 Healthcare Startup Design System
   ======================================== */

/* Feature Screenshot Cards */
.feature-screenshot-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #FFFFFF;
  max-width: 340px;
  margin: 0 auto;
}

.feature-screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 28px 80px rgba(0, 0, 0, 0.15),
    0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Feature Content 2026 */
.feature-content-2026 {
  padding: 0 24px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  color: #FF6B35;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  transform: translateX(4px);
}

.feature-badge i {
  font-size: 16px;
}

.feature-title-2026 {
  font-size: 36px;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.feature-description-2026 {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Feature Benefits 2026 */
.feature-benefits-2026 {
  margin-bottom: 40px;
}

.benefit-item-2026 {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.benefit-item-2026:hover {
  transform: translateX(8px);
}

.benefit-icon-2026 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #FF6B35 0%, #E55722 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  box-shadow: 
    0 8px 24px rgba(255, 107, 53, 0.25),
    0 2px 6px rgba(255, 107, 53, 0.15);
}

.benefit-text-2026 h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.benefit-text-2026 p {
  font-size: 15px;
  color: #64748B;
  margin: 0;
  line-height: 1.6;
}

/* Feature Stats 2026 */
.feature-stats-2026 {
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 107, 53, 0.1);
}

.stat-2026 {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-2026:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-number-2026 {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.stat-label-2026 {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Spacing */
.mb-100 {
  margin-bottom: 100px;
}

/* Feature Row Padding */
.tier2-features-section .row {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .feature-screenshot-card {
    max-width: 375px;
  }
}

@media (min-width: 1400px) {
  .feature-screenshot-card {
    max-width: 410px;
  }
}

/* Mobile Optimizations */
@media (max-width: 991px) {
  .feature-screenshot-card {
    max-width: 380px;
    margin: 0 auto 40px auto;
  }
  
  .feature-title-2026 {
    font-size: 30px;
  }
  
  .feature-description-2026 {
    font-size: 16px;
  }
  
  .benefit-text-2026 h4 {
    font-size: 16px;
  }
  
  .benefit-text-2026 p {
    font-size: 14px;
  }
  
  .mb-100 {
    margin-bottom: 60px;
  }
  
  .feature-stats-2026 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .stat-2026 {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 100px;
  }
  
  .feature-content-2026 {
    padding: 0 20px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .tier2-features-section {
    padding: 80px 0;
  }
  
  .tier2-features-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Fix image order on mobile - ensure text comes before image */
  .tier2-features-section .flex-row-reverse {
    flex-direction: column !important;
  }
  
  .tier2-features-section .flex-row-reverse .col-lg-6:first-child {
    order: 2;
  }
  
  .tier2-features-section .flex-row-reverse .col-lg-6:last-child {
    order: 1;
  }
  
  .feature-screenshot-card {
    max-width: 100%;
    margin: 0 0 32px 0;
    border-radius: 16px;
  }
  
  .feature-screenshot {
    border-radius: 16px;
  }
  
  .feature-title-2026 {
    font-size: 28px;
  }
  
  .feature-description-2026 {
    font-size: 15px;
    margin-bottom: 32px;
  }
  
  .benefit-item-2026 {
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .benefit-icon-2026 {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
  
  .feature-stats-2026 {
    flex-direction: row;
    gap: 12px;
  }
  
  .stat-2026 {
    flex: 1;
    padding: 12px 8px;
  }
  
  .stat-number-2026 {
    font-size: 24px;
  }
  
  .stat-label-2026 {
    font-size: 11px;
  }
  
  .feature-content-2026 {
    padding: 0;
  }
  
  .mb-100 {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .feature-screenshot-card {
    border-radius: 12px;
  }
  
  .feature-screenshot {
    border-radius: 12px;
  }
  
  .feature-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .feature-title-2026 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .feature-description-2026 {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  
  .benefit-item-2026 {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .benefit-icon-2026 {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  .benefit-text-2026 h4 {
    font-size: 15px;
  }
  
  .benefit-text-2026 p {
    font-size: 13px;
  }
  
  .feature-stats-2026 {
    padding-top: 24px;
    gap: 10px;
  }
  
  .stat-2026 {
    padding: 10px 6px;
    border-radius: 12px;
  }
  
  .stat-number-2026 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .stat-label-2026 {
    font-size: 10px;
  }
}

/* ========================================
   Compact Feature Cards (3-Column Layout)
   ======================================== */

.additional-features-section {
  background: linear-gradient(135deg, #FAFBFC 0%, #F3F6F9 100%);
  position: relative;
}

.compact-feature-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.compact-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

.compact-feature-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F3F6F9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.compact-feature-image img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.compact-feature-card:hover .compact-feature-image img {
  transform: scale(1.05);
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.feature-icon-badge {
  display: none;
}

.compact-feature-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.compact-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.4;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.compact-feature-title i {
  color: #FF6B35;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compact-feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 20px;
  flex: 1;
}

.compact-feature-expand {
  margin-top: auto;
}

.learn-more-btn {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.04) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  color: #FF6B35;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 100%);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.learn-more-btn i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.compact-feature-card.expanded .expand-content {
  margin-top: 20px;
}

.feature-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-benefits-list li:last-child {
  border-bottom: none;
}

.feature-benefits-list li i {
  color: #4CAF50;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive Design for Compact Cards */
@media (max-width: 991px) {
  .compact-feature-card {
    margin-bottom: 24px;
  }
  
  .compact-feature-title {
    font-size: 18px;
  }
  
  .compact-feature-description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .additional-features-section {
    padding: 80px 0;
  }
  
  .compact-feature-image {
    padding: 16px;
  }
  
  .compact-feature-image img {
    max-width: 80%;
  }
  
  .compact-feature-content {
    padding: 24px;
  }
  
  .compact-feature-title {
    font-size: 17px;
    margin-bottom: 12px;
    gap: 10px;
  }
  
  .compact-feature-title i {
    font-size: 20px;
  }
  
  .compact-feature-description {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .feature-icon-badge {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .learn-more-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .feature-benefits-list li {
    font-size: 13px;
    padding: 8px 0;
  }
}

@media (max-width: 575px) {
  .compact-feature-image {
    aspect-ratio: 16 / 10;
  }
  
  .compact-feature-content {
    padding: 20px;
  }
  
  .compact-feature-title {
    font-size: 16px;
  }
  
  .compact-feature-description {
    font-size: 13px;
  }
  
  .feature-benefits-list li {
    font-size: 12px;
  }
}
