body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

.banner-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 20px 20px;
}

.banner-content {
    max-width: 50%;
}

.banner-icon {
    margin-bottom: 20px;
}

.icon-a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E91E63;
    color: #FFFFFF;
    border-radius: 50%;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.banner-content h1 {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #25272C;
    margin-bottom: 24px;
    line-height: 135%;
    width: 100%;
}

.banner-content h1 .highlight-bhu {
   background-color: #E0F2F4;
   padding: 6px 12px;
   border-radius: 5px;
   display: inline-block;
}

.banner-content p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8B93A4;
    line-height: 135%;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
 
.search-bar button {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    letter-spacing: -0.41px;
    line-height: 22px;
    padding: 12px 25px;
    background-color: #00B0B6;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-left: 10px;
}

.search-bar button:hover {
    background-color: #008a8e;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.user-images {
    display: flex;
    position: relative;
    margin-right: 15px;
}

.user-images img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-info span {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
}

/* .cta-button {
    display: inline-block;
    font-size: 18px;
    padding: 5px 10px;
    background-color: #e0f2f4;
    color: #0086A4;
    text-decoration: none;
    border-radius: 35px;
    font-weight: bold;
    margin-left: 14px;
} */

.cta-button:hover {
    background-color: #008a8e;
    color: #fff;
    transition:  0.3s ease;
}

.banner-image img {
    max-width: 100%;
    border-radius: 10px;
}

.hospital-images {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 40px; /* space for label pill */
}

.hospital-image-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 230px;
    padding: 10px;
    border-radius: 14px;
    background: #E6F7FB;
    border: 2px solid #28B4BB;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hospital-image-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 0;
    object-fit: cover;
}

.hospital-image-item.featured {
    width: 380px;
    height: 240px;
    padding: 12px;
    background: #FFFFFF;
    border: 3px solid #00B0B6;
    box-shadow: 0 14px 32px rgba(0, 176, 182, 0.16);
    transform: translateY(-4px);
}

.hospital-label {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    padding: 10px 22px;
    background-color: #F4F4F5;
    color: #59616E;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.banner-tag{
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    border: 1px solid #333333;
    padding: 10px 20px;
    border-radius: 40px;
    line-height: 135%;
}

.search-input {
    padding: 15px 25px 15px 50px;
    border: 1px solid #ccc;
    border-radius: 35px;
    flex: 1;
    background: url('./assets/images/search.svg') no-repeat 15px center;
    background-size: 20px 20px; 
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 22px;
}

.search-input::placeholder {
    color: #ccc;
}
.join-us{
    background-color: #F4F4F5;
    padding: 10px 20px;
    border-radius: 20px;
    color: #8B93A4;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.explore-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.explore-content {
    max-width: 1200px;
    margin: 0 auto;
}

.user-engagement {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.user-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.user-avatars img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-avatars img:first-child {
    margin-left: 0;
}

.user-stats {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #25272C;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-text {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #8B93A4;
    margin: 0;
    line-height: 1.5;
}

.explore-content h2 {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #8B93A4;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.explore-content h2 .bold-text {
    font-weight: 600;
    color: #25272C;
}

.explore-content .explore-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background-color: #E0F2F4;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: #00B0B6;
    font-size: 18px;
    margin: 0 4px;
}

.achievements-section {
    padding: 50px 20px;
    background-color: #FFFFFF;
}

.achievements-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievements-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #000000;
}

.achievements-header .cta-button {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #00B0B6;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
}

.achievements-header .cta-button i {
    margin-left: 8px;
}

.achievements-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.achievements-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E0F7FA;
    border-radius: 50%;
    width: 406px;
    height: 472px;
    overflow: hidden;
}

.achievements-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.achievements-stats {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: "Inter", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
}

.stat-item p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8B93A4;
    max-width: 150px;
    margin: 0 auto;
    line-height: 1.5;
}

.app-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 70px 50px;
    background: #e6f7fb;
    border-radius: 18px;
}

.app-content {
    flex: 1;
    max-width: 46%;
}

.banner-tag {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    padding: 10px 16px;
    border-radius: 28px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.app-content h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.app-content p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 22px 0;
}

