:root {
  --default-color: #444444;
  --heading-color: #37517e;
  --accent-color: #47b2e4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --background-blue-color: radial-gradient(ellipse at left, #0a1e4d 60%, #0a2a9c 100%);

  --nav-color: #ffffff;
  --nav-hover-color: #47b2e4;
  --nav-mobile-background-color: #00111e;
  --nav-dropdown-background-color: #00111e;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #47b2e4;
  --background-color: #ffffff;
  --surface-color: #4668a2;
  --button-color: #ffb300;
  --button-hover-color: #ffcb00;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background: var(--gradient-bg);
  color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  width: 85%;
  margin: auto;
}

/* HERO SECTION */
.hero-wrapper {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 10%;
  color: var(--white);
}

.hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100px;
  height: 100px;
  object-fit: fill;
}

.hero-overlay {
  width: 100%;
  padding: 60px 10%;
  color: var(--white);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-left: -80px;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* HERO FORM */
.hero-form {
  background: #ffffff;
  color: #000000;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.hero-form h2 {
  font-size: 26px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-form p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 14px 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s, box-shadow 0.3s;
}

.hero-form input:focus,
.hero-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  outline: none;
}

.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 24px;
  background: var(--button-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background: var(--button-hover-color);
}

.hero-form small {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
  text-align: center;
}

/* --------------------------------- */
/* HERO SECTION RESPONSIVE MEDIA QUERIES */
/* --------------------------------- */

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .hero-wrapper {
    padding: 80px 12%;
  }
  .hero-text h1 {
    font-size: 60px;
  }
  .hero-text p {
    font-size: 20px;
  }
  .hero-form h2 {
    font-size: 28px;
  }
}

/* Medium desktops / laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-wrapper {
    padding: 70px 10%;
  }
  .hero-content {
    gap: 50px;
  }
  .hero-text h1 {
    font-size: 50px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .hero-form {
    max-width: 380px;
  }
  .hero-form h2 {
    font-size: 26px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .hero-wrapper {
    padding: 60px 8%;
  }
  .hero-content {
    flex-direction: column;
    gap: 40px;
    margin-left: 0;
  }
  .hero-text {
    max-width: 90%;       
    margin: 0 auto;       
    text-align: center;   
  }

  .hero-text h1 {
    font-size: 44px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 20px;
    line-height: 1.5;
  }

  .partners {
    justify-content: center;
  }

  .hero-form {
    max-width: 100%;
  }
}

/* Mobile devices (<768px) */
@media (max-width: 767px) {
  .hero-wrapper {
    padding: 40px 5%;
    min-height: 100vh;
  }
  .hero-content {
    flex-direction: column;
    gap: 30px;
    margin-left: 0;
  }
   .hero-text {
    max-width: 95%;      
    margin: 0 auto;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 1.5;
  }

  .partners img {
    width: 60px;          /* Smaller logos on mobile */
    height: auto;
  }
  .hero-form {
    padding: 20px 15px;
    border-radius: 12px;
  }
  .hero-form h2 {
    font-size: 22px;
    text-align: center;
  }
  .hero-form p {
    font-size: 14px;
    text-align: center;
  }
  .hero-form input,
  .hero-form textarea {
    font-size: 14px;
    padding: 12px 10px;
  }
  .hero-form button {
    font-size: 16px;
    padding: 12px;
  }
  .hero-form small {
    font-size: 12px;
  }
}


/* CLIENTS SECTION */
.clients-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fdf6ed;
}

.clients-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #0b2c4d;
}

.clients-section .section-subtitle {
  font-size: 18px;
  color: #2f5b88;
  margin-top: 10px;
}

.clients-section .section-description {
  margin: 20px auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.clients-section .client-logos-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.clients-section .client-logos {
  display: inline-flex;
  gap: 30px;
  padding-left: 10px;
}

.clients-section .client-logos img {
  height: 50px;
  flex-shrink: 0;
  max-width: 120px;
  object-fit: contain;
}

.clients-section .client-logos-scroll::-webkit-scrollbar {
  height: 6px;
}

.clients-section .client-logos-scroll::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

/* EHR TECH SECTION */
.ehr-tech-section {
  padding: 60px 20px;
  background: #fdf6ec;
  text-align: center;
  overflow: hidden;
}

.ehr-tech-link {
  color: black !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 20px;
  display: inline-block;
}

.ehr-tech-link:hover {
  color: var(--button-color);
  text-decoration: underline;
}

.ehr-tech-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d3557;
}

.ehr-tech-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.ehr-tech-marquee {
  position: relative;
  width: 71%;
  overflow: hidden;
  margin: 0 auto 40px;
}