.app-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #00b0b6;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;
    box-shadow: 0 12px 26px rgba(0, 176, 182, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-download i {
    font-size: 18px;
}

.cta-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 176, 182, 0.3);
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    /* border-radius: 18px; */
    /* box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18); */
}

.app-section.support-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 50px;
    background: linear-gradient(135deg, #03b5b6 0%, #24537f 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin-top: 80px;
}

.support-content {
    flex: 1;
}

.support-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.support-logo img {
    height: 36px;
}

.support-logo span {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #e0f7ff;
}

.support-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.support-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 28px 0;
    color: #e8f5ff;
}

.support-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: #00c0c0;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.support-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.chat-bubble {
    position: relative;
    max-width: 360px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.chat-bubble-small {
    max-width: 100px;
    font-size: 14px;
    padding: 10px 14px;
}

.chat-bubble.user {
    background: #4e4c7d;
    color: #ffffff;
    align-self: flex-end;
}

.chat-bubble.bot {
    background: #ffffff;
    color: #4a4a4a;
    align-self: flex-start;
}

.chat-time {
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.chat-bubble.bot .chat-time {
    color: #8b93a4;
}
.cta-section {
    text-align: center;
    padding: 50px 20px 80px 20px;
    background-color: #FFFFFF;
}

.cta-section h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.feedback-highlight {
    background-color: #d3e8ec;
    padding: 4px 10px;
    border-radius: 6px;
}

.feedback-muted {
    color: #6b7280;
}

/* ////// */
.reviews{
    text-align: center;
    align-items: center;
}
.reviews h2{
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #00B0B6;
    margin-bottom: 30px;
}
  .masonry {
    column-count: 4;
    column-gap: 1.5rem;
    background-color: #E0F2F4;
    padding: 50px 30px 50px 30px;
  }

  @media (max-width: 1024px) {
    .masonry {
      column-count: 2;
    }
  }

  @media (max-width: 600px) {
    .masonry {
      column-count: 1;
    }
  }

  .masonry__item {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 0 0 1.5rem;
    display: inline-block;
    width: 75%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    color: #222;
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
  }

  .review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }

  .review-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .review-header p {
    margin: 0;
    font-size: 0.875rem;
    color: #555;
  }

  .masonry__item p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
  }
  .service-header {
    text-align: center;
    align-items: center;
    background-color: #E0F2F4;
    padding: 5px 0px;
    border-radius: 20px;
  }
  .service-header h3{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 150%;
    font-weight: 600;
  }
  .service-header h3 span{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    line-height: 150%;
    color: #0086A4;
    background-color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 15px;
    margin-left: 10px;
    font-weight: 600;
  }
  
.service-card .card-icon {
    font-size: 20px;
    color: #000000;
}

.service-card .card-body h3 {
    font-size: 24px;
    margin: 10px 0;
}

.service-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.service-card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 420px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 300px;
    cursor: pointer;
}

.service-card .card-body p {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.service-card .card-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    transition: all 0.4s ease;

}
.service-card.second {
    position: relative;
    background-color: #00B0B6;
    border-radius: 16px;
    padding: 24px;
    width: 260px;
    height: 300px;
    overflow: hidden;
    color: #fff;
  }
  .service-card.second a h3{
    text-decoration: none;
    color: white;

  }
  .service-card.second .card-header {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: justify;
  }
  .second-card-title h3{
    font-family: "DM Serif Display", serif;
    font-size: 40px;
    font-weight: 500;
    margin: 0px;
    transition: all 0.4s ease;
  }
  .service-card.second .card-title {
    font-size: 14px;
    font-weight: 400;
    color: white;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
  }
  
  .service-card.second .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  
  .service-card.second .card-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 4px 0 12px;
  }
  
  .service-card.second .card-body img {
    width: 225px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 110px;
    transform: translate(0%, 0) scale(1);
    transition: transform 0.4s ease, left 0.4s ease, width 0.4s ease;
  }

.second .card-title{
    font-family: 'jakarta', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}
.service-card.one{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 0 0 1px #eee;
    transition: all 0.3s ease;
    background-color: #F6F6F6;
}
.service-card.one a{
    text-decoration: none;
}

.card-body.one p{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
    line-height: 1.5;
}
.card-link{
    background-color: #FFFFFFCC;
    color: #007AFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 3px;
    border-radius: 5px;
    margin-top: 10px;
}
.card-body.one {
    position: absolute;
    top: 62%;
    left: 22%;
    background-color: #00B0B6;
    padding: 15px;
    text-align: left;
    border-radius: 20px;
    transition: all 0.4s ease;
    width: 80%;
}
.card-body.one image{
    border-radius: 30px;
}
.one .card-title{
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    transition: all 0.4s ease;

}

.card-header {
    display: block;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
  }
  
  .card-icon {
    background-color: #f1f1f1;
    border-radius: 50%;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .service-card.one:hover .card-title {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }
  
  .service-card.one:hover .card-body.one {
    top: 22%;
    left: 8%;
    width: 80%;
    height: 60%;
  }
  .service-card.one:hover .card-body img{
    width: 90%;
    height: 58%;
    margin-top: 0px;
  }
  .service-card.second:hover .card-body img {
    left: 50%;
    transform: translate(-50%, 0) scale(1.2);
    width: 85%;
  }
  .service-card.second:hover .card-title {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }
  .service-card.second:hover .second-card-title h3 {
    font-size: 50px;
    margin-top: -20px;
  }
  /* /// */
  .service-cards-two {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.hospital{
    display: flex;
    gap: 20px;
    justify-content: center;
}
/* Card Container */
.hospital-card {
    position: relative;
    background: #e6f7fb; /* Light blue from the image */
    border-radius: 20px;
    padding: 20px;
    width: 360px;
    height: 430px;
    overflow: hidden;
  }
  
  /* Icon in top-left */
  .hospital-card .card-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ffffffaa;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
  }
  
  /* Header Text */
  .hospital-card .card-header {
    position: absolute;
    top: 100px;
    left: 5px;
    max-width: 180px;
  }
  
  .hospital-card .card-title {
    font-size: 24px;
    font-weight: 600;
    color: #007298; /* Match the blue text */
  }
  
  /* Image on bottom right */
  .hospital-card .card-body img {
    position: absolute;
    bottom: -111%;
    right: -5px;
    width: 61%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}
.hospital-card:hover .card-body img {
    left: 40%;
    width: 61%;
    bottom: -60%; 
  }
.card-three-title{
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0086A4;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}
.service-card.third{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 0 0 1px #eee;
    transition: all 0.3s ease;
    background-color: #F6F6F6;
}
.service-card.third a{
    text-decoration: none;
}
.profile-details h2{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0086A4;
    margin-bottom: 10px;
}
.service-card.third:hover .card-three-title {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.profile-box {
    background: #ffffff;
    width: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .profile-header img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 30% !important;
    object-fit: cover;
  }

  .profile-details h2 {
    margin: 0;
    font-size: 18px;
  }

  .profile-details p {
    margin: 2px 0;
    font-size: 14px;
    color: #555;
  }
  .profile-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .tag-box {
    border: 2px solid #00b8b8;
    color: #333;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    width: fit-content;
  }
  
  .tag-box strong {
    font-weight: 600;
  }
  
  .tag-box .highlight {
    color: #00b8b8;
    font-weight: 500;
  }
  
  .tag-box.red {
    border-color: #ff7b7b;
    color: #ff4c4c;
    font-weight: 500;
  }
  
  .scroll-area {
    margin-top: 15px;
    max-height: 80px;
    overflow-y: auto;
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    text-align: left;
  }

  .scroll-area::-webkit-scrollbar {
    width: 6px;
  }

  .scroll-area::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
.service-card.third .card-body .profile-box {
    position: absolute;
    bottom: -180px;
    right: 7%;
    width: 78%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}
.service-card.third:hover .card-body .profile-box {
    bottom: -42px;
  }
  .service-card.support:hover .card-body .profile-list {
    bottom: 30px;
  }
  .service-card.support:hover .card-header .card-title{
    font-size: 68px;
    color: #00B0B6;
  }
  .profile-list {
    position: absolute;
    bottom: -95px;
    right: 9%;
    width: 70%;
    height: 56%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #00B0B6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
  }
  
  .profile-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .profile-item img {
    width: 38px !important;
    height: 33px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-right: 15px !important;
  }
  
  .profile-info {
    display: flex;
    flex-direction: column;
  }
  
  .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: justify;
  }
  
  .time {
    font-size: 13px;
    color: #888;
  }
  .app-buttons{
    display: flex;
    gap: 25px;
    margin-left: 15px;
  }
  .service-card.support{
    position: relative;
    background: #F6F6F6;
    border-radius: 20px;
    padding: 20px;
    width: 430px;
    height: 350px;
    overflow: hidden;
}
.service-card.support a{
    text-decoration: none;
}
.service-card.support .card-title{
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #000000;
    transition: all 0.4s ease;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 45px;
    background-color: #fff;
  }
  
  .logo img {
    height: 40px;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  
  .flag-icon {
    width: 23px;
    height: 20px;
  }
  
  .login-btn,
  .signup-btn {
    padding: 13px 20px;
    border: 1px solid #000000;
    border-radius: 20px;
    background-color: transparent;
    font-size: 14px;
    cursor: pointer;
  }
  
  .login-btn {
    color: #000000;
    transition: all 0.3s ease;
  }
  
  .signup-btn {
    color: #fff;
    background-color: #00B0B6;
    border-color: #00B0B6;
  }
  .login-btn:hover {
    background-color: #008a8e;
    color: #fff;
    border: 1px solid #ffffff;
  }
  .signup-btn:hover {
    background-color: #008a8e;
  }
  
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

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

.main-footer {
    background-color: #f9f9f9;
    padding: 20px 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #00b0b6;
  }
  
  .footer-nav span {
    color: #333;
  }
  
  .footer-logo img {
    height: 40px;
    margin: 15px 0;
  }
  
  .footer-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
  }
  
  .footer-bottom a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: #00b0b6;
  }
    .tab-content{
        line-height: 30px;
    }
    .tab-content a{
        text-decoration: none;
        color: #0086A4;
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 500;
    }
    .tab-content h1{
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #0086A4;
        margin-bottom: 10px;
    }
    .tab-content p{
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #000000;
        margin-bottom: 20px;
    }
    .tab-content ul{
        padding-left: 20px;
    }
    .tab-content h2{
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #0086A4;
        margin-bottom: 10px;
    }
  .email a{
      text-decoration: none;
      color: #0086A4;
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 500;
  }
  .email a i{
      margin-right: 10px;
  }
  .email a:hover{
      text-decoration: underline;
  }
  .download-btn-header {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background-color: #0C879D;
      color: #FFFFFF;
      text-decoration: none;
      border-radius: 25px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 500;
      transition: background-color 0.3s ease;
  }
  .download-btn-header:hover {
      background-color: #008A8E;
  }
  .download-btn-header i {
      font-size: 18px;
  }
    .terms-and-conditions{
        line-height: 20px;
    }

    .terms-and-conditions h1{
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #0086A4;
        margin-bottom: 30px;
    }
    .terms-and-conditions a{
        text-decoration: none;
        color: #0086A4;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
    }