.ehr-tech-track {
  display: flex;
  gap: 40px;
  animation: ehr-scroll 40s linear infinite;
  will-change: transform;
}

.ehr-tech-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ehr-tech-item img {
  max-width: 100px;
  margin: 0 auto 12px;
  display: block;
}

.ehr-tech-marquee:hover .ehr-tech-track {
  animation-play-state: paused;
}

@keyframes ehr-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-45%); }
}

/* EXPERTISE SECTION */
.expertise-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.expertise-section .section-intro {
  color: var(--button-color);
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
  font-family: cursive;
}

.expertise-section .section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.expertise-section .section-subheading {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 40px;
  color: black;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.expertise-card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(228, 227, 227, 0.877);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 360px;
  transition: transform 0.3s ease, border-radius 0.3s ease;
  z-index: 0;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: var(--button-color);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-radius: 25px;
}

.expertise-card:hover::before {
  opacity: 1;
  border-radius: 25px;
}

.expertise-card img {
  height: 40px;
  width: 50px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.expertise-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.expertise-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  background: var(--background-blue-color);
  color: var(--button-color);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 42px;
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: #00000033 0px 0px 24px;
  color: black;
  background-color: var(--button-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary .arrow {
  margin-left: 10px;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary:hover {
  color: black;
  background-color: var(--button-hover-color);
}

.book-link {
  color: #b3c9ff;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
}

.divider {
  color: #999;
  font-size: 14px;
}

/* OUR APPROACH */
.our-approach-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  color: #000;
}

.our-approach-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-subtitle {
  color: var(--button-color);
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px !important;
  font-weight: 700;
  color: #000;
  margin-bottom: 0% !important;
}

.section-description {
  font-size: 14px;
  color: #000;
  margin-top: -30px;
  margin-bottom: 0px;
  max-width: 800px;
  text-align: justify;
}

.point {
  font-weight: 600;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #000;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 10px;
  border: 1px solid #eee;
}

.comparison-table th {
  background-color: #f9f9f9;
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #fdf6ec;
}

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .our-approach-section {
    padding: 100px 10%;
  }
  .section-subtitle {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-description {
    font-size: 16px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 15px 12px;
    font-size: 16px;
  }
}

/* Medium desktops / laptops (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .our-approach-section {
    padding: 80px 8%;
  }
  .section-subtitle {
    font-size: 32px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-description {
    font-size: 15px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 15px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .our-approach-section {
    padding: 60px 5%;
  }
  .section-subtitle {
    font-size: 28px;
    text-align: center;
  }
  .section-title {
    font-size: 24px;
    text-align: center;
  }
  .section-description {
    font-size: 14px;
    max-width: 100%;
    text-align: center;
  }
  .comparison-table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .comparison-table th,
  .comparison-table td {
    font-size: 14px;
    padding: 10px 8px;
  }
}

/* Mobile devices (<768px) */
@media (max-width: 767px) {
  .our-approach-section {
    padding: 40px 5%;
  }
  .section-subtitle {
    font-size: 24px;
  }
  .section-title {
    font-size: 20px;
  }
  .section-description {
    font-size: 13px;
    text-align: center;
  }
  .comparison-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table th,
  .comparison-table td {
    font-size: 13px;
    padding: 8px 6px;
  }
  .comparison-table tbody tr:nth-child(even) {
    background-color: #fdf6ec;
  }
}

/* ----------------------------------------------------------- */
/* Frequently Asked Questions Section - Careers / Hiring FAQ   */
/* ----------------------------------------------------------- */

.ehr-faq-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.ehr-faq-section h2 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.ehr-faq-subtitle {
  text-align: center;
  color: #383838;
  margin-bottom: 60px;
  letter-spacing: 0.8px;
  font-size: 1.3rem;
  font-family: Arial, sans-serif;
}

.ehr-faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  color: #000;
  font-size: 1.3rem;
}

.ehr-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
}

.ehr-faq-question span {
  flex: 1;
}

.ehr-faq-toggle {
  background: none;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  color: rgb(255, 166, 0);
  cursor: pointer;
}

.ehr-faq-answer {
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background: #fffdfb;
  font-size: 18px;
  letter-spacing: 0.6px;
  font-family: Arial, sans-serif;
  color: #555151;
}

.ehr-faq-answer ul {
  padding-left: 20px;
  margin: 10px 0;
}

.ehr-faq-item.active .ehr-faq-answer {
  display: block;
}

.ehr-faq-item.active .ehr-faq-toggle {
  content: "-";
  color: orange;
}