@media screen and (max-width:1281px) { 
    .banner-content h1 {
        font-size: 38px;
        width: 100%;
    }
    .banner-tag{
        font-size: 16px;
    }
    .banner-content{
        padding-top: 35px;
    }
    .banner-image img{
        max-width: 105%;
    }
    .banner-section{
        gap: 20px;
    }
    .banner-content p{
        font-size: 16px;
    }
    .search-input {
        padding: 10px 25px 10px 50px;
        font-size: 16px;
    }
    .explore-content h2 {
        font-size: 36px;
    }
    .stat-number {
        font-size: 40px;
    }
    .stat-text {
        font-size: 16px;
    }
    .user-avatars img {
        width: 48px;
        height: 48px;
    }
    .explore-section{
        padding: 40px 20px;
    }
    .service-card.second {
        width: 345px;
        height: 300px;
    }
    .service-card.second .card-body img {
        left: 70px;
        width: 229px;
    }
    .service-card.second:hover .second-card-title h3 {
        font-size: 44px;
        margin-top: -20px;
    }
    .achievements-header h2 {
        font-size: 54px;
    }
    .stat-item h3 {
        font-size: 50px;
    }
    .stat-item p {
        font-size: 16px;
    }
    .achievements-image {
        width: 345px;
        height: 300px;
    }
    .achievements-stats {
        gap: 5px;
    }
    .app-content h2 {
        font-size: 34px;
    }
    .app-content p {
        font-size: 16px;
    }
    .app-buttons img {
        width: 140px;
    }
    .app-image img {
        max-width: 420px;
    }
    .support-title {
        font-size: 44px;
    }
    .support-subtitle {
        font-size: 20px;
    }
    .support-hero {
        padding: 60px 40px;
    }
    .cta-section h2{
        font-size: 40px;
    }
    .cta-section {
        padding: 50px 20px 0px 20px;
    }
    .reviews h2 {
        font-size: 50px;
    }
    
 }
@media screen and (max-width: 920px) {
    .terms-and-conditions h1{
        font-size: 24px;
    }
    .terms-and-conditions h3{
        line-height: 30px;
    }
    .banner-content h1 {
        font-size: 36px;
        width: 100%;
    }
    .banner-tag{
        font-size: 16px;
    }
    .banner-content{
        padding-top: 35px;
    }
    .banner-image img{
        max-width: 105%;
        height: 480px;
    }
    .banner-section{
        gap: 20px;
    }
    .banner-content p{
        font-size: 16px;
    }
    .search-input {
        padding: 10px 25px 10px 50px;
        font-size: 13px;
    }
    .explore-content h2 {
        font-size: 32px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-text {
        font-size: 15px;
    }
    .user-avatars img {
        width: 44px;
        height: 44px;
    }
    .support-hero {
        padding: 50px 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .support-title {
        font-size: 38px;
    }
    .support-subtitle {
        font-size: 18px;
    }
    .support-chat {
        width: 100%;
        align-items: flex-start;
    }
    .app-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .app-content {
        max-width: 100%;
    }
    .app-image {
        width: 100%;
        justify-content: center;
    }
    .app-image img {
        max-width: 360px;
        width: 100%;
    }
    .one .card-title {
        font-size: 22px;
    }
    .second-card-title h3 {
        font-size: 30px;
    }
    .service-card.second .card-body img {
        left: -10px;
        width: 260px;
    }
    .card-three-title {
        font-size: 26px;
    }
    .hospital-card .card-body img{
        bottom: -75%;
    }
    .service-card.support .card-title {
        font-size: 35px;
    }
}
@media screen and (max-width: 768px) {
    .email a {
        font-size: 13px;
    }
    .download-btn-header {
        font-size: 14px;
        padding: 10px 18px;
    }
    .services{
        margin-top: 15px;
    }
    .language-selector.desktop {
        display: none;
    }
    .app-image img{
        max-width: 100%;
        margin-left: 0;
    }
    .login-btn, .signup-btn {
        padding: 9px 8px;
        font-size: 11px;
    }
  
    .hamburger-menu {
      display: block;
    }
  
    .mobile-menu.active {
      display: flex;
    }
    .banner-section {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .banner-content {
        padding-top: 0px;
        max-width: 100%;
    }
    .banner-tag {
        margin: 18px auto;
        padding: 10px;
        display: block;
        width: 61%;
        text-align: center;
    }
    .banner-content h1{
        width: 100%;
        margin-top: 0px;
        padding: 0%;
        font-size: 24px;
    }
    .banner-content p{
        font-size: 14px;
        font-weight: 400;
    }
    .hospital-images {
        flex-direction: column;
        gap: 15px;
    }
    .hospital-image-item {
        width: 100%;
        height: auto;
        padding: 12px;
    }
    .hospital-image-item.featured {
        width: 100%;
        height: auto;
    }
    .hospital-image-item img {
        width: 100%;
        height: auto;
    }
    .hospital-label {
        font-size: 14px;
        padding: 10px 18px;
    }
    .banner-image img {
        width: 100%;
        height: auto;
    }

    .explore-content h2 {
        font-size: 28px;
        text-align: center;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-text {
        font-size: 14px;
    }
    .user-avatars img {
        width: 40px;
        height: 40px;
    }
    .user-engagement {
        margin-bottom: 30px;
    }
    .support-hero {
        padding: 40px 20px;
        gap: 24px;
        border-radius: 12px;
    }
    .support-title {
        font-size: 32px;
    }
    .support-subtitle {
        font-size: 16px;
    }
    .support-chat {
        gap: 10px;
    }
    .chat-bubble {
        max-width: 100%;
        font-size: 15px;
    }
    .app-section {
        padding: 40px 18px;
        gap: 20px;
    }
    .app-content h2 {
        font-size: 30px;
    }
    .app-content p {
        font-size: 15px;
    }
    .app-buttons {
        gap: 12px;
    }
    .app-buttons img {
        width: 130px;
    }

    .achievements-content {
        flex-direction: column;
        align-items: center;
    }

    .achievements-image,
    .achievements-stats {
        width: 100%;
        max-width: none;
    }
    .search-bar {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .search-bar button{
        margin: 20px auto;
        display: block;
        width: 100%;
    }
    .join-us,
    .cta-button {
      font-size: 14px;
    }
    .explore-section{
        display: none;
    }
    .service-header h3 {
        font-size: 18px;
    }
    .service-header h3 span {
        font-size: 18px;
        padding: 6px 14px;
    }
    .service-cards{
        display: block;
        margin-top: 20px;
        margin-left: 20px;
    }
    .service-card.one{
        position: relative;
        width: 278px;
        height: 270px;
    }
    .service-card.second{
        width: 278px;
        height: 270px;
        margin-top: 20px;
    }
    .service-card.second:hover .card-body img {
        left: 50%;
        transform: translate(-50%, 0) scale(1.2);
        width: 78%;
    }
    .service-card.third{
        width: 278px;
        height: 270px;
        margin-top: 20px;
    }
    .service-cards-two{
        display: block;
        margin-top: 20px;
        margin-left: 20px;
    }
    .hospital-card {
        width: 288px;
        height: 270px;
        margin-top: 20px;
    }
    .hospital-card .card-body img {
        bottom: -82%;
    }
    .hospital-card:hover .card-body img{
        left: 42%;
        width: 61%;
        bottom: -27%;
    }
    .service-card.support{
        width: 288px;
        height: 270px;
        margin-top: 20px;
    }
    .profile-list{
        width: 70%;
        height: 61%;
    }
    .achievements-header{
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }
    .achievements-header h2{
        font-size: 34px;
    }
    .achievements-section {
        padding: 0px 20px;
        margin-bottom: 40px;
    }
    .achievements-stats {
        margin-top: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item h3{
        font-size: 44px;
        margin: 10px;
    }
    .achievements-content {
        gap: 0px;
    }
    .stat-item p{
        font-size: 11px;
        width: 60%;
    }
    .app-section{
        display: block;
        padding: 20px 10px 0px 10px;

    }
    .app-content{
        max-width: 100%;
        margin: 0 auto;
        /* background-color: #E0F2F4; */
    }
    .app-content h2{
        text-align: center;
        font-size: 44px;
    }
    .app-content p{
        text-align: center;
        font-size: 12px;
        max-width: 100%;
    }
    .app-buttons img {
        width: 100px;
        height: auto;
    }
    .app-buttons{
        text-align: center;
        align-items: center;
        margin-left: 75px;
    }
    .masonry {
        padding: 50px 30px 50px 20px;
    }
    
    .cta-section {
        padding: 0px 20px;
    }
    .cta-section h2{
        font-size: 28px;
        line-height: 50px;
    }
    .cta-form {
        gap: 0px;
    }
    .cta-input {
        font-size: 12px;
    }
    .reviews h2{
        font-size: 34px;
    }
    .masonry__item p{
        font-size: 16px;
        text-align: left;
    }
}
@media screen and (max-width: 380px) {
    .login-btn, .signup-btn {
        padding: 9px 8px;
        font-size: 10px;
    }
    .service-card.one {
        padding: 10px;
        width: 275px;
        height: 268px;
    }
    .one .card-title {
        font-size: 18px;
    }
    .service-card.second {
        width: 250px;
    }
    .service-card.third {
        width: 250px;
    }
    .hospital-card {
        width: 260px
    }
    .service-card.support {
        width: 260px;
    }
    .logo img {
        height: 35px;
    }
}
